Coverage Report

Created: 2018-09-25 14:53

/work/obj-fuzz/dist/include/nsThreadUtils.h
Line
Count
Source (jump to first uncovered line)
1
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
3
/* This Source Code Form is subject to the terms of the Mozilla Public
4
 * License, v. 2.0. If a copy of the MPL was not distributed with this
5
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6
7
#ifndef nsThreadUtils_h__
8
#define nsThreadUtils_h__
9
10
#include "prthread.h"
11
#include "prinrval.h"
12
#include "MainThreadUtils.h"
13
#include "nsICancelableRunnable.h"
14
#include "nsIIdlePeriod.h"
15
#include "nsIIdleRunnable.h"
16
#include "nsINamed.h"
17
#include "nsIRunnable.h"
18
#include "nsIThreadManager.h"
19
#include "nsITimer.h"
20
#include "nsIThread.h"
21
#include "nsString.h"
22
#include "nsCOMPtr.h"
23
#include "nsAutoPtr.h"
24
#include "xpcpublic.h"
25
#include "mozilla/Atomics.h"
26
#include "mozilla/Likely.h"
27
#include "mozilla/Maybe.h"
28
#include "mozilla/Move.h"
29
#include "mozilla/TimeStamp.h"
30
#include "mozilla/Tuple.h"
31
#include "mozilla/TypeTraits.h"
32
33
#include <utility>
34
35
//-----------------------------------------------------------------------------
36
// These methods are alternatives to the methods on nsIThreadManager, provided
37
// for convenience.
38
39
/**
40
 * Create a new thread, and optionally provide an initial event for the thread.
41
 *
42
 * @param aResult
43
 *   The resulting nsIThread object.
44
 * @param aInitialEvent
45
 *   The initial event to run on this thread.  This parameter may be null.
46
 * @param aStackSize
47
 *   The size in bytes to reserve for the thread's stack.
48
 *
49
 * @returns NS_ERROR_INVALID_ARG
50
 *   Indicates that the given name is not unique.
51
 */
52
extern nsresult
53
NS_NewThread(nsIThread** aResult,
54
             nsIRunnable* aInitialEvent = nullptr,
55
             uint32_t aStackSize = nsIThreadManager::DEFAULT_STACK_SIZE);
56
57
/**
58
 * Creates a named thread, otherwise the same as NS_NewThread
59
 */
60
extern nsresult
61
NS_NewNamedThread(const nsACString& aName,
62
                  nsIThread** aResult,
63
                  nsIRunnable* aInitialEvent = nullptr,
64
                  uint32_t aStackSize = nsIThreadManager::DEFAULT_STACK_SIZE);
65
66
template<size_t LEN>
67
inline nsresult
68
NS_NewNamedThread(const char (&aName)[LEN],
69
                  nsIThread** aResult,
70
                  nsIRunnable* aInitialEvent = nullptr,
71
                  uint32_t aStackSize = nsIThreadManager::DEFAULT_STACK_SIZE)
72
13
{
73
13
  static_assert(LEN <= 16,
74
13
                "Thread name must be no more than 16 characters");
75
13
  return NS_NewNamedThread(nsDependentCString(aName, LEN - 1),
76
13
                           aResult, aInitialEvent, aStackSize);
77
13
}
Unexecuted instantiation: nsresult NS_NewNamedThread<10ul>(char const (&) [10ul], nsIThread**, nsIRunnable*, unsigned int)
nsresult NS_NewNamedThread<13ul>(char const (&) [13ul], nsIThread**, nsIRunnable*, unsigned int)
Line
Count
Source
72
4
{
73
4
  static_assert(LEN <= 16,
74
4
                "Thread name must be no more than 16 characters");
75
4
  return NS_NewNamedThread(nsDependentCString(aName, LEN - 1),
76
4
                           aResult, aInitialEvent, aStackSize);
77
4
}
Unexecuted instantiation: nsresult NS_NewNamedThread<12ul>(char const (&) [12ul], nsIThread**, nsIRunnable*, unsigned int)
nsresult NS_NewNamedThread<16ul>(char const (&) [16ul], nsIThread**, nsIRunnable*, unsigned int)
Line
Count
Source
72
3
{
73
3
  static_assert(LEN <= 16,
74
3
                "Thread name must be no more than 16 characters");
75
3
  return NS_NewNamedThread(nsDependentCString(aName, LEN - 1),
76
3
                           aResult, aInitialEvent, aStackSize);
77
3
}
nsresult NS_NewNamedThread<14ul>(char const (&) [14ul], nsIThread**, nsIRunnable*, unsigned int)
Line
Count
Source
72
3
{
73
3
  static_assert(LEN <= 16,
74
3
                "Thread name must be no more than 16 characters");
75
3
  return NS_NewNamedThread(nsDependentCString(aName, LEN - 1),
76
3
                           aResult, aInitialEvent, aStackSize);
77
3
}
Unexecuted instantiation: nsresult NS_NewNamedThread<7ul>(char const (&) [7ul], nsIThread**, nsIRunnable*, unsigned int)
Unexecuted instantiation: nsresult NS_NewNamedThread<15ul>(char const (&) [15ul], nsIThread**, nsIRunnable*, unsigned int)
nsresult NS_NewNamedThread<11ul>(char const (&) [11ul], nsIThread**, nsIRunnable*, unsigned int)
Line
Count
Source
72
3
{
73
3
  static_assert(LEN <= 16,
74
3
                "Thread name must be no more than 16 characters");
75
3
  return NS_NewNamedThread(nsDependentCString(aName, LEN - 1),
76
3
                           aResult, aInitialEvent, aStackSize);
77
3
}
Unexecuted instantiation: nsresult NS_NewNamedThread<9ul>(char const (&) [9ul], nsIThread**, nsIRunnable*, unsigned int)
78
79
/**
80
 * Get a reference to the current thread, creating it if it does not exist yet.
81
 *
82
 * @param aResult
83
 *   The resulting nsIThread object.
84
 */
85
extern nsresult NS_GetCurrentThread(nsIThread** aResult);
86
87
/**
88
 * Dispatch the given event to the current thread.
89
 *
90
 * @param aEvent
91
 *   The event to dispatch.
92
 *
93
 * @returns NS_ERROR_INVALID_ARG
94
 *   If event is null.
95
 */
96
extern nsresult NS_DispatchToCurrentThread(nsIRunnable* aEvent);
97
extern nsresult
98
NS_DispatchToCurrentThread(already_AddRefed<nsIRunnable>&& aEvent);
99
100
/**
101
 * Dispatch the given event to the main thread.
102
 *
103
 * @param aEvent
104
 *   The event to dispatch.
105
 * @param aDispatchFlags
106
 *   The flags to pass to the main thread's dispatch method.
107
 *
108
 * @returns NS_ERROR_INVALID_ARG
109
 *   If event is null.
110
 */
111
extern nsresult
112
NS_DispatchToMainThread(nsIRunnable* aEvent,
113
                        uint32_t aDispatchFlags = NS_DISPATCH_NORMAL);
114
extern nsresult
115
NS_DispatchToMainThread(already_AddRefed<nsIRunnable>&& aEvent,
116
                        uint32_t aDispatchFlags = NS_DISPATCH_NORMAL);
117
118
extern nsresult
119
NS_DelayedDispatchToCurrentThread(
120
  already_AddRefed<nsIRunnable>&& aEvent, uint32_t aDelayMs);
121
122
/**
123
 * Dispatch the given event to the idle queue of the current thread.
124
 *
125
 * @param aEvent
126
 *   The event to dispatch.
127
  *
128
 * @returns NS_ERROR_INVALID_ARG
129
 *   If event is null.
130
 * @returns NS_ERROR_UNEXPECTED
131
 *   If the thread is shutting down.
132
 */
133
extern nsresult
134
NS_IdleDispatchToCurrentThread(already_AddRefed<nsIRunnable>&& aEvent);
135
136
/**
137
 * Dispatch the given event to the idle queue of the current thread.
138
 *
139
 * @param aEvent The event to dispatch. If the event implements
140
 *   nsIIdleRunnable, it will receive a call on
141
 *   nsIIdleRunnable::SetTimer when dispatched, with the value of
142
 *   aTimeout.
143
 *
144
 * @param aTimeout The time in milliseconds until the event should be
145
 *   moved from the idle queue to the regular queue, if it hasn't been
146
 *   executed. If aEvent is also an nsIIdleRunnable, it is expected
147
 *   that it should handle the timeout itself, after a call to
148
 *   nsIIdleRunnable::SetTimer.
149
 *
150
 * @returns NS_ERROR_INVALID_ARG
151
 *   If event is null.
152
 * @returns NS_ERROR_UNEXPECTED
153
 *   If the thread is shutting down.
154
 */
155
extern nsresult
156
NS_IdleDispatchToCurrentThread(already_AddRefed<nsIRunnable>&& aEvent, uint32_t aTimeout);
157
158
/**
159
 * Dispatch the given event to the idle queue of a thread.
160
 *
161
 * @param aEvent The event to dispatch.
162
 *
163
 * @param aThread The target thread for the dispatch.
164
 *
165
 * @returns NS_ERROR_INVALID_ARG
166
 *   If event is null.
167
 * @returns NS_ERROR_UNEXPECTED
168
 *   If the thread is shutting down.
169
 */
170
extern nsresult
171
NS_IdleDispatchToThread(already_AddRefed<nsIRunnable>&& aEvent,
172
                        nsIThread* aThread);
173
174
/**
175
 * Dispatch the given event to the idle queue of a thread.
176
 *
177
 * @param aEvent The event to dispatch. If the event implements
178
 *   nsIIdleRunnable, it will receive a call on
179
 *   nsIIdleRunnable::SetTimer when dispatched, with the value of
180
 *   aTimeout.
181
 *
182
 * @param aTimeout The time in milliseconds until the event should be
183
 *   moved from the idle queue to the regular queue, if it hasn't been
184
 *   executed. If aEvent is also an nsIIdleRunnable, it is expected
185
 *   that it should handle the timeout itself, after a call to
186
 *   nsIIdleRunnable::SetTimer.
187
 *
188
 * @param aThread The target thread for the dispatch.
189
 *
190
 * @returns NS_ERROR_INVALID_ARG
191
 *   If event is null.
192
 * @returns NS_ERROR_UNEXPECTED
193
 *   If the thread is shutting down.
194
 */
195
extern nsresult
196
NS_IdleDispatchToThread(already_AddRefed<nsIRunnable>&& aEvent,
197
                        uint32_t aTimeout,
198
                        nsIThread* aThread);
199
200
#ifndef XPCOM_GLUE_AVOID_NSPR
201
/**
202
 * Process all pending events for the given thread before returning.  This
203
 * method simply calls ProcessNextEvent on the thread while HasPendingEvents
204
 * continues to return true and the time spent in NS_ProcessPendingEvents
205
 * does not exceed the given timeout value.
206
 *
207
 * @param aThread
208
 *   The thread object for which to process pending events.  If null, then
209
 *   events will be processed for the current thread.
210
 * @param aTimeout
211
 *   The maximum number of milliseconds to spend processing pending events.
212
 *   Events are not pre-empted to honor this timeout.  Rather, the timeout
213
 *   value is simply used to determine whether or not to process another event.
214
 *   Pass PR_INTERVAL_NO_TIMEOUT to specify no timeout.
215
 */
216
extern nsresult
217
NS_ProcessPendingEvents(nsIThread* aThread,
218
                        PRIntervalTime aTimeout = PR_INTERVAL_NO_TIMEOUT);
219
#endif
220
221
/**
222
 * Shortcut for nsIThread::HasPendingEvents.
223
 *
224
 * It is an error to call this function when the given thread is not the
225
 * current thread.  This function will return false if called from some
226
 * other thread.
227
 *
228
 * @param aThread
229
 *   The current thread or null.
230
 *
231
 * @returns
232
 *   A boolean value that if "true" indicates that there are pending events
233
 *   in the current thread's event queue.
234
 */
235
extern bool NS_HasPendingEvents(nsIThread* aThread = nullptr);
236
237
/**
238
 * Shortcut for nsIThread::ProcessNextEvent.
239
 *
240
 * It is an error to call this function when the given thread is not the
241
 * current thread.  This function will simply return false if called
242
 * from some other thread.
243
 *
244
 * @param aThread
245
 *   The current thread or null.
246
 * @param aMayWait
247
 *   A boolean parameter that if "true" indicates that the method may block
248
 *   the calling thread to wait for a pending event.
249
 *
250
 * @returns
251
 *   A boolean value that if "true" indicates that an event from the current
252
 *   thread's event queue was processed.
253
 */
254
extern bool NS_ProcessNextEvent(nsIThread* aThread = nullptr,
255
                                bool aMayWait = true);
256
257
// A wrapper for nested event loops.
258
//
259
// This function is intended to make code more obvious (do you remember
260
// what NS_ProcessNextEvent(nullptr, true) means?) and slightly more
261
// efficient, as people often pass nullptr or NS_GetCurrentThread to
262
// NS_ProcessNextEvent, which results in needless querying of the current
263
// thread every time through the loop.
264
//
265
// You should use this function in preference to NS_ProcessNextEvent inside
266
// a loop unless one of the following is true:
267
//
268
// * You need to pass `false` to NS_ProcessNextEvent; or
269
// * You need to do unusual things around the call to NS_ProcessNextEvent,
270
//   such as unlocking mutexes that you are holding.
271
//
272
// If you *do* need to call NS_ProcessNextEvent manually, please do call
273
// NS_GetCurrentThread() outside of your loop and pass the returned pointer
274
// into NS_ProcessNextEvent for a tiny efficiency win.
275
namespace mozilla {
276
277
// You should normally not need to deal with this template parameter.  If
278
// you enjoy esoteric event loop details, read on.
279
//
280
// If you specify that NS_ProcessNextEvent wait for an event, it is possible
281
// for NS_ProcessNextEvent to return false, i.e. to indicate that an event
282
// was not processed.  This can only happen when the thread has been shut
283
// down by another thread, but is still attempting to process events outside
284
// of a nested event loop.
285
//
286
// This behavior is admittedly strange.  The scenario it deals with is the
287
// following:
288
//
289
// * The current thread has been shut down by some owner thread.
290
// * The current thread is spinning an event loop waiting for some condition
291
//   to become true.
292
// * Said condition is actually being fulfilled by another thread, so there
293
//   are timing issues in play.
294
//
295
// Thus, there is a small window where the current thread's event loop
296
// spinning can check the condition, find it false, and call
297
// NS_ProcessNextEvent to wait for another event.  But we don't actually
298
// want it to wait indefinitely, because there might not be any other events
299
// in the event loop, and the current thread can't accept dispatched events
300
// because it's being shut down.  Thus, actually blocking would hang the
301
// thread, which is bad.  The solution, then, is to detect such a scenario
302
// and not actually block inside NS_ProcessNextEvent.
303
//
304
// But this is a problem, because we want to return the status of
305
// NS_ProcessNextEvent to the caller of SpinEventLoopUntil if possible.  In
306
// the above scenario, however, we'd stop spinning prematurely and cause
307
// all sorts of havoc.  We therefore have this template parameter to
308
// control whether errors are ignored or passed out to the caller of
309
// SpinEventLoopUntil.  The latter is the default; if you find yourself
310
// wanting to use the former, you should think long and hard before doing
311
// so, and write a comment like this defending your choice.
312
313
enum class ProcessFailureBehavior {
314
  IgnoreAndContinue,
315
  ReportToCaller,
316
};
317
318
template<ProcessFailureBehavior Behavior = ProcessFailureBehavior::ReportToCaller,
319
         typename Pred>
320
bool
321
SpinEventLoopUntil(Pred&& aPredicate, nsIThread* aThread = nullptr)
322
0
{
323
0
  nsIThread* thread = aThread ? aThread : NS_GetCurrentThread();
324
0
325
0
  // From a latency perspective, spinning the event loop is like leaving script
326
0
  // and returning to the event loop. Tell the watchdog we stopped running
327
0
  // script (until we return).
328
0
  mozilla::Maybe<xpc::AutoScriptActivity> asa;
329
0
  if (NS_IsMainThread()) {
330
0
    asa.emplace(false);
331
0
  }
332
0
333
0
  while (!aPredicate()) {
334
0
    bool didSomething = NS_ProcessNextEvent(thread, true);
335
0
336
0
    if (Behavior == ProcessFailureBehavior::IgnoreAndContinue) {
337
0
      // Don't care what happened, continue on.
338
0
      continue;
339
0
    } else if (!didSomething) {
340
0
      return false;
341
0
    }
342
0
  }
343
0
344
0
  return true;
345
0
}
Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::SharedThreadPool::SpinUntilEmpty()::$_3>(mozilla::SharedThreadPool::SpinUntilEmpty()::$_3&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_threads1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::ThreadEventTarget::Dispatch(already_AddRefed<nsIRunnable>, unsigned int)::$_0>(mozilla::ThreadEventTarget::Dispatch(already_AddRefed<nsIRunnable>, unsigned int)::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_threads1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)0, nsThread::WaitForAllAsynchronousShutdowns()::$_1>(nsThread::WaitForAllAsynchronousShutdowns()::$_1&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_threads1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, nsThread::Shutdown()::$_2>(nsThread::Shutdown()::$_2&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_threads1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, nsThreadManager::SpinEventLoopUntilInternal(nsINestedEventLoopCondition*, bool)::$_4>(nsThreadManager::SpinEventLoopUntilInternal(nsINestedEventLoopCondition*, bool)::$_4&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_threads1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, nsThreadPool::Dispatch(already_AddRefed<nsIRunnable>, unsigned int)::$_6>(nsThreadPool::Dispatch(already_AddRefed<nsIRunnable>, unsigned int)::$_6&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_netwerk_base0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::net::ProxyAutoConfig::ResolveAddress(nsTString<char> const&, mozilla::net::NetAddr*, unsigned int)::$_0>(mozilla::net::ProxyAutoConfig::ResolveAddress(nsTString<char> const&, mozilla::net::NetAddr*, unsigned int)::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_netwerk_base1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::net::nsAsyncRedirectVerifyHelper::Init(nsIChannel*, nsIChannel*, unsigned int, nsIEventTarget*, bool)::$_0>(mozilla::net::nsAsyncRedirectVerifyHelper::Init(nsIChannel*, nsIChannel*, unsigned int, nsIEventTarget*, bool)::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_netwerk_base4.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, nsSyncStreamListener::WaitForData()::$_0>(nsSyncStreamListener::WaitForData()::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_protocol_http2.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::net::nsHttpConnectionMgr::Shutdown()::$_0>(mozilla::net::nsHttpConnectionMgr::Shutdown()::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, (anonymous namespace)::ParentImpl::ShutdownBackgroundThread()::$_1>((anonymous namespace)::ParentImpl::ShutdownBackgroundThread()::$_1&&, nsIThread*)
Unexecuted instantiation: mozStorageConnection.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::storage::Connection::SpinningSynchronousClose()::$_1>(mozilla::storage::Connection::SpinningSynchronousClose()::$_1&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_storage1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::storage::Service::Observe(nsISupports*, char const*, char16_t const*)::$_0>(mozilla::storage::Service::Observe(nsISupports*, char const*, char16_t const*)::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::layers::CompositorBridgeChild::ShutDown()::$_2>(mozilla::layers::CompositorBridgeChild::ShutDown()::$_2&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::layers::CompositorThreadHolder::Shutdown()::$_10>(mozilla::layers::CompositorThreadHolder::Shutdown()::$_10&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_gfx_vr0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::gfx::VRListenerThreadHolder::Shutdown()::$_2>(mozilla::gfx::VRListenerThreadHolder::Shutdown()::$_2&&, nsIThread*)
Unexecuted instantiation: nsGlobalWindowInner.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, nsGlobalWindowInner::ShowSlowScriptDialog(nsTString<char16_t> const&)::$_2>(nsGlobalWindowInner::ShowSlowScriptDialog(nsTString<char16_t> const&)::$_2&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_dom_cache1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::cache::Manager::ShutdownAll()::$_0>(mozilla::dom::cache::Manager::ShutdownAll()::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_dom_filehandle0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::FileHandleThreadPool::Shutdown()::$_0>(mozilla::dom::FileHandleThreadPool::Shutdown()::$_0&&, nsIThread*)
Unexecuted instantiation: AsmJSCache.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::asmjscache::(anonymous namespace)::Client::ShutdownWorkThreads()::$_0>(mozilla::dom::asmjscache::(anonymous namespace)::Client::ShutdownWorkThreads()::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::gmp::GeckoMediaPluginServiceParent::Observe(nsISupports*, char const*, char16_t const*)::$_12>(mozilla::gmp::GeckoMediaPluginServiceParent::Observe(nsISupports*, char const*, char16_t const*)::$_12&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::quota::QuotaManager::ShutdownObserver::Observe(nsISupports*, char const*, char16_t const*)::$_0>(mozilla::dom::quota::QuotaManager::ShutdownObserver::Observe(nsISupports*, char const*, char16_t const*)::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::StorageObserver::Observe(nsISupports*, char const*, char16_t const*)::$_3>(mozilla::dom::StorageObserver::Observe(nsISupports*, char const*, char16_t const*)::$_3&&, nsIThread*)
Unexecuted instantiation: nsPluginHost.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, nsPluginHost::SiteHasData(nsIPluginTag*, nsTSubstring<char> const&, bool*)::$_0>(nsPluginHost::SiteHasData(nsIPluginTag*, nsTSubstring<char> const&, bool*)::$_0&&, nsIThread*)
Unexecuted instantiation: ActorsParent.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::indexedDB::(anonymous namespace)::ConnectionPool::ThreadRunnable::Run()::$_1>(mozilla::dom::indexedDB::(anonymous namespace)::ConnectionPool::ThreadRunnable::Run()::$_1&&, nsIThread*)
Unexecuted instantiation: ActorsParent.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::indexedDB::(anonymous namespace)::QuotaClient::ShutdownWorkThreads()::$_2>(mozilla::dom::indexedDB::(anonymous namespace)::QuotaClient::ShutdownWorkThreads()::$_2&&, nsIThread*)
Unexecuted instantiation: ActorsParent.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::indexedDB::(anonymous namespace)::ConnectionPool::Shutdown()::$_0>(mozilla::dom::indexedDB::(anonymous namespace)::ConnectionPool::Shutdown()::$_0&&, nsIThread*)
Unexecuted instantiation: ContentChild.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::ContentChild::ProvideWindowCommon(mozilla::dom::TabChild*, mozIDOMWindowProxy*, bool, unsigned int, bool, bool, bool, nsIURI*, nsTSubstring<char16_t> const&, nsTSubstring<char> const&, bool, nsDocShellLoadInfo*, bool*, mozIDOMWindowProxy**)::$_4>(mozilla::dom::ContentChild::ProvideWindowCommon(mozilla::dom::TabChild*, mozIDOMWindowProxy*, bool, unsigned int, bool, bool, bool, nsIURI*, nsTSubstring<char16_t> const&, nsTSubstring<char> const&, bool, nsDocShellLoadInfo*, bool*, mozIDOMWindowProxy**)::$_4&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_dom_ipc0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::ContentParent::Observe(nsISupports*, char const*, char16_t const*)::$_1>(mozilla::dom::ContentParent::Observe(nsISupports*, char const*, char16_t const*)::$_1&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_dom_xml0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::XMLDocument::Load(nsTSubstring<char16_t> const&, mozilla::dom::CallerType, mozilla::ErrorResult&)::$_0>(mozilla::dom::XMLDocument::Load(nsTSubstring<char16_t> const&, mozilla::dom::CallerType, mozilla::ErrorResult&)::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_dom_xhr0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::XMLHttpRequestMainThread::SendInternal(mozilla::dom::BodyExtractorBase const*, bool)::$_0>(mozilla::dom::XMLHttpRequestMainThread::SendInternal(mozilla::dom::BodyExtractorBase const*, bool)::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::dom::(anonymous namespace)::QuotaClient::ShutdownWorkThreads()::$_0>(mozilla::dom::(anonymous namespace)::QuotaClient::ShutdownWorkThreads()::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_layout_printing0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::layout::RemotePrintJobChild::InitializePrint(nsTString<char16_t> const&, nsTString<char16_t> const&, int const&, int const&)::$_0>(mozilla::layout::RemotePrintJobChild::InitializePrint(nsTString<char16_t> const&, nsTString<char16_t> const&, int const&, int const&)::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpfe_appshell0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, nsXULWindow::ShowModal()::$_0>(nsXULWindow::ShowModal()::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpfe_appshell0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, nsXULWindow::CreateNewContentWindow(int, nsITabParent*, mozIDOMWindowProxy*, unsigned long, nsIXULWindow**)::$_1>(nsXULWindow::CreateNewContentWindow(int, nsITabParent*, mozIDOMWindowProxy*, unsigned long, nsIXULWindow**)::$_1&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::places::Database::Observe(nsISupports*, char const*, char16_t const*)::$_6>(mozilla::places::Database::Observe(nsISupports*, char const*, char16_t const*)::$_6&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_printingui_ipc0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, nsPrintingProxy::ShowPrintDialog(mozIDOMWindowProxy*, nsIWebBrowserPrint*, nsIPrintSettings*)::$_0>(nsPrintingProxy::ShowPrintDialog(mozIDOMWindowProxy*, nsIWebBrowserPrint*, nsIPrintSettings*)::$_0&&, nsIThread*)
Unexecuted instantiation: ProfileReset.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, ProfileResetCleanup(nsIToolkitProfile*)::$_0>(ProfileResetCleanup(nsIToolkitProfile*)::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_pref_autoconfig_src0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, nsAutoConfig::downloadAutoConfig()::$_0>(nsAutoConfig::downloadAutoConfig()::$_0&&, nsIThread*)
Unexecuted instantiation: nsJSInspector.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, mozilla::jsinspector::nsJSInspector::EnterNestedEventLoop(JS::Handle<JS::Value>, unsigned int*)::$_0>(mozilla::jsinspector::nsJSInspector::EnterNestedEventLoop(JS::Handle<JS::Value>, unsigned int*)::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, EventPriorities_IdleAfterNormal_Test::TestBody()::$_3>(EventPriorities_IdleAfterNormal_Test::TestBody()::$_3&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, EventPriorities_InterleaveHighNormal_Test::TestBody()::$_6>(EventPriorities_InterleaveHighNormal_Test::TestBody()::$_6&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestInputStreamLengthHelper_NonLengthStream_Test::TestBody()::$_4>(TestInputStreamLengthHelper_NonLengthStream_Test::TestBody()::$_4&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestInputStreamLengthHelper_LengthStream_Test::TestBody()::$_6>(TestInputStreamLengthHelper_LengthStream_Test::TestBody()::$_6&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestInputStreamLengthHelper_InvalidLengthStream_Test::TestBody()::$_8>(TestInputStreamLengthHelper_InvalidLengthStream_Test::TestBody()::$_8&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestInputStreamLengthHelper_AsyncLengthStream_Test::TestBody()::$_10>(TestInputStreamLengthHelper_AsyncLengthStream_Test::TestBody()::$_10&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestInputStreamLengthHelper_FallbackLengthStream_Test::TestBody()::$_12>(TestInputStreamLengthHelper_FallbackLengthStream_Test::TestBody()::$_12&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestMultiplexInputStream_AsyncWait_withEventTarget_Test::TestBody()::$_41>(TestMultiplexInputStream_AsyncWait_withEventTarget_Test::TestBody()::$_41&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestMultiplexInputStream_AsyncWait_withEventTarget_closureOnly_Test::TestBody()::$_42>(TestMultiplexInputStream_AsyncWait_withEventTarget_closureOnly_Test::TestBody()::$_42&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestMultiplexInputStream_LengthInputStream_Test::TestBody()::$_43>(TestMultiplexInputStream_LengthInputStream_Test::TestBody()::$_43&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestMultiplexInputStream_LengthInputStream_Test::TestBody()::$_44>(TestMultiplexInputStream_LengthInputStream_Test::TestBody()::$_44&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestNonBlockingAsyncInputStream_AsyncWait_Simple_Test::TestBody()::$_50>(TestNonBlockingAsyncInputStream_AsyncWait_Simple_Test::TestBody()::$_50&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestNonBlockingAsyncInputStream_AsyncWait_ClosureOnly_withEventTarget_Test::TestBody()::$_51>(TestNonBlockingAsyncInputStream_AsyncWait_ClosureOnly_withEventTarget_Test::TestBody()::$_51&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest2.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestSlicedInputStream_AsyncInputStreamLength_Test::TestBody()::$_0>(TestSlicedInputStream_AsyncInputStreamLength_Test::TestBody()::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest2.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestSlicedInputStream_NegativeAsyncInputStreamLength_Test::TestBody()::$_1>(TestSlicedInputStream_NegativeAsyncInputStreamLength_Test::TestBody()::$_1&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest2.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, TestSlicedInputStream_AbortLengthCallback_Test::TestBody()::$_2>(TestSlicedInputStream_AbortLengthCallback_Test::TestBody()::$_2&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, ThreadUtils_IdleTaskRunner_Test::TestBody()::$_7>(ThreadUtils_IdleTaskRunner_Test::TestBody()::$_7&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, ThreadUtils_IdleTaskRunner_Test::TestBody()::$_8>(ThreadUtils_IdleTaskRunner_Test::TestBody()::$_8&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, ThreadUtils_IdleTaskRunner_Test::TestBody()::$_9>(ThreadUtils_IdleTaskRunner_Test::TestBody()::$_9&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, ThreadUtils_IdleTaskRunner_Test::TestBody()::$_10>(ThreadUtils_IdleTaskRunner_Test::TestBody()::$_10&&, nsIThread*)
Unexecuted instantiation: bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, WaitForCondition::Wait(int)::{lambda()#1}>(WaitForCondition::Wait(int)::{lambda()#1}&&, nsIThread*)
Unexecuted instantiation: bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, CDMStorageTest::AwaitFinished()::{lambda()#1}>(CDMStorageTest::AwaitFinished()::{lambda()#1}&&, nsIThread*)
Unexecuted instantiation: bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, GMPTestMonitor::AwaitFinished()::{lambda()#1}>(GMPTestMonitor::AwaitFinished()::{lambda()#1}&&, nsIThread*)
Unexecuted instantiation: bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, BenchmarkRunner::Run()::{lambda()#2}>(BenchmarkRunner::Run()::{lambda()#2}&&, nsIThread*)
Unexecuted instantiation: bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, VisitURIObserver::WaitForNotification()::{lambda()#1}>(VisitURIObserver::WaitForNotification()::{lambda()#1}&&, nsIThread*)
Unexecuted instantiation: bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, WaitForTopicSpinner::Spin()::{lambda()#1}>(WaitForTopicSpinner::Spin()::{lambda()#1}&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_places_tests_gtest0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, test_observer_topic_dispatched()::$_0>(test_observer_topic_dispatched()::$_0&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_places_tests_gtest0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, IHistory_Test_Test::TestBody()::$_1>(IHistory_Test_Test::TestBody()::$_1&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_geckoview_gtest0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, (anonymous namespace)::DataLoadedObserver::WaitForNotification()::{lambda()#1}>((anonymous namespace)::DataLoadedObserver::WaitForNotification()::{lambda()#1}&&, nsIThread*)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:bool mozilla::SpinEventLoopUntil<(mozilla::ProcessFailureBehavior)1, SyncApplyUpdates(RefPtr<mozilla::safebrowsing::Classifier>, nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> >&)::$_1>(SyncApplyUpdates(RefPtr<mozilla::safebrowsing::Classifier>, nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> >&)::$_1&&, nsIThread*)
346
347
} // namespace mozilla
348
349
/**
350
 * Returns true if we're in the compositor thread.
351
 *
352
 * We declare this here because the headers required to invoke
353
 * CompositorThreadHolder::IsInCompositorThread() also pull in a bunch of system
354
 * headers that #define various tokens in a way that can break the build.
355
 */
356
extern bool NS_IsInCompositorThread();
357
358
extern bool NS_IsInVRThread();
359
360
//-----------------------------------------------------------------------------
361
// Helpers that work with nsCOMPtr:
362
363
inline already_AddRefed<nsIThread>
364
do_GetCurrentThread()
365
3
{
366
3
  nsIThread* thread = nullptr;
367
3
  NS_GetCurrentThread(&thread);
368
3
  return already_AddRefed<nsIThread>(thread);
369
3
}
370
371
inline already_AddRefed<nsIThread>
372
do_GetMainThread()
373
0
{
374
0
  nsIThread* thread = nullptr;
375
0
  NS_GetMainThread(&thread);
376
0
  return already_AddRefed<nsIThread>(thread);
377
0
}
378
379
//-----------------------------------------------------------------------------
380
381
#ifdef MOZILLA_INTERNAL_API
382
// Fast access to the current thread.  Will create an nsIThread if one does not
383
// exist already!  Do not release the returned pointer!  If you want to use this
384
// pointer from some other thread, then you will need to AddRef it.  Otherwise,
385
// you should only consider this pointer valid from code running on the current
386
// thread.
387
extern nsIThread* NS_GetCurrentThread();
388
389
// Exactly the same as NS_GetCurrentThread, except it will not create an
390
// nsThread if one does not exist yet. This is useful in cases where you have
391
// code that runs on threads that may or may not not be driven by an nsThread
392
// event loop, and wish to avoid inadvertently creating a superfluous nsThread.
393
extern nsIThread* NS_GetCurrentThreadNoCreate();
394
395
/**
396
 * Set the name of the current thread. Prefer this function over
397
 * PR_SetCurrentThreadName() if possible. The name will also be included in the
398
 * crash report.
399
 *
400
 * @param aName
401
 *   Name of the thread. A C language null-terminated string.
402
 */
403
extern void NS_SetCurrentThreadName(const char* aName);
404
#endif
405
406
//-----------------------------------------------------------------------------
407
408
#ifndef XPCOM_GLUE_AVOID_NSPR
409
410
namespace mozilla {
411
412
// This class is designed to be subclassed.
413
class IdlePeriod : public nsIIdlePeriod
414
{
415
public:
416
  NS_DECL_THREADSAFE_ISUPPORTS
417
  NS_DECL_NSIIDLEPERIOD
418
419
3
  IdlePeriod() {}
420
421
protected:
422
0
  virtual ~IdlePeriod() {}
423
private:
424
  IdlePeriod(const IdlePeriod&) = delete;
425
  IdlePeriod& operator=(const IdlePeriod&) = delete;
426
  IdlePeriod& operator=(const IdlePeriod&&) = delete;
427
};
428
429
// Cancelable runnable methods implement nsICancelableRunnable, and
430
// Idle and IdleWithTimer also nsIIdleRunnable.
431
enum class RunnableKind
432
{
433
  Standard,
434
  Cancelable,
435
  Idle,
436
  IdleWithTimer
437
};
438
439
// Implementing nsINamed on Runnable bloats vtables for the hundreds of
440
// Runnable subclasses that we have, so we want to avoid that overhead
441
// when we're not using nsINamed for anything.
442
#ifndef RELEASE_OR_BETA
443
#define MOZ_COLLECTING_RUNNABLE_TELEMETRY
444
#endif
445
446
// This class is designed to be subclassed.
447
class Runnable
448
  : public nsIRunnable
449
#ifdef MOZ_COLLECTING_RUNNABLE_TELEMETRY
450
  , public nsINamed
451
#endif
452
{
453
public:
454
  // Runnable refcount changes are preserved when recording/replaying to ensure
455
  // that they are destroyed at consistent points.
456
  NS_DECL_THREADSAFE_ISUPPORTS_WITH_RECORDING(recordreplay::Behavior::Preserve)
457
  NS_DECL_NSIRUNNABLE
458
#ifdef MOZ_COLLECTING_RUNNABLE_TELEMETRY
459
  NS_DECL_NSINAMED
460
#endif
461
462
  Runnable() = delete;
463
464
#ifdef MOZ_COLLECTING_RUNNABLE_TELEMETRY
465
314
  explicit Runnable(const char* aName) : mName(aName) {}
466
#else
467
  explicit Runnable(const char* aName) {}
468
#endif
469
470
protected:
471
128
  virtual ~Runnable() {}
472
473
#ifdef MOZ_COLLECTING_RUNNABLE_TELEMETRY
474
  const char* mName = nullptr;
475
#endif
476
477
private:
478
  Runnable(const Runnable&) = delete;
479
  Runnable& operator=(const Runnable&) = delete;
480
  Runnable& operator=(const Runnable&&) = delete;
481
};
482
483
// This class is designed to be subclassed.
484
class CancelableRunnable : public Runnable,
485
                           public nsICancelableRunnable
486
{
487
public:
488
  NS_DECL_ISUPPORTS_INHERITED
489
  // nsICancelableRunnable
490
  virtual nsresult Cancel() override;
491
492
  CancelableRunnable() = delete;
493
207
  explicit CancelableRunnable(const char* aName) : Runnable(aName) {}
494
495
protected:
496
100
  virtual ~CancelableRunnable() {}
497
private:
498
  CancelableRunnable(const CancelableRunnable&) = delete;
499
  CancelableRunnable& operator=(const CancelableRunnable&) = delete;
500
  CancelableRunnable& operator=(const CancelableRunnable&&) = delete;
501
};
502
503
// This class is designed to be subclassed.
504
class IdleRunnable : public CancelableRunnable,
505
                     public nsIIdleRunnable
506
{
507
public:
508
  NS_DECL_ISUPPORTS_INHERITED
509
510
  IdleRunnable()
511
    : CancelableRunnable("IdleRunnable")
512
1
  {
513
1
  }
514
  explicit IdleRunnable(const char* aName) : CancelableRunnable(aName) {}
515
516
protected:
517
82
  virtual ~IdleRunnable() {}
518
private:
519
  IdleRunnable(const IdleRunnable&) = delete;
520
  IdleRunnable& operator=(const IdleRunnable&) = delete;
521
  IdleRunnable& operator=(const IdleRunnable&&) = delete;
522
};
523
524
// This class is designed to be a wrapper of a real runnable to support event
525
// prioritizable.
526
class PrioritizableRunnable : public Runnable, public nsIRunnablePriority
527
{
528
public:
529
  PrioritizableRunnable(already_AddRefed<nsIRunnable>&& aRunnable,
530
                        uint32_t aPriority);
531
532
#ifdef MOZ_COLLECTING_RUNNABLE_TELEMETRY
533
  NS_IMETHOD GetName(nsACString& aName) override;
534
#endif
535
536
  NS_DECL_ISUPPORTS_INHERITED
537
  NS_DECL_NSIRUNNABLE
538
  NS_DECL_NSIRUNNABLEPRIORITY
539
540
protected:
541
0
  virtual ~PrioritizableRunnable() {};
542
  nsCOMPtr<nsIRunnable> mRunnable;
543
  uint32_t mPriority;
544
};
545
546
namespace detail {
547
548
// An event that can be used to call a C++11 functions or function objects,
549
// including lambdas. The function must have no required arguments, and must
550
// return void.
551
template<typename StoredFunction>
552
class RunnableFunction : public Runnable
553
{
554
public:
555
  template <typename F>
556
  explicit RunnableFunction(const char* aName, F&& aFunction)
557
    : Runnable(aName)
558
    , mFunction(std::forward<F>(aFunction))
559
48
  { }
Unexecuted instantiation: SandboxReporter.cpp:mozilla::detail::RunnableFunction<mozilla::SandboxReporter::Singleton()::$_0>::RunnableFunction<mozilla::SandboxReporter::Singleton()::$_0>(char const*, mozilla::SandboxReporter::Singleton()::$_0&&)
Unexecuted instantiation: Unified_cpp_xpcom_base2.cpp:mozilla::detail::RunnableFunction<nsMemoryReporterManager::DispatchReporter(nsIMemoryReporter*, bool, nsIHandleReportCallback*, nsISupports*, bool)::$_0>::RunnableFunction<nsMemoryReporterManager::DispatchReporter(nsIMemoryReporter*, bool, nsIHandleReportCallback*, nsISupports*, bool)::$_0>(char const*, nsMemoryReporterManager::DispatchReporter(nsIMemoryReporter*, bool, nsIHandleReportCallback*, nsISupports*, bool)::$_0&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<nsMultiplexInputStream::AsyncWaitLengthHelper::Proceed(nsMultiplexInputStream*, nsIEventTarget*, mozilla::BaseAutoLock<mozilla::Mutex&> const&)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:mozilla::detail::RunnableFunction<mozilla::AbstractThread::CreateXPCOMThreadWrapper(nsIThread*, bool)::$_0>::RunnableFunction<mozilla::AbstractThread::CreateXPCOMThreadWrapper(nsIThread*, bool)::$_0>(char const*, mozilla::AbstractThread::CreateXPCOMThreadWrapper(nsIThread*, bool)::$_0&&)
Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:mozilla::detail::RunnableFunction<mozilla::SchedulerImpl::Start()::$_1>::RunnableFunction<mozilla::SchedulerImpl::Start()::$_1>(char const*, mozilla::SchedulerImpl::Start()::$_1&&)
Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:mozilla::detail::RunnableFunction<mozilla::SchedulerImpl::Shutdown()::$_2>::RunnableFunction<mozilla::SchedulerImpl::Shutdown()::$_2>(char const*, mozilla::SchedulerImpl::Shutdown()::$_2&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::PreferencesWriter::Flush()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::PWRunnable::Run()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: nsCookieService.cpp:mozilla::detail::RunnableFunction<nsCookieService::InitDBStates()::$_0>::RunnableFunction<nsCookieService::InitDBStates()::$_0>(char const*, nsCookieService::InitDBStates()::$_0&&)
Unexecuted instantiation: nsCookieService.cpp:mozilla::detail::RunnableFunction<nsCookieService::InitDBStates()::$_0::operator()() const::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: nsCookieService.cpp:mozilla::detail::RunnableFunction<nsCookieService::TryInitDB(bool)::$_2>::RunnableFunction<nsCookieService::TryInitDB(bool)::$_2>(char const*, nsCookieService::TryInitDB(bool)::$_2&&)
Unexecuted instantiation: nsCookieService.cpp:mozilla::detail::RunnableFunction<nsCookieService::RebuildCorruptDB(DBState*)::$_3>::RunnableFunction<nsCookieService::RebuildCorruptDB(DBState*)::$_3>(char const*, nsCookieService::RebuildCorruptDB(DBState*)::$_3&&)
Unexecuted instantiation: nsCookieService.cpp:mozilla::detail::RunnableFunction<nsCookieService::RebuildCorruptDB(DBState*)::$_3::operator()() const::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_netwerk_dns0.cpp:mozilla::detail::RunnableFunction<mozilla::net::TRRService::IsTRRBlacklisted(nsTSubstring<char> const&, bool, bool)::$_1>::RunnableFunction<mozilla::net::TRRService::IsTRRBlacklisted(nsTSubstring<char> const&, bool, bool)::$_1>(char const*, mozilla::net::TRRService::IsTRRBlacklisted(nsTSubstring<char> const&, bool, bool)::$_1&&)
Unexecuted instantiation: Unified_cpp_netwerk_cache20.cpp:mozilla::detail::RunnableFunction<mozilla::net::CacheIndex::AsyncGetDiskConsumption(nsICacheStorageConsumptionObserver*)::$_2>::RunnableFunction<mozilla::net::CacheIndex::AsyncGetDiskConsumption(nsICacheStorageConsumptionObserver*)::$_2>(char const*, mozilla::net::CacheIndex::AsyncGetDiskConsumption(nsICacheStorageConsumptionObserver*)::$_2&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpBackgroundChannelChild::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_0>::RunnableFunction<mozilla::net::HttpBackgroundChannelChild::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_0>(char const*, mozilla::net::HttpBackgroundChannelChild::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_0&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpBackgroundChannelParent::OnChannelClosed()::$_1>::RunnableFunction<mozilla::net::HttpBackgroundChannelParent::OnChannelClosed()::$_1>(char const*, mozilla::net::HttpBackgroundChannelParent::OnChannelClosed()::$_1&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpBackgroundChannelParent::OnNotifyTrackingCookieBlocked(unsigned int)::$_2>::RunnableFunction<mozilla::net::HttpBackgroundChannelParent::OnNotifyTrackingCookieBlocked(unsigned int)::$_2>(char const*, mozilla::net::HttpBackgroundChannelParent::OnNotifyTrackingCookieBlocked(unsigned int)::$_2&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpBackgroundChannelParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_3>::RunnableFunction<mozilla::net::HttpBackgroundChannelParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_3>(char const*, mozilla::net::HttpBackgroundChannelParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_3&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpChannelChild::OnTransportAndData(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)::$_5>::RunnableFunction<mozilla::net::HttpChannelChild::OnTransportAndData(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)::$_5>(char const*, mozilla::net::HttpChannelChild::OnTransportAndData(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)::$_5&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpChannelChild::OnTransportAndData(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)::$_6>::RunnableFunction<mozilla::net::HttpChannelChild::OnTransportAndData(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)::$_6>(char const*, mozilla::net::HttpChannelChild::OnTransportAndData(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)::$_6&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpChannelChild::ProcessNotifyTrackingProtectionDisabled()::$_7>::RunnableFunction<mozilla::net::HttpChannelChild::ProcessNotifyTrackingProtectionDisabled()::$_7>(char const*, mozilla::net::HttpChannelChild::ProcessNotifyTrackingProtectionDisabled()::$_7&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpChannelChild::ProcessNotifyTrackingCookieBlocked(unsigned int)::$_8>::RunnableFunction<mozilla::net::HttpChannelChild::ProcessNotifyTrackingCookieBlocked(unsigned int)::$_8>(char const*, mozilla::net::HttpChannelChild::ProcessNotifyTrackingCookieBlocked(unsigned int)::$_8&&)
Unexecuted instantiation: Unified_cpp_protocol_http1.cpp:mozilla::detail::RunnableFunction<mozilla::net::nsHttpChannel::ResumeInternal()::$_19>::RunnableFunction<mozilla::net::nsHttpChannel::ResumeInternal()::$_19>(char const*, mozilla::net::nsHttpChannel::ResumeInternal()::$_19&&)
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:mozilla::detail::RunnableFunction<mozilla::ipc::CrashReporterHost::NotifyCrashService(GeckoProcessType, int, nsTString<char16_t> const&)::$_0>::RunnableFunction<mozilla::ipc::CrashReporterHost::NotifyCrashService(GeckoProcessType, int, nsTString<char16_t> const&)::$_0>(char const*, mozilla::ipc::CrashReporterHost::NotifyCrashService(GeckoProcessType, int, nsTString<char16_t> const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_js_xpconnect_src0.cpp:mozilla::detail::RunnableFunction<XPCJSRuntime::DoCycleCollectionCallback(JSContext*)::$_4>::RunnableFunction<XPCJSRuntime::DoCycleCollectionCallback(JSContext*)::$_4>(char const*, XPCJSRuntime::DoCycleCollectionCallback(JSContext*)::$_4&&)
Unexecuted instantiation: Unified_cpp_modules_libjar0.cpp:mozilla::detail::RunnableFunction<nsJARChannel::OpenLocalFile()::$_0>::RunnableFunction<nsJARChannel::OpenLocalFile()::$_0>(char const*, nsJARChannel::OpenLocalFile()::$_0&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::SetRemoteSSRCLocked(unsigned int)::$_0>::RunnableFunction<mozilla::WebrtcVideoConduit::SetRemoteSSRCLocked(unsigned int)::$_0>(char const*, mozilla::WebrtcVideoConduit::SetRemoteSSRCLocked(unsigned int)::$_0&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::PollStats()::$_1>::RunnableFunction<mozilla::WebrtcVideoConduit::PollStats()::$_1>(char const*, mozilla::WebrtcVideoConduit::PollStats()::$_1&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::PollStats()::$_2>::RunnableFunction<mozilla::WebrtcVideoConduit::PollStats()::$_2>(char const*, mozilla::WebrtcVideoConduit::PollStats()::$_2&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::PollStats()::$_3>::RunnableFunction<mozilla::WebrtcVideoConduit::PollStats()::$_3>(char const*, mozilla::WebrtcVideoConduit::PollStats()::$_3&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::UpdateVideoStatsTimer()::$_4>::RunnableFunction<mozilla::WebrtcVideoConduit::UpdateVideoStatsTimer()::$_4>(char const*, mozilla::WebrtcVideoConduit::UpdateVideoStatsTimer()::$_4&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::AddOrUpdateSink(rtc::VideoSinkInterface<webrtc::VideoFrame>*, rtc::VideoSinkWants const&)::$_6>::RunnableFunction<mozilla::WebrtcVideoConduit::AddOrUpdateSink(rtc::VideoSinkInterface<webrtc::VideoFrame>*, rtc::VideoSinkWants const&)::$_6>(char const*, mozilla::WebrtcVideoConduit::AddOrUpdateSink(rtc::VideoSinkInterface<webrtc::VideoFrame>*, rtc::VideoSinkWants const&)::$_6&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::SendVideoFrame(webrtc::VideoFrame const&)::$_7>::RunnableFunction<mozilla::WebrtcVideoConduit::SendVideoFrame(webrtc::VideoFrame const&)::$_7>(char const*, mozilla::WebrtcVideoConduit::SendVideoFrame(webrtc::VideoFrame const&)::$_7&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::ReceivedRTPPacket(void const*, int, unsigned int)::$_8>::RunnableFunction<mozilla::WebrtcVideoConduit::ReceivedRTPPacket(void const*, int, unsigned int)::$_8>(char const*, mozilla::WebrtcVideoConduit::ReceivedRTPPacket(void const*, int, unsigned int)::$_8&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::ReceivedRTPPacket(void const*, int, unsigned int)::$_8::operator()()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::AudioProxyThread::QueueAudioChunk(int, mozilla::AudioChunk const&, bool)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_uriloader_exthandler0.cpp:mozilla::detail::RunnableFunction<nsExtProtocolChannel::OpenURL()::$_0>::RunnableFunction<nsExtProtocolChannel::OpenURL()::$_0>(char const*, nsExtProtocolChannel::OpenURL()::$_0&&)
Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::detail::RunnableFunction<mozilla::layers::PaintThread::QueuePaintTask(mozilla::UniquePtr<mozilla::layers::PaintTask, mozilla::DefaultDelete<mozilla::layers::PaintTask> >&&)::$_7>::RunnableFunction<mozilla::layers::PaintThread::QueuePaintTask(mozilla::UniquePtr<mozilla::layers::PaintTask, mozilla::DefaultDelete<mozilla::layers::PaintTask> >&&)::$_7>(char const*, mozilla::layers::PaintThread::QueuePaintTask(mozilla::UniquePtr<mozilla::layers::PaintTask, mozilla::DefaultDelete<mozilla::layers::PaintTask> >&&)::$_7&&)
Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::detail::RunnableFunction<mozilla::layers::PaintThread::QueueEndLayerTransaction(mozilla::layers::SyncObjectClient*)::$_8>::RunnableFunction<mozilla::layers::PaintThread::QueueEndLayerTransaction(mozilla::layers::SyncObjectClient*)::$_8>(char const*, mozilla::layers::PaintThread::QueueEndLayerTransaction(mozilla::layers::SyncObjectClient*)::$_8&&)
Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::detail::RunnableFunction<mozilla::layers::ProfilerScreenshots::SubmitScreenshot(unsigned long, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::TimeStamp const&, std::__1::function<bool (mozilla::gfx::DataSourceSurface*)> const&)::$_9>::RunnableFunction<mozilla::layers::ProfilerScreenshots::SubmitScreenshot(unsigned long, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::TimeStamp const&, std::__1::function<bool (mozilla::gfx::DataSourceSurface*)> const&)::$_9>(char const*, mozilla::layers::ProfilerScreenshots::SubmitScreenshot(unsigned long, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::TimeStamp const&, std::__1::function<bool (mozilla::gfx::DataSourceSurface*)> const&)::$_9&&)
Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::detail::RunnableFunction<mozilla::layers::WebRenderLayerManager::DoDestroy(bool)::$_3>::RunnableFunction<mozilla::layers::WebRenderLayerManager::DoDestroy(bool)::$_3>(char const*, mozilla::layers::WebRenderLayerManager::DoDestroy(bool)::$_3&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZCTreeManager::APZCTreeManager(mozilla::layers::LayersId)::$_1>::RunnableFunction<mozilla::layers::APZCTreeManager::APZCTreeManager(mozilla::layers::LayersId)::$_1>(char const*, mozilla::layers::APZCTreeManager::APZCTreeManager(mozilla::layers::LayersId)::$_1&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZCTreeManager::ClearTree()::$_7>::RunnableFunction<mozilla::layers::APZCTreeManager::ClearTree()::$_7>(char const*, mozilla::layers::APZCTreeManager::ClearTree()::$_7&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZSampler::SetWebRenderWindowId(mozilla::wr::WrWindowId const&)::$_20>::RunnableFunction<mozilla::layers::APZSampler::SetWebRenderWindowId(mozilla::wr::WrWindowId const&)::$_20>(char const*, mozilla::layers::APZSampler::SetWebRenderWindowId(mozilla::wr::WrWindowId const&)::$_20&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::SetWebRenderWindowId(mozilla::wr::WrWindowId const&)::$_22>::RunnableFunction<mozilla::layers::APZUpdater::SetWebRenderWindowId(mozilla::wr::WrWindowId const&)::$_22>(char const*, mozilla::layers::APZUpdater::SetWebRenderWindowId(mozilla::wr::WrWindowId const&)::$_22&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::ClearTree(mozilla::layers::LayersId)::$_23>::RunnableFunction<mozilla::layers::APZUpdater::ClearTree(mozilla::layers::LayersId)::$_23>(char const*, mozilla::layers::APZUpdater::ClearTree(mozilla::layers::LayersId)::$_23&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::UpdateScrollDataAndTreeState(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::wr::Epoch const&, mozilla::layers::WebRenderScrollData&&)::$_24>::RunnableFunction<mozilla::layers::APZUpdater::UpdateScrollDataAndTreeState(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::wr::Epoch const&, mozilla::layers::WebRenderScrollData&&)::$_24>(char const*, mozilla::layers::APZUpdater::UpdateScrollDataAndTreeState(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::wr::Epoch const&, mozilla::layers::WebRenderScrollData&&)::$_24&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::UpdateScrollDataAndTreeState(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::wr::Epoch const&, mozilla::layers::WebRenderScrollData&&)::$_25>::RunnableFunction<mozilla::layers::APZUpdater::UpdateScrollDataAndTreeState(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::wr::Epoch const&, mozilla::layers::WebRenderScrollData&&)::$_25>(char const*, mozilla::layers::APZUpdater::UpdateScrollDataAndTreeState(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::wr::Epoch const&, mozilla::layers::WebRenderScrollData&&)::$_25&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::UpdateScrollOffsets(mozilla::layers::LayersId, mozilla::layers::LayersId, std::__1::map<unsigned long, mozilla::layers::ScrollUpdateInfo, std::__1::less<unsigned long>, std::__1::allocator<std::__1::pair<unsigned long const, mozilla::layers::ScrollUpdateInfo> > >&&, unsigned int)::$_26>::RunnableFunction<mozilla::layers::APZUpdater::UpdateScrollOffsets(mozilla::layers::LayersId, mozilla::layers::LayersId, std::__1::map<unsigned long, mozilla::layers::ScrollUpdateInfo, std::__1::less<unsigned long>, std::__1::allocator<std::__1::pair<unsigned long const, mozilla::layers::ScrollUpdateInfo> > >&&, unsigned int)::$_26>(char const*, mozilla::layers::APZUpdater::UpdateScrollOffsets(mozilla::layers::LayersId, mozilla::layers::LayersId, std::__1::map<unsigned long, mozilla::layers::ScrollUpdateInfo, std::__1::less<unsigned long>, std::__1::allocator<std::__1::pair<unsigned long const, mozilla::layers::ScrollUpdateInfo> > >&&, unsigned int)::$_26&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::NotifyLayerTreeRemoved(mozilla::layers::LayersId)::$_27>::RunnableFunction<mozilla::layers::APZUpdater::NotifyLayerTreeRemoved(mozilla::layers::LayersId)::$_27>(char const*, mozilla::layers::APZUpdater::NotifyLayerTreeRemoved(mozilla::layers::LayersId)::$_27&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::GetAPZTestData(mozilla::layers::LayersId, mozilla::layers::APZTestData*)::$_28>::RunnableFunction<mozilla::layers::APZUpdater::GetAPZTestData(mozilla::layers::LayersId, mozilla::layers::APZTestData*)::$_28>(char const*, mozilla::layers::APZUpdater::GetAPZTestData(mozilla::layers::LayersId, mozilla::layers::APZTestData*)::$_28&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::SetTestAsyncScrollOffset(mozilla::layers::LayersId, unsigned long const&, mozilla::gfx::PointTyped<mozilla::CSSPixel, float> const&)::$_29>::RunnableFunction<mozilla::layers::APZUpdater::SetTestAsyncScrollOffset(mozilla::layers::LayersId, unsigned long const&, mozilla::gfx::PointTyped<mozilla::CSSPixel, float> const&)::$_29>(char const*, mozilla::layers::APZUpdater::SetTestAsyncScrollOffset(mozilla::layers::LayersId, unsigned long const&, mozilla::gfx::PointTyped<mozilla::CSSPixel, float> const&)::$_29&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::SetTestAsyncZoom(mozilla::layers::LayersId, unsigned long const&, mozilla::gfx::ScaleFactor<mozilla::LayerPixel, mozilla::ParentLayerPixel> const&)::$_30>::RunnableFunction<mozilla::layers::APZUpdater::SetTestAsyncZoom(mozilla::layers::LayersId, unsigned long const&, mozilla::gfx::ScaleFactor<mozilla::LayerPixel, mozilla::ParentLayerPixel> const&)::$_30>(char const*, mozilla::layers::APZUpdater::SetTestAsyncZoom(mozilla::layers::LayersId, unsigned long const&, mozilla::gfx::ScaleFactor<mozilla::LayerPixel, mozilla::ParentLayerPixel> const&)::$_30&&)
Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::detail::RunnableFunction<mozilla::layers::CheckerboardEventStorage::Report(unsigned int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)::$_0>::RunnableFunction<mozilla::layers::CheckerboardEventStorage::Report(unsigned int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)::$_0>(char const*, mozilla::layers::CheckerboardEventStorage::Report(unsigned int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::detail::RunnableFunction<mozilla::layers::BasicCompositor::TryToEndRemoteDrawing(bool)::$_1>::RunnableFunction<mozilla::layers::BasicCompositor::TryToEndRemoteDrawing(bool)::$_1>(char const*, mozilla::layers::BasicCompositor::TryToEndRemoteDrawing(bool)::$_1&&)
Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::detail::RunnableFunction<mozilla::layers::DestroyTextureData(mozilla::layers::TextureData*, mozilla::layers::LayersIPCChannel*, bool, bool)::$_2>::RunnableFunction<mozilla::layers::DestroyTextureData(mozilla::layers::TextureData*, mozilla::layers::LayersIPCChannel*, bool, bool)::$_2>(char const*, mozilla::layers::DestroyTextureData(mozilla::layers::TextureData*, mozilla::layers::LayersIPCChannel*, bool, bool)::$_2&&)
Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::detail::RunnableFunction<mozilla::layers::ClientLayerManager::Destroy()::$_0>::RunnableFunction<mozilla::layers::ClientLayerManager::Destroy()::$_0>(char const*, mozilla::layers::ClientLayerManager::Destroy()::$_0&&)
Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::detail::RunnableFunction<mozilla::layers::CompositableClient::GetTextureClientRecycler()::$_1>::RunnableFunction<mozilla::layers::CompositableClient::GetTextureClientRecycler()::$_1>(char const*, mozilla::layers::CompositableClient::GetTextureClientRecycler()::$_1&&)
Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::detail::RunnableFunction<mozilla::layers::CompositorBridgeParent::FlushApzRepaints(mozilla::layers::LayersId const&)::$_3>::RunnableFunction<mozilla::layers::CompositorBridgeParent::FlushApzRepaints(mozilla::layers::LayersId const&)::$_3>(char const*, mozilla::layers::CompositorBridgeParent::FlushApzRepaints(mozilla::layers::LayersId const&)::$_3&&)
Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::detail::RunnableFunction<mozilla::layers::CompositorManagerParent::Shutdown()::$_7>::RunnableFunction<mozilla::layers::CompositorManagerParent::Shutdown()::$_7>(char const*, mozilla::layers::CompositorManagerParent::Shutdown()::$_7&&)
Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::detail::RunnableFunction<mozilla::layers::ImageBridgeParent::Shutdown()::$_11>::RunnableFunction<mozilla::layers::ImageBridgeParent::Shutdown()::$_11>(char const*, mozilla::layers::ImageBridgeParent::Shutdown()::$_11&&)
Unexecuted instantiation: gfxPlatform.cpp:mozilla::detail::RunnableFunction<gfxPlatform::NotifyCompositorCreated(mozilla::layers::LayersBackend)::$_2>::RunnableFunction<gfxPlatform::NotifyCompositorCreated(mozilla::layers::LayersBackend)::$_2>(char const*, gfxPlatform::NotifyCompositorCreated(mozilla::layers::LayersBackend)::$_2&&)
Unexecuted instantiation: GPUParent.cpp:mozilla::detail::RunnableFunction<mozilla::gfx::GPUParent::NotifyDeviceReset()::$_0>::RunnableFunction<mozilla::gfx::GPUParent::NotifyDeviceReset()::$_0>(char const*, mozilla::gfx::GPUParent::NotifyDeviceReset()::$_0&&)
Unexecuted instantiation: Unified_cpp_gfx_vr0.cpp:mozilla::detail::RunnableFunction<mozilla::gfx::VRManager::Shutdown()::$_0>::RunnableFunction<mozilla::gfx::VRManager::Shutdown()::$_0>(char const*, mozilla::gfx::VRManager::Shutdown()::$_0&&)
Unexecuted instantiation: Unified_cpp_gfx_vr0.cpp:mozilla::detail::RunnableFunction<mozilla::gfx::VRManager::RefreshVRDisplays(bool)::$_1>::RunnableFunction<mozilla::gfx::VRManager::RefreshVRDisplays(bool)::$_1>(char const*, mozilla::gfx::VRManager::RefreshVRDisplays(bool)::$_1&&)
Unexecuted instantiation: Unified_cpp_gfx_config0.cpp:mozilla::detail::RunnableFunction<mozilla::gfx::gfxConfig::EnableFallback(mozilla::gfx::Fallback, char const*)::$_0>::RunnableFunction<mozilla::gfx::gfxConfig::EnableFallback(mozilla::gfx::Fallback, char const*)::$_0>(char const*, mozilla::gfx::gfxConfig::EnableFallback(mozilla::gfx::Fallback, char const*)::$_0&&)
Unexecuted instantiation: Unified_cpp_image2.cpp:mozilla::detail::RunnableFunction<imgRequestProxy::RemoveFromLoadGroup()::$_0>::RunnableFunction<imgRequestProxy::RemoveFromLoadGroup()::$_0>(char const*, imgRequestProxy::RemoveFromLoadGroup()::$_0&&)
Unexecuted instantiation: Unified_cpp_image2.cpp:mozilla::detail::RunnableFunction<imgRequestProxy::MoveToBackgroundInLoadGroup()::$_1>::RunnableFunction<imgRequestProxy::MoveToBackgroundInLoadGroup()::$_1>(char const*, imgRequestProxy::MoveToBackgroundInLoadGroup()::$_1&&)
Unexecuted instantiation: Unified_cpp_image2.cpp:mozilla::detail::RunnableFunction<imgRequestProxy::Notify(int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const*)::$_2>::RunnableFunction<imgRequestProxy::Notify(int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const*)::$_2>(char const*, imgRequestProxy::Notify(int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const*)::$_2&&)
Unexecuted instantiation: Unified_cpp_image2.cpp:mozilla::detail::RunnableFunction<imgRequestProxy::Notify(int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const*)::$_3>::RunnableFunction<imgRequestProxy::Notify(int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const*)::$_3>(char const*, imgRequestProxy::Notify(int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const*)::$_3&&)
Unexecuted instantiation: Unified_cpp_image2.cpp:mozilla::detail::RunnableFunction<imgRequestProxy::OnLoadComplete(bool)::$_4>::RunnableFunction<imgRequestProxy::OnLoadComplete(bool)::$_4>(char const*, imgRequestProxy::OnLoadComplete(bool)::$_4&&)
nsContentUtils.cpp:mozilla::detail::RunnableFunction<nsContentUtils::AsyncPrecreateStringBundles()::$_3>::RunnableFunction<nsContentUtils::AsyncPrecreateStringBundles()::$_3>(char const*, nsContentUtils::AsyncPrecreateStringBundles()::$_3&&)
Line
Count
Source
559
42
  { }
nsContentUtils.cpp:mozilla::detail::RunnableFunction<nsContentUtils::UserInteractionObserver::Init()::$_4>::RunnableFunction<nsContentUtils::UserInteractionObserver::Init()::$_4>(char const*, nsContentUtils::UserInteractionObserver::Init()::$_4&&)
Line
Count
Source
559
3
  { }
Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ImageEncoder::EnsureThreadPool()::$_3>::RunnableFunction<mozilla::dom::ImageEncoder::EnsureThreadPool()::$_3>(char const*, mozilla::dom::ImageEncoder::EnsureThreadPool()::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::detail::RunnableFunction<nsFocusManager::RaiseWindow(nsPIDOMWindowOuter*)::$_7>::RunnableFunction<nsFocusManager::RaiseWindow(nsPIDOMWindowOuter*)::$_7>(char const*, nsFocusManager::RaiseWindow(nsPIDOMWindowOuter*)::$_7&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::dom::ImageBitmapShutdownObserver::RegisterObserver()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::dom::ImageBitmapShutdownObserver::UnregisterObserver()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_canvas0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::CreateImageBitmapFromBlob::StartDecodeAndCropBlob()::$_1>::RunnableFunction<mozilla::dom::CreateImageBitmapFromBlob::StartDecodeAndCropBlob()::$_1>(char const*, mozilla::dom::CreateImageBitmapFromBlob::StartDecodeAndCropBlob()::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_clients_api0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::Clients::Get(nsTSubstring<char16_t> const&, mozilla::ErrorResult&)::$_4::operator()(mozilla::dom::ClientOpResult const&) const::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_clients_api0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::Clients::MatchAll(mozilla::dom::ClientQueryOptions const&, mozilla::ErrorResult&)::$_6::operator()(mozilla::dom::ClientOpResult const&) const::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_clients_manager0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::(anonymous namespace)::OnShutdown()::$_18>::RunnableFunction<mozilla::dom::(anonymous namespace)::OnShutdown()::$_18>(char const*, mozilla::dom::(anonymous namespace)::OnShutdown()::$_18&&)
Unexecuted instantiation: Unified_cpp_dom_clients_manager0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::(anonymous namespace)::ClaimOnMainThread(mozilla::dom::ClientInfo const&, mozilla::dom::ServiceWorkerDescriptor const&)::$_19>::RunnableFunction<mozilla::dom::(anonymous namespace)::ClaimOnMainThread(mozilla::dom::ClientInfo const&, mozilla::dom::ServiceWorkerDescriptor const&)::$_19>(char const*, mozilla::dom::(anonymous namespace)::ClaimOnMainThread(mozilla::dom::ClientInfo const&, mozilla::dom::ServiceWorkerDescriptor const&)::$_19&&)
Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ClientSource::Claim(mozilla::dom::ClientClaimArgs const&)::$_7>::RunnableFunction<mozilla::dom::ClientSource::Claim(mozilla::dom::ClientClaimArgs const&)::$_7>(char const*, mozilla::dom::ClientSource::Claim(mozilla::dom::ClientClaimArgs const&)::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ClientSourceParent::RecvInheritController(mozilla::dom::ClientControlledArgs const&)::$_10>::RunnableFunction<mozilla::dom::ClientSourceParent::RecvInheritController(mozilla::dom::ClientControlledArgs const&)::$_10>(char const*, mozilla::dom::ClientSourceParent::RecvInheritController(mozilla::dom::ClientControlledArgs const&)::$_10&&)
Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ClientSourceParent::RecvNoteDOMContentLoaded()::$_11>::RunnableFunction<mozilla::dom::ClientSourceParent::RecvNoteDOMContentLoaded()::$_11>(char const*, mozilla::dom::ClientSourceParent::RecvNoteDOMContentLoaded()::$_11&&)
Unexecuted instantiation: Unified_cpp_dom_events0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::Clipboard::ReadHelper(JSContext*, nsIPrincipal&, mozilla::dom::ClipboardReadType, mozilla::ErrorResult&)::$_0>::RunnableFunction<mozilla::dom::Clipboard::ReadHelper(JSContext*, nsIPrincipal&, mozilla::dom::ClipboardReadType, mozilla::ErrorResult&)::$_0>(char const*, mozilla::dom::Clipboard::ReadHelper(JSContext*, nsIPrincipal&, mozilla::dom::ClipboardReadType, mozilla::ErrorResult&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_events0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::Clipboard::Write(JSContext*, mozilla::dom::DataTransfer&, nsIPrincipal&, mozilla::ErrorResult&)::$_1>::RunnableFunction<mozilla::dom::Clipboard::Write(JSContext*, mozilla::dom::DataTransfer&, nsIPrincipal&, mozilla::ErrorResult&)::$_1>(char const*, mozilla::dom::Clipboard::Write(JSContext*, mozilla::dom::DataTransfer&, nsIPrincipal&, mozilla::ErrorResult&)::$_1&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::dom::FetchBodyConsumer<mozilla::dom::Request>::ShutDownMainThreadConsuming()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::dom::FetchBodyConsumer<mozilla::dom::Response>::ShutDownMainThreadConsuming()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_fetch0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::FetchStream::ReleaseObjects(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_1>::RunnableFunction<mozilla::dom::FetchStream::ReleaseObjects(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_1>(char const*, mozilla::dom::FetchStream::ReleaseObjects(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_fetch0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::FetchStreamReader::ReportErrorToConsole(JSContext*, JS::Handle<JS::Value>)::$_3>::RunnableFunction<mozilla::dom::FetchStreamReader::ReportErrorToConsole(JSContext*, JS::Handle<JS::Value>)::$_3>(char const*, mozilla::dom::FetchStreamReader::ReportErrorToConsole(JSContext*, JS::Handle<JS::Value>)::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_file0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::MutableBlobStorage::MaybeCreateTemporaryFile(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_1>::RunnableFunction<mozilla::dom::MutableBlobStorage::MaybeCreateTemporaryFile(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_1>(char const*, mozilla::dom::MutableBlobStorage::MaybeCreateTemporaryFile(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_file1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::(anonymous namespace)::TemporaryFileInputStream::~TemporaryFileInputStream()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: AutoplayPermissionManager.cpp:mozilla::detail::RunnableFunction<mozilla::AutoplayPermissionManager::RequestWithPrompt()::$_0>::RunnableFunction<mozilla::AutoplayPermissionManager::RequestWithPrompt()::$_0>(char const*, mozilla::AutoplayPermissionManager::RequestWithPrompt()::$_0&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::dom::HTMLMediaElement::AudioChannelAgentCallback::MaybeNotifyMediaResumed(unsigned int)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::HTMLMediaElement::UnbindFromTree(bool, bool)::$_7>::RunnableFunction<mozilla::dom::HTMLMediaElement::UnbindFromTree(bool, bool)::$_7>(char const*, mozilla::dom::HTMLMediaElement::UnbindFromTree(bool, bool)::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::HTMLMediaElement::AsyncResolveSeekDOMPromiseIfExists()::$_14>::RunnableFunction<mozilla::dom::HTMLMediaElement::AsyncResolveSeekDOMPromiseIfExists()::$_14>(char const*, mozilla::dom::HTMLMediaElement::AsyncResolveSeekDOMPromiseIfExists()::$_14&&)
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::HTMLMediaElement::AsyncRejectSeekDOMPromiseIfExists()::$_15>::RunnableFunction<mozilla::dom::HTMLMediaElement::AsyncRejectSeekDOMPromiseIfExists()::$_15>(char const*, mozilla::dom::HTMLMediaElement::AsyncRejectSeekDOMPromiseIfExists()::$_15&&)
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::HTMLMediaElement::ReportCanPlayTelemetry()::$_16>::RunnableFunction<mozilla::dom::HTMLMediaElement::ReportCanPlayTelemetry()::$_16>(char const*, mozilla::dom::HTMLMediaElement::ReportCanPlayTelemetry()::$_16&&)
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::HTMLMediaElement::ReportCanPlayTelemetry()::$_16::operator()() const::{lambda()#3}>::RunnableFunction<{lambda()#3}>(char const*, {lambda()#3}&&)
mozilla::detail::RunnableFunction<void (*)()>::RunnableFunction<void (*)()>(char const*, void (*&&)())
Line
Count
Source
559
3
  { }
Unexecuted instantiation: Unified_cpp_dom_media10.cpp:mozilla::detail::RunnableFunction<mozilla::VideoFrameContainer::SetCurrentFramesLocked(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, nsTArray<mozilla::layers::ImageContainer::NonOwningImage> const&)::$_0>::RunnableFunction<mozilla::VideoFrameContainer::SetCurrentFramesLocked(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, nsTArray<mozilla::layers::ImageContainer::NonOwningImage> const&)::$_0>(char const*, mozilla::VideoFrameContainer::SetCurrentFramesLocked(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, nsTArray<mozilla::layers::ImageContainer::NonOwningImage> const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media10.cpp:mozilla::detail::RunnableFunction<mozilla::VideoFrameContainer::SetCurrentFramesLocked(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, nsTArray<mozilla::layers::ImageContainer::NonOwningImage> const&)::$_1>::RunnableFunction<mozilla::VideoFrameContainer::SetCurrentFramesLocked(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, nsTArray<mozilla::layers::ImageContainer::NonOwningImage> const&)::$_1>(char const*, mozilla::VideoFrameContainer::SetCurrentFramesLocked(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, nsTArray<mozilla::layers::ImageContainer::NonOwningImage> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_media11.cpp:mozilla::detail::RunnableFunction<mozilla::LogToBrowserConsole(nsTSubstring<char16_t> const&)::$_0>::RunnableFunction<mozilla::LogToBrowserConsole(nsTSubstring<char16_t> const&)::$_0>(char const*, mozilla::LogToBrowserConsole(nsTSubstring<char16_t> const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:mozilla::detail::RunnableFunction<mozilla::Benchmark::Run()::$_2::operator()() const::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:mozilla::detail::RunnableFunction<mozilla::BenchmarkPlayback::DemuxNextSample()::$_5::operator()(RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>) const::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:mozilla::detail::RunnableFunction<mozilla::BenchmarkPlayback::Output(nsTArray<RefPtr<mozilla::MediaData> > const&)::$_13>::RunnableFunction<mozilla::BenchmarkPlayback::Output(nsTArray<RefPtr<mozilla::MediaData> > const&)::$_13>(char const*, mozilla::BenchmarkPlayback::Output(nsTArray<RefPtr<mozilla::MediaData> > const&)::$_13&&)
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:mozilla::detail::RunnableFunction<mozilla::BenchmarkPlayback::Error(mozilla::MediaResult const&)::$_14>::RunnableFunction<mozilla::BenchmarkPlayback::Error(mozilla::MediaResult const&)::$_14>(char const*, mozilla::BenchmarkPlayback::Error(mozilla::MediaResult const&)::$_14&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::MediaDecoderStateMachine::DispatchIsLiveStream(bool)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:mozilla::detail::RunnableFunction<mozilla::ChannelMediaDecoder::NotifyDownloadEnded(nsresult)::$_0>::RunnableFunction<mozilla::ChannelMediaDecoder::NotifyDownloadEnded(nsresult)::$_0>(char const*, mozilla::ChannelMediaDecoder::NotifyDownloadEnded(nsresult)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:mozilla::detail::RunnableFunction<mozilla::ChannelMediaDecoder::DurationChanged()::$_1>::RunnableFunction<mozilla::ChannelMediaDecoder::DurationChanged()::$_1>(char const*, mozilla::ChannelMediaDecoder::DurationChanged()::$_1&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::MediaDecoderStateMachine::DispatchCanPlayThrough(bool)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:mozilla::detail::RunnableFunction<mozilla::ChannelMediaResource::CopySegmentToCache(nsIInputStream*, void*, char const*, unsigned int, unsigned int, unsigned int*)::$_5>::RunnableFunction<mozilla::ChannelMediaResource::CopySegmentToCache(nsIInputStream*, void*, char const*, unsigned int, unsigned int, unsigned int*)::$_5>(char const*, mozilla::ChannelMediaResource::CopySegmentToCache(nsIInputStream*, void*, char const*, unsigned int, unsigned int, unsigned int*)::$_5&&)
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:mozilla::detail::RunnableFunction<mozilla::ChannelMediaResource::CacheClientNotifyDataEnded(nsresult)::$_6>::RunnableFunction<mozilla::ChannelMediaResource::CacheClientNotifyDataEnded(nsresult)::$_6>(char const*, mozilla::ChannelMediaResource::CacheClientNotifyDataEnded(nsresult)::$_6&&)
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:mozilla::detail::RunnableFunction<mozilla::ChannelMediaResource::CacheClientSeek(long, bool)::$_7>::RunnableFunction<mozilla::ChannelMediaResource::CacheClientSeek(long, bool)::$_7>(char const*, mozilla::ChannelMediaResource::CacheClientSeek(long, bool)::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:mozilla::detail::RunnableFunction<GetSourceSurface(mozilla::layers::Image*)::$_5>::RunnableFunction<GetSourceSurface(mozilla::layers::Image*)::$_5>(char const*, GetSourceSurface(mozilla::layers::Image*)::$_5&&)
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:mozilla::detail::RunnableFunction<mozilla::FileBlockCache::Init()::$_0>::RunnableFunction<mozilla::FileBlockCache::Init()::$_0>(char const*, mozilla::FileBlockCache::Init()::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:mozilla::detail::RunnableFunction<mozilla::FileBlockCache::Flush()::$_2>::RunnableFunction<mozilla::FileBlockCache::Flush()::$_2>(char const*, mozilla::FileBlockCache::Flush()::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:mozilla::detail::RunnableFunction<mozilla::FileBlockCache::Close()::$_3>::RunnableFunction<mozilla::FileBlockCache::Close()::$_3>(char const*, mozilla::FileBlockCache::Close()::$_3&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::MediaDecoderStateMachine::DispatchSetFragmentEndTime(mozilla::media::TimeUnit const&)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::DormantState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::DormantState>()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCache::Flush()::$_0>::RunnableFunction<mozilla::MediaCache::Flush()::$_0>(char const*, mozilla::MediaCache::Flush()::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCache::CloseStreamsForPrivateBrowsing()::$_1>::RunnableFunction<mozilla::MediaCache::CloseStreamsForPrivateBrowsing()::$_1>(char const*, mozilla::MediaCache::CloseStreamsForPrivateBrowsing()::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::NotifyLoadID(unsigned int)::$_2>::RunnableFunction<mozilla::MediaCacheStream::NotifyLoadID(unsigned int)::$_2>(char const*, mozilla::MediaCacheStream::NotifyLoadID(unsigned int)::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::NotifyDataStarted(unsigned int, long, bool, long)::$_3>::RunnableFunction<mozilla::MediaCacheStream::NotifyDataStarted(unsigned int, long, bool, long)::$_3>(char const*, mozilla::MediaCacheStream::NotifyDataStarted(unsigned int, long, bool, long)::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::NotifyDataEnded(unsigned int, nsresult)::$_4>::RunnableFunction<mozilla::MediaCacheStream::NotifyDataEnded(unsigned int, nsresult)::$_4>(char const*, mozilla::MediaCacheStream::NotifyDataEnded(unsigned int, nsresult)::$_4&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::NotifyClientSuspended(bool)::$_5>::RunnableFunction<mozilla::MediaCacheStream::NotifyClientSuspended(bool)::$_5>(char const*, mozilla::MediaCacheStream::NotifyClientSuspended(bool)::$_5&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::NotifyResume()::$_6>::RunnableFunction<mozilla::MediaCacheStream::NotifyResume()::$_6>(char const*, mozilla::MediaCacheStream::NotifyResume()::$_6&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::Close()::$_7>::RunnableFunction<mozilla::MediaCacheStream::Close()::$_7>(char const*, mozilla::MediaCacheStream::Close()::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::SetReadMode(mozilla::MediaCacheStream::ReadMode)::$_8>::RunnableFunction<mozilla::MediaCacheStream::SetReadMode(mozilla::MediaCacheStream::ReadMode)::$_8>(char const*, mozilla::MediaCacheStream::SetReadMode(mozilla::MediaCacheStream::ReadMode)::$_8&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::ThrottleReadahead(bool)::$_9>::RunnableFunction<mozilla::MediaCacheStream::ThrottleReadahead(bool)::$_9>(char const*, mozilla::MediaCacheStream::ThrottleReadahead(bool)::$_9&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::Init(long)::$_10>::RunnableFunction<mozilla::MediaCacheStream::Init(long)::$_10>(char const*, mozilla::MediaCacheStream::Init(long)::$_10&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::InitAsClone(mozilla::MediaCacheStream*)::$_11>::RunnableFunction<mozilla::MediaCacheStream::InitAsClone(mozilla::MediaCacheStream*)::$_11>(char const*, mozilla::MediaCacheStream::InitAsClone(mozilla::MediaCacheStream*)::$_11&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaDecoder::Shutdown()::$_12>::RunnableFunction<mozilla::MediaDecoder::Shutdown()::$_12>(char const*, mozilla::MediaDecoder::Shutdown()::$_12&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::DecodingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::DecodingState>()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::NextFrameSeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::NextFrameSeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&&)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::NextFrameSeekingFromDormantState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::NextFrameSeekingFromDormantState, mozilla::SeekJob, mozilla::SeekJob>(mozilla::SeekJob&&, mozilla::SeekJob&&)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::ShutdownState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::ShutdownState>()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::VideoOnlySeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::VideoOnlySeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::AccurateSeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::AccurateSeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::NextFrameSeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::NextFrameSeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::DecodingFirstFrameState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::DecodingFirstFrameState>()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::CompletedState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::CompletedState>()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::BufferingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::BufferingState>()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaDecoderStateMachine::RequestDebugInfo()::$_36>::RunnableFunction<mozilla::MediaDecoderStateMachine::RequestDebugInfo()::$_36>(char const*, mozilla::MediaDecoderStateMachine::RequestDebugInfo()::$_36&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::MediaFormatReader::DemuxerProxy::Wrapper::Reset()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::MediaFormatReader::DemuxerProxy::Wrapper::~Wrapper()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::GetUserMediaTask::Run()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:mozilla::detail::RunnableFunction<RefPtr<mozilla::MozPromise<bool, RefPtr<mozilla::MediaMgrError>, true> > mozilla::MediaManager::PostTask<mozilla::MozPromise<bool, RefPtr<mozilla::MediaMgrError>, true>, mozilla::SourceListener::InitializeAsync()::$_40>(char const*, mozilla::SourceListener::InitializeAsync()::$_40&&)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:mozilla::detail::RunnableFunction<RefPtr<mozilla::MozPromise<nsresult, bool, true> > mozilla::MediaManager::PostTask<mozilla::MozPromise<nsresult, bool, true>, mozilla::SourceListener::SetEnabledFor(int, bool)::$_45::operator()()::{lambda(mozilla::MozPromiseHolder<mozilla::MozPromise<nsresult, bool, true> >&)#1}>(char const*, mozilla::SourceListener::SetEnabledFor(int, bool)::$_45::operator()()::{lambda(mozilla::MozPromiseHolder<mozilla::MozPromise<nsresult, bool, true> >&)#1}&&)::{lambda()#1}>::RunnableFunction<mozilla::SourceListener::SetEnabledFor(int, bool)::$_45::operator()()::{lambda(mozilla::MozPromiseHolder<mozilla::MozPromise<nsresult, bool, true> >&)#1}&&>(char const, RefPtr&&)
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:mozilla::detail::RunnableFunction<RefPtr<mozilla::MozPromise<bool, mozilla::Maybe<nsTString<char16_t> >, true> > mozilla::MediaManager::PostTask<mozilla::MozPromise<bool, mozilla::Maybe<nsTString<char16_t> >, true>, mozilla::SourceListener::ApplyConstraintsToTrack(nsPIDOMWindowInner*, int, mozilla::dom::MediaTrackConstraints const&, mozilla::dom::CallerType)::$_49>(char const*, mozilla::SourceListener::ApplyConstraintsToTrack(nsPIDOMWindowInner*, int, mozilla::dom::MediaTrackConstraints const&, mozilla::dom::CallerType)::$_49&&)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:mozilla::detail::RunnableFunction<mozilla::GetUserMediaWindowListener::NotifyChrome()::$_50>::RunnableFunction<mozilla::GetUserMediaWindowListener::NotifyChrome()::$_50>(char const*, mozilla::GetUserMediaWindowListener::NotifyChrome()::$_50&&)
Unexecuted instantiation: Unified_cpp_dom_media9.cpp:mozilla::detail::RunnableFunction<mozilla::ReaderProxy::SetCanonicalDuration(mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*)::$_7>::RunnableFunction<mozilla::ReaderProxy::SetCanonicalDuration(mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*)::$_7>(char const*, mozilla::ReaderProxy::SetCanonicalDuration(mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*)::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_media9.cpp:mozilla::detail::RunnableFunction<mozilla::dom::TextTrack::DispatchAsyncTrustedEvent(nsTString<char16_t> const&)::$_8>::RunnableFunction<mozilla::dom::TextTrack::DispatchAsyncTrustedEvent(nsTString<char16_t> const&)::$_8>(char const*, mozilla::dom::TextTrack::DispatchAsyncTrustedEvent(nsTString<char16_t> const&)::$_8&&)
Unexecuted instantiation: Unified_cpp_dom_media_doctor0.cpp:mozilla::detail::RunnableFunction<mozilla::DDMediaLogs::DispatchProcessLog(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_8>::RunnableFunction<mozilla::DDMediaLogs::DispatchProcessLog(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_8>(char const*, mozilla::DDMediaLogs::DispatchProcessLog(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_8&&)
Unexecuted instantiation: Unified_cpp_dom_media_doctor0.cpp:mozilla::detail::RunnableFunction<mozilla::DecoderDoctorLogger::EnsureLogIsEnabled()::$_9>::RunnableFunction<mozilla::DecoderDoctorLogger::EnsureLogIsEnabled()::$_9>(char const*, mozilla::DecoderDoctorLogger::EnsureLogIsEnabled()::$_9&&)
Unexecuted instantiation: Unified_cpp_dom_media_gmp0.cpp:mozilla::detail::RunnableFunction<mozilla::ChromiumCDMProxy::Init(unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_7>::RunnableFunction<mozilla::ChromiumCDMProxy::Init(unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_7>(char const*, mozilla::ChromiumCDMProxy::Init(unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_media_gmp0.cpp:mozilla::detail::RunnableFunction<mozilla::ChromiumCDMProxy::Shutdown()::$_8>::RunnableFunction<mozilla::ChromiumCDMProxy::Shutdown()::$_8>(char const*, mozilla::ChromiumCDMProxy::Shutdown()::$_8&&)
Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:mozilla::detail::RunnableFunction<mozilla::gmp::GMPServiceParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_20>::RunnableFunction<mozilla::gmp::GMPServiceParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_20>(char const*, mozilla::gmp::GMPServiceParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_20&&)
Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:mozilla::detail::RunnableFunction<mozilla::gmp::GMPServiceParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_20::operator()() const::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:mozilla::detail::RunnableFunction<mozilla::gmp::GMPVideoDecoderParent::Reset()::$_21>::RunnableFunction<mozilla::gmp::GMPVideoDecoderParent::Reset()::$_21>(char const*, mozilla::gmp::GMPVideoDecoderParent::Reset()::$_21&&)
Unexecuted instantiation: RemoteVideoDecoder.cpp:mozilla::detail::RunnableFunction<mozilla::dom::RemoteVideoDecoder::~RemoteVideoDecoder()::$_0>::RunnableFunction<mozilla::dom::RemoteVideoDecoder::~RemoteVideoDecoder()::$_0>(char const*, mozilla::dom::RemoteVideoDecoder::~RemoteVideoDecoder()::$_0&&)
Unexecuted instantiation: RemoteVideoDecoder.cpp:mozilla::detail::RunnableFunction<mozilla::dom::RemoteVideoDecoder::SetSeekThreshold(mozilla::media::TimeUnit const&)::$_8>::RunnableFunction<mozilla::dom::RemoteVideoDecoder::SetSeekThreshold(mozilla::media::TimeUnit const&)::$_8>(char const*, mozilla::dom::RemoteVideoDecoder::SetSeekThreshold(mozilla::media::TimeUnit const&)::$_8&&)
Unexecuted instantiation: RemoteVideoDecoder.cpp:mozilla::detail::RunnableFunction<mozilla::dom::RemoteDecoderModule::CreateVideoDecoder(mozilla::CreateDecoderParams const&)::$_9>::RunnableFunction<mozilla::dom::RemoteDecoderModule::CreateVideoDecoder(mozilla::CreateDecoderParams const&)::$_9>(char const*, mozilla::dom::RemoteDecoderModule::CreateVideoDecoder(mozilla::CreateDecoderParams const&)::$_9&&)
Unexecuted instantiation: VideoDecoderChild.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderChild::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_0>::RunnableFunction<mozilla::dom::VideoDecoderChild::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_0>(char const*, mozilla::dom::VideoDecoderChild::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_0&&)
Unexecuted instantiation: VideoDecoderManagerChild.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerChild::Shutdown()::$_0>::RunnableFunction<mozilla::dom::VideoDecoderManagerChild::Shutdown()::$_0>(char const*, mozilla::dom::VideoDecoderManagerChild::Shutdown()::$_0&&)
Unexecuted instantiation: VideoDecoderManagerChild.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerChild::DeallocShmem(mozilla::ipc::Shmem&)::$_1>::RunnableFunction<mozilla::dom::VideoDecoderManagerChild::DeallocShmem(mozilla::ipc::Shmem&)::$_1>(char const*, mozilla::dom::VideoDecoderManagerChild::DeallocShmem(mozilla::ipc::Shmem&)::$_1&&)
Unexecuted instantiation: VideoDecoderManagerChild.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerChild::Readback(mozilla::layers::SurfaceDescriptorGPUVideo const&)::$_2>::RunnableFunction<mozilla::dom::VideoDecoderManagerChild::Readback(mozilla::layers::SurfaceDescriptorGPUVideo const&)::$_2>(char const*, mozilla::dom::VideoDecoderManagerChild::Readback(mozilla::layers::SurfaceDescriptorGPUVideo const&)::$_2&&)
Unexecuted instantiation: VideoDecoderManagerChild.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerChild::DeallocateSurfaceDescriptorGPUVideo(mozilla::layers::SurfaceDescriptorGPUVideo const&)::$_3>::RunnableFunction<mozilla::dom::VideoDecoderManagerChild::DeallocateSurfaceDescriptorGPUVideo(mozilla::layers::SurfaceDescriptorGPUVideo const&)::$_3>(char const*, mozilla::dom::VideoDecoderManagerChild::DeallocateSurfaceDescriptorGPUVideo(mozilla::layers::SurfaceDescriptorGPUVideo const&)::$_3&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerThreadHolder::~VideoDecoderManagerThreadHolder()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: VideoDecoderManagerParent.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerParent::StartupThreads()::$_0>::RunnableFunction<mozilla::dom::VideoDecoderManagerParent::StartupThreads()::$_0>(char const*, mozilla::dom::VideoDecoderManagerParent::StartupThreads()::$_0&&)
Unexecuted instantiation: VideoDecoderManagerParent.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerParent::ShutdownVideoBridge()::$_1>::RunnableFunction<mozilla::dom::VideoDecoderManagerParent::ShutdownVideoBridge()::$_1>(char const*, mozilla::dom::VideoDecoderManagerParent::ShutdownVideoBridge()::$_1&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::DecodedStreamGraphListener::Forget()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media_mediasink0.cpp:mozilla::detail::RunnableFunction<mozilla::DecodedStream::DestroyData(mozilla::UniquePtr<mozilla::DecodedStreamData, mozilla::DefaultDelete<mozilla::DecodedStreamData> >)::$_0>::RunnableFunction<mozilla::DecodedStream::DestroyData(mozilla::UniquePtr<mozilla::DecodedStreamData, mozilla::DefaultDelete<mozilla::DecodedStreamData> >)::$_0>(char const*, mozilla::DecodedStream::DestroyData(mozilla::UniquePtr<mozilla::DecodedStreamData, mozilla::DefaultDelete<mozilla::DecodedStreamData> >)::$_0&&)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaSourceDemuxer::AddSizeOfResources(mozilla::MediaDecoder::ResourceSizes*)::$_10>::RunnableFunction<mozilla::MediaSourceDemuxer::AddSizeOfResources(mozilla::MediaDecoder::ResourceSizes*)::$_10>(char const*, mozilla::MediaSourceDemuxer::AddSizeOfResources(mozilla::MediaDecoder::ResourceSizes*)::$_10&&)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaSourceDemuxer::NotifyInitDataArrived()::$_11>::RunnableFunction<mozilla::MediaSourceDemuxer::NotifyInitDataArrived()::$_11>(char const*, mozilla::MediaSourceDemuxer::NotifyInitDataArrived()::$_11&&)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaSourceTrackDemuxer::Reset()::$_13>::RunnableFunction<mozilla::MediaSourceTrackDemuxer::Reset()::$_13>(char const*, mozilla::MediaSourceTrackDemuxer::Reset()::$_13&&)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaSourceTrackDemuxer::BreakCycles()::$_14>::RunnableFunction<mozilla::MediaSourceTrackDemuxer::BreakCycles()::$_14>(char const*, mozilla::MediaSourceTrackDemuxer::BreakCycles()::$_14&&)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::detail::RunnableFunction<mozilla::TrackBuffersManager::OnDemuxerResetDone(mozilla::MediaResult const&)::$_28>::RunnableFunction<mozilla::TrackBuffersManager::OnDemuxerResetDone(mozilla::MediaResult const&)::$_28>(char const*, mozilla::TrackBuffersManager::OnDemuxerResetDone(mozilla::MediaResult const&)::$_28&&)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::detail::RunnableFunction<mozilla::TrackBuffersManager::OnDemuxerInitDone(mozilla::MediaResult const&)::$_29>::RunnableFunction<mozilla::TrackBuffersManager::OnDemuxerInitDone(mozilla::MediaResult const&)::$_29>(char const*, mozilla::TrackBuffersManager::OnDemuxerInitDone(mozilla::MediaResult const&)::$_29&&)
Unexecuted instantiation: Unified_cpp_dom_media_ogg0.cpp:mozilla::detail::RunnableFunction<mozilla::OggDemuxer::~OggDemuxer()::$_6>::RunnableFunction<mozilla::OggDemuxer::~OggDemuxer()::$_6>(char const*, mozilla::OggDemuxer::~OggDemuxer()::$_6&&)
Unexecuted instantiation: Unified_cpp_dom_media_platforms0.cpp:mozilla::detail::RunnableFunction<mozilla::GlobalAllocPolicy::GlobalAllocPolicy()::$_0>::RunnableFunction<mozilla::GlobalAllocPolicy::GlobalAllocPolicy()::$_0>(char const*, mozilla::GlobalAllocPolicy::GlobalAllocPolicy()::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media_platforms0.cpp:mozilla::detail::RunnableFunction<mozilla::PDMFactory::EnsureInit() const::$_4>::RunnableFunction<mozilla::PDMFactory::EnsureInit() const::$_4>(char const*, mozilla::PDMFactory::EnsureInit() const::$_4&&)
Unexecuted instantiation: Unified_cpp_dom_media_platforms0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaDataDecoderProxy::SetSeekThreshold(mozilla::media::TimeUnit const&)::$_36>::RunnableFunction<mozilla::MediaDataDecoderProxy::SetSeekThreshold(mozilla::media::TimeUnit const&)::$_36>(char const*, mozilla::MediaDataDecoderProxy::SetSeekThreshold(mozilla::media::TimeUnit const&)::$_36&&)
Unexecuted instantiation: Unified_cpp_media_platforms_omx0.cpp:mozilla::detail::RunnableFunction<mozilla::OmxDataDecoder::EmptyBufferDone(mozilla::OmxPromiseLayer::BufferData*)::$_15>::RunnableFunction<mozilla::OmxDataDecoder::EmptyBufferDone(mozilla::OmxPromiseLayer::BufferData*)::$_15>(char const*, mozilla::OmxDataDecoder::EmptyBufferDone(mozilla::OmxPromiseLayer::BufferData*)::$_15&&)
Unexecuted instantiation: Unified_cpp_systemservices0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaSystemResourceManager::Init()::$_15>::RunnableFunction<mozilla::MediaSystemResourceManager::Init()::$_15>(char const*, mozilla::MediaSystemResourceManager::Init()::$_15&&)
Unexecuted instantiation: Unified_cpp_dom_media_webaudio0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::AudioContext::DispatchBlockedEvent()::$_3>::RunnableFunction<mozilla::dom::AudioContext::DispatchBlockedEvent()::$_3>(char const*, mozilla::dom::AudioContext::DispatchBlockedEvent()::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_media_webaudio1.cpp:mozilla::detail::RunnableFunction<mozilla::MediaDecodeTask::OnMetadataRead(mozilla::MetadataHolder&&)::$_0>::RunnableFunction<mozilla::MediaDecodeTask::OnMetadataRead(mozilla::MetadataHolder&&)::$_0>(char const*, mozilla::MediaDecodeTask::OnMetadataRead(mozilla::MetadataHolder&&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media_webaudio2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::WebAudioUtils::LogToDeveloperConsole(unsigned long, char const*)::$_0>::RunnableFunction<mozilla::dom::WebAudioUtils::LogToDeveloperConsole(unsigned long, char const*)::$_0>(char const*, mozilla::dom::WebAudioUtils::LogToDeveloperConsole(unsigned long, char const*)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media_webrtc0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaEngineRemoteVideoSource::Start(RefPtr<mozilla::AllocationHandle const> const&)::$_1>::RunnableFunction<mozilla::MediaEngineRemoteVideoSource::Start(RefPtr<mozilla::AllocationHandle const> const&)::$_1>(char const*, mozilla::MediaEngineRemoteVideoSource::Start(RefPtr<mozilla::AllocationHandle const> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_media_webrtc0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaEngineRemoteVideoSource::DeliverFrame(unsigned char*, mozilla::camera::VideoFrameProperties const&)::$_2>::RunnableFunction<mozilla::MediaEngineRemoteVideoSource::DeliverFrame(unsigned char*, mozilla::camera::VideoFrameProperties const&)::$_2>(char const*, mozilla::MediaEngineRemoteVideoSource::DeliverFrame(unsigned char*, mozilla::camera::VideoFrameProperties const&)::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::StorageActivityService::SendActivity(mozilla::ipc::PrincipalInfo const&)::$_0>::RunnableFunction<mozilla::dom::StorageActivityService::SendActivity(mozilla::ipc::PrincipalInfo const&)::$_0>(char const*, mozilla::dom::StorageActivityService::SendActivity(mozilla::ipc::PrincipalInfo const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::StorageActivityService::SendActivity(nsTSubstring<char> const&)::$_1>::RunnableFunction<mozilla::dom::StorageActivityService::SendActivity(nsTSubstring<char> const&)::$_1>(char const*, mozilla::dom::StorageActivityService::SendActivity(nsTSubstring<char> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::StorageNotifierService::Broadcast(mozilla::dom::StorageEvent*, char16_t const*, bool, bool)::$_2>::RunnableFunction<mozilla::dom::StorageNotifierService::Broadcast(mozilla::dom::StorageEvent*, char16_t const*, bool, bool)::$_2>(char const*, mozilla::dom::StorageNotifierService::Broadcast(mozilla::dom::StorageEvent*, char16_t const*, bool, bool)::$_2&&)
Unexecuted instantiation: ContentChild.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ContentChild::Init(MessageLoop*, int, char const*, IPC::Channel*, unsigned long, bool)::$_2>::RunnableFunction<mozilla::dom::ContentChild::Init(MessageLoop*, int, char const*, IPC::Channel*, unsigned long, bool)::$_2>(char const*, mozilla::dom::ContentChild::Init(MessageLoop*, int, char const*, IPC::Channel*, unsigned long, bool)::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_ipc1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::TabParent::SetRenderLayers(bool)::$_7>::RunnableFunction<mozilla::dom::TabParent::SetRenderLayers(bool)::$_7>(char const*, mozilla::dom::TabParent::SetRenderLayers(bool)::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_audiochannel0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::AudioChannelService::AudioChannelWindow::NotifyMediaBlockStop(nsPIDOMWindowOuter*)::$_2>::RunnableFunction<mozilla::dom::AudioChannelService::AudioChannelWindow::NotifyMediaBlockStop(nsPIDOMWindowOuter*)::$_2>(char const*, mozilla::dom::AudioChannelService::AudioChannelWindow::NotifyMediaBlockStop(nsPIDOMWindowOuter*)::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_audiochannel0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::AudioChannelService::AudioChannelWindow::MaybeNotifyMediaBlockStart(mozilla::dom::AudioChannelAgent*)::$_3>::RunnableFunction<mozilla::dom::AudioChannelService::AudioChannelWindow::MaybeNotifyMediaBlockStart(mozilla::dom::AudioChannelAgent*)::$_3>(char const*, mozilla::dom::AudioChannelService::AudioChannelWindow::MaybeNotifyMediaBlockStart(mozilla::dom::AudioChannelAgent*)::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_url0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::URLMainThread::CreateObjectURL(mozilla::dom::GlobalObject const&, mozilla::dom::MediaSource&, nsTSubstring<char16_t>&, mozilla::ErrorResult&)::$_0>::RunnableFunction<mozilla::dom::URLMainThread::CreateObjectURL(mozilla::dom::GlobalObject const&, mozilla::dom::MediaSource&, nsTSubstring<char16_t>&, mozilla::ErrorResult&)::$_0>(char const*, mozilla::dom::URLMainThread::CreateObjectURL(mozilla::dom::GlobalObject const&, mozilla::dom::MediaSource&, nsTSubstring<char16_t>&, mozilla::ErrorResult&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_webauthn0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::U2FSoftTokenManager::GetOrCreateWrappingKey(std::__1::unique_ptr<PK11SlotInfoStr, mozilla::UniquePK11SlotInfoDeletePolicy> const&)::$_0>::RunnableFunction<mozilla::dom::U2FSoftTokenManager::GetOrCreateWrappingKey(std::__1::unique_ptr<PK11SlotInfoStr, mozilla::UniquePK11SlotInfoDeletePolicy> const&)::$_0>(char const*, mozilla::dom::U2FSoftTokenManager::GetOrCreateWrappingKey(std::__1::unique_ptr<PK11SlotInfoStr, mozilla::UniquePK11SlotInfoDeletePolicy> const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_webauthn0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::U2FSoftTokenManager::Sign(mozilla::dom::WebAuthnGetAssertionInfo const&)::$_1>::RunnableFunction<mozilla::dom::U2FSoftTokenManager::Sign(mozilla::dom::WebAuthnGetAssertionInfo const&)::$_1>(char const*, mozilla::dom::U2FSoftTokenManager::Sign(mozilla::dom::WebAuthnGetAssertionInfo const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PaymentRequestParent::RespondPayment(nsIPaymentActionResponse*)::$_0>::RunnableFunction<mozilla::dom::PaymentRequestParent::RespondPayment(nsIPaymentActionResponse*)::$_0>(char const*, mozilla::dom::PaymentRequestParent::RespondPayment(nsIPaymentActionResponse*)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PaymentRequestParent::ChangeShippingAddress(nsTSubstring<char16_t> const&, nsIPaymentAddress*)::$_1>::RunnableFunction<mozilla::dom::PaymentRequestParent::ChangeShippingAddress(nsTSubstring<char16_t> const&, nsIPaymentAddress*)::$_1>(char const*, mozilla::dom::PaymentRequestParent::ChangeShippingAddress(nsTSubstring<char16_t> const&, nsIPaymentAddress*)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PaymentRequestParent::ChangeShippingOption(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_2>::RunnableFunction<mozilla::dom::PaymentRequestParent::ChangeShippingOption(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_2>(char const*, mozilla::dom::PaymentRequestParent::ChangeShippingOption(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PaymentRequestParent::ChangePayerDetail(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_3>::RunnableFunction<mozilla::dom::PaymentRequestParent::ChangePayerDetail(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_3>(char const*, mozilla::dom::PaymentRequestParent::ChangePayerDetail(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::Register(mozilla::dom::ClientInfo const&, nsTString<char> const&, nsTString<char> const&, mozilla::dom::ServiceWorkerUpdateViaCache)::$_41>::RunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::Register(mozilla::dom::ClientInfo const&, nsTString<char> const&, nsTString<char> const&, mozilla::dom::ServiceWorkerUpdateViaCache)::$_41>(char const*, mozilla::dom::ServiceWorkerContainerProxy::Register(mozilla::dom::ClientInfo const&, nsTString<char> const&, nsTString<char> const&, mozilla::dom::ServiceWorkerUpdateViaCache)::$_41&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::GetRegistration(mozilla::dom::ClientInfo const&, nsTString<char> const&)::$_42>::RunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::GetRegistration(mozilla::dom::ClientInfo const&, nsTString<char> const&)::$_42>(char const*, mozilla::dom::ServiceWorkerContainerProxy::GetRegistration(mozilla::dom::ClientInfo const&, nsTString<char> const&)::$_42&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::GetRegistrations(mozilla::dom::ClientInfo const&)::$_43>::RunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::GetRegistrations(mozilla::dom::ClientInfo const&)::$_43>(char const*, mozilla::dom::ServiceWorkerContainerProxy::GetRegistrations(mozilla::dom::ClientInfo const&)::$_43&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::GetReady(mozilla::dom::ClientInfo const&)::$_44>::RunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::GetReady(mozilla::dom::ClientInfo const&)::$_44>(char const*, mozilla::dom::ServiceWorkerContainerProxy::GetReady(mozilla::dom::ClientInfo const&)::$_44&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerImpl::GetRegistration(std::__1::function<void (mozilla::dom::ServiceWorkerRegistrationDescriptor const&)>&&, std::__1::function<void (mozilla::ErrorResult&)>&&)::$_45>::RunnableFunction<mozilla::dom::ServiceWorkerImpl::GetRegistration(std::__1::function<void (mozilla::dom::ServiceWorkerRegistrationDescriptor const&)>&&, std::__1::function<void (mozilla::ErrorResult&)>&&)::$_45>(char const*, mozilla::dom::ServiceWorkerImpl::GetRegistration(std::__1::function<void (mozilla::dom::ServiceWorkerRegistrationDescriptor const&)>&&, std::__1::function<void (mozilla::ErrorResult&)>&&)::$_45&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerManager::DispatchFetchEvent(nsIInterceptedChannel*, mozilla::ErrorResult&)::$_9>::RunnableFunction<mozilla::dom::ServiceWorkerManager::DispatchFetchEvent(nsIInterceptedChannel*, mozilla::ErrorResult&)::$_9>(char const*, mozilla::dom::ServiceWorkerManager::DispatchFetchEvent(nsIInterceptedChannel*, mozilla::ErrorResult&)::$_9&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerManagerService::PropagateRegistration(unsigned long, mozilla::dom::ServiceWorkerRegistrationData&)::$_12>::RunnableFunction<mozilla::dom::ServiceWorkerManagerService::PropagateRegistration(unsigned long, mozilla::dom::ServiceWorkerRegistrationData&)::$_12>(char const*, mozilla::dom::ServiceWorkerManagerService::PropagateRegistration(unsigned long, mozilla::dom::ServiceWorkerRegistrationData&)::$_12&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerProxy::PostMessage(RefPtr<mozilla::dom::ServiceWorkerCloneData>&&, mozilla::dom::ClientInfo const&, mozilla::dom::ClientState const&)::$_14>::RunnableFunction<mozilla::dom::ServiceWorkerProxy::PostMessage(RefPtr<mozilla::dom::ServiceWorkerCloneData>&&, mozilla::dom::ClientInfo const&, mozilla::dom::ClientState const&)::$_14>(char const*, mozilla::dom::ServiceWorkerProxy::PostMessage(RefPtr<mozilla::dom::ServiceWorkerCloneData>&&, mozilla::dom::ClientInfo const&, mozilla::dom::ClientState const&)::$_14&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerRegistrationMainThread::UpdateState(mozilla::dom::ServiceWorkerRegistrationDescriptor const&)::$_20>::RunnableFunction<mozilla::dom::ServiceWorkerRegistrationMainThread::UpdateState(mozilla::dom::ServiceWorkerRegistrationDescriptor const&)::$_20>(char const*, mozilla::dom::ServiceWorkerRegistrationMainThread::UpdateState(mozilla::dom::ServiceWorkerRegistrationDescriptor const&)::$_20&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerRegistrationInfo::TransitionWaitingToActive()::$_0>::RunnableFunction<mozilla::dom::ServiceWorkerRegistrationInfo::TransitionWaitingToActive()::$_0>(char const*, mozilla::dom::ServiceWorkerRegistrationInfo::TransitionWaitingToActive()::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerRegistrationProxy::Unregister()::$_6>::RunnableFunction<mozilla::dom::ServiceWorkerRegistrationProxy::Unregister()::$_6>(char const*, mozilla::dom::ServiceWorkerRegistrationProxy::Unregister()::$_6&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerRegistrationProxy::Update()::$_7>::RunnableFunction<mozilla::dom::ServiceWorkerRegistrationProxy::Update()::$_7>(char const*, mozilla::dom::ServiceWorkerRegistrationProxy::Update()::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PresentationReconnectCallback::NotifySuccess(nsTSubstring<char16_t> const&)::$_0>::RunnableFunction<mozilla::dom::PresentationReconnectCallback::NotifySuccess(nsTSubstring<char16_t> const&)::$_0>(char const*, mozilla::dom::PresentationReconnectCallback::NotifySuccess(nsTSubstring<char16_t> const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PresentationConnection::AsyncCloseConnectionWithErrorMsg(nsTSubstring<char16_t> const&)::$_1>::RunnableFunction<mozilla::dom::PresentationConnection::AsyncCloseConnectionWithErrorMsg(nsTSubstring<char16_t> const&)::$_1>(char const*, mozilla::dom::PresentationConnection::AsyncCloseConnectionWithErrorMsg(nsTSubstring<char16_t> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PresentationReceiver::GetConnectionList(mozilla::ErrorResult&)::$_2>::RunnableFunction<mozilla::dom::PresentationReceiver::GetConnectionList(mozilla::ErrorResult&)::$_2>(char const*, mozilla::dom::PresentationReceiver::GetConnectionList(mozilla::ErrorResult&)::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PresentationService::UntrackSessionInfo(nsTSubstring<char16_t> const&, unsigned char)::$_3>::RunnableFunction<mozilla::dom::PresentationService::UntrackSessionInfo(nsTSubstring<char16_t> const&, unsigned char)::$_3>(char const*, mozilla::dom::PresentationService::UntrackSessionInfo(nsTSubstring<char16_t> const&, unsigned char)::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_presentation1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PresentationIPCService::UntrackSessionInfo(nsTSubstring<char16_t> const&, unsigned char)::$_0>::RunnableFunction<mozilla::dom::PresentationIPCService::UntrackSessionInfo(nsTSubstring<char16_t> const&, unsigned char)::$_0>(char const*, mozilla::dom::PresentationIPCService::UntrackSessionInfo(nsTSubstring<char16_t> const&, unsigned char)::$_0&&)
Unexecuted instantiation: nsBaseWidget.cpp:mozilla::detail::RunnableFunction<nsBaseWidget::AsyncEnableDragDrop(bool)::$_2>::RunnableFunction<nsBaseWidget::AsyncEnableDragDrop(bool)::$_2>(char const*, nsBaseWidget::AsyncEnableDragDrop(bool)::$_2&&)
Unexecuted instantiation: Unified_cpp_widget_headless0.cpp:mozilla::detail::RunnableFunction<mozilla::widget::HeadlessWidget::MakeFullScreen(bool, nsIScreen*)::$_0>::RunnableFunction<mozilla::widget::HeadlessWidget::MakeFullScreen(bool, nsIScreen*)::$_0>(char const*, mozilla::widget::HeadlessWidget::MakeFullScreen(bool, nsIScreen*)::$_0&&)
Unexecuted instantiation: Unified_cpp_layout_style2.cpp:mozilla::detail::RunnableFunction<Gecko_StyleSheet_FinishAsyncParse::$_0>::RunnableFunction<Gecko_StyleSheet_FinishAsyncParse::$_0>(char const*, Gecko_StyleSheet_FinishAsyncParse::$_0&&)
Unexecuted instantiation: Unified_cpp_layout_style2.cpp:mozilla::detail::RunnableFunction<Gecko_LoadStyleSheetAsync::$_1>::RunnableFunction<Gecko_LoadStyleSheetAsync::$_1>(char const*, Gecko_LoadStyleSheetAsync::$_1&&)
Unexecuted instantiation: Unified_cpp_docshell_shistory0.cpp:mozilla::detail::RunnableFunction<nsSHEntryShared::RemoveFromBFCacheAsync()::$_0>::RunnableFunction<nsSHEntryShared::RemoveFromBFCacheAsync()::$_0>(char const*, nsSHEntryShared::RemoveFromBFCacheAsync()::$_0&&)
Unexecuted instantiation: Unified_cpp_tools_profiler0.cpp:mozilla::detail::RunnableFunction<NotifyObservers(char const*, nsISupports*)::$_27>::RunnableFunction<NotifyObservers(char const*, nsISupports*)::$_27>(char const*, NotifyObservers(char const*, nsISupports*)::$_27&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<ActivePS::ActivePS(mozilla::BaseAutoLock<PSMutex&> const&, unsigned int, double, unsigned int, char const**, unsigned int)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_tools_profiler0.cpp:mozilla::detail::RunnableFunction<TriggerPollJSSamplingOnMainThread()::$_28>::RunnableFunction<TriggerPollJSSamplingOnMainThread()::$_28>(char const*, TriggerPollJSSamplingOnMainThread()::$_28&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<ActivePS::~ActivePS()::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<void mozilla::RunOnAllContentParents<mozilla::DataStorage::Put(nsTString<char> const&, nsTString<char> const&, mozilla::DataStorageType)::$_0>(mozilla::DataStorage::Put(nsTString<char> const&, nsTString<char> const&, mozilla::DataStorageType)::$_0)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<void mozilla::RunOnAllContentParents<mozilla::DataStorage::Remove(nsTString<char> const&, mozilla::DataStorageType)::$_1>(mozilla::DataStorage::Remove(nsTString<char> const&, mozilla::DataStorageType)::$_1)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<void mozilla::RunOnAllContentParents<mozilla::DataStorage::Clear()::$_2>(mozilla::DataStorage::Clear()::$_2)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<NSSKeyStore::Lock()::$_3>::RunnableFunction<NSSKeyStore::Lock()::$_3>(char const*, NSSKeyStore::Lock()::$_3&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<NSSKeyStore::Unlock()::$_4>::RunnableFunction<NSSKeyStore::Unlock()::$_4>(char const*, NSSKeyStore::Unlock()::$_4&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundUnlock(RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_5>::RunnableFunction<BackgroundUnlock(RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_5>(char const*, BackgroundUnlock(RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_5&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncUnlock(JSContext*, mozilla::dom::Promise**)::$_6>::RunnableFunction<OSKeyStore::AsyncUnlock(JSContext*, mozilla::dom::Promise**)::$_6>(char const*, OSKeyStore::AsyncUnlock(JSContext*, mozilla::dom::Promise**)::$_6&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundLock(RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_7>::RunnableFunction<BackgroundLock(RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_7>(char const*, BackgroundLock(RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_7&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncLock(JSContext*, mozilla::dom::Promise**)::$_8>::RunnableFunction<OSKeyStore::AsyncLock(JSContext*, mozilla::dom::Promise**)::$_8>(char const*, OSKeyStore::AsyncLock(JSContext*, mozilla::dom::Promise**)::$_8&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundGenerateSecret(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_9>::RunnableFunction<BackgroundGenerateSecret(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_9>(char const*, BackgroundGenerateSecret(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_9&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncGenerateSecret(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_10>::RunnableFunction<OSKeyStore::AsyncGenerateSecret(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_10>(char const*, OSKeyStore::AsyncGenerateSecret(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_10&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundSecretAvailable(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_11>::RunnableFunction<BackgroundSecretAvailable(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_11>(char const*, BackgroundSecretAvailable(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_11&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncSecretAvailable(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_12>::RunnableFunction<OSKeyStore::AsyncSecretAvailable(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_12>(char const*, OSKeyStore::AsyncSecretAvailable(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_12&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundRecoverSecret(nsTSubstring<char> const&, nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_13>::RunnableFunction<BackgroundRecoverSecret(nsTSubstring<char> const&, nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_13>(char const*, BackgroundRecoverSecret(nsTSubstring<char> const&, nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_13&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncRecoverSecret(nsTSubstring<char> const&, nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_14>::RunnableFunction<OSKeyStore::AsyncRecoverSecret(nsTSubstring<char> const&, nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_14>(char const*, OSKeyStore::AsyncRecoverSecret(nsTSubstring<char> const&, nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_14&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundDeleteSecret(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_15>::RunnableFunction<BackgroundDeleteSecret(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_15>(char const*, BackgroundDeleteSecret(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_15&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncDeleteSecret(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_16>::RunnableFunction<OSKeyStore::AsyncDeleteSecret(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_16>(char const*, OSKeyStore::AsyncDeleteSecret(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_16&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundEncryptBytes(nsTSubstring<char> const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_17>::RunnableFunction<BackgroundEncryptBytes(nsTSubstring<char> const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_17>(char const*, BackgroundEncryptBytes(nsTSubstring<char> const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_17&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncEncryptBytes(nsTSubstring<char> const&, unsigned int, unsigned char*, JSContext*, mozilla::dom::Promise**)::$_18>::RunnableFunction<OSKeyStore::AsyncEncryptBytes(nsTSubstring<char> const&, unsigned int, unsigned char*, JSContext*, mozilla::dom::Promise**)::$_18>(char const*, OSKeyStore::AsyncEncryptBytes(nsTSubstring<char> const&, unsigned int, unsigned char*, JSContext*, mozilla::dom::Promise**)::$_18&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundDecryptBytes(nsTSubstring<char> const&, nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_19>::RunnableFunction<BackgroundDecryptBytes(nsTSubstring<char> const&, nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_19>(char const*, BackgroundDecryptBytes(nsTSubstring<char> const&, nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_19&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncDecryptBytes(nsTSubstring<char> const&, nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_20>::RunnableFunction<OSKeyStore::AsyncDecryptBytes(nsTSubstring<char> const&, nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_20>(char const*, OSKeyStore::AsyncDecryptBytes(nsTSubstring<char> const&, nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_20&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl1.cpp:mozilla::detail::RunnableFunction<BackgroundSdrEncryptStrings(nsTArray<nsTString<char> > const&, RefPtr<mozilla::dom::Promise>&)::$_0>::RunnableFunction<BackgroundSdrEncryptStrings(nsTArray<nsTString<char> > const&, RefPtr<mozilla::dom::Promise>&)::$_0>(char const*, BackgroundSdrEncryptStrings(nsTArray<nsTString<char> > const&, RefPtr<mozilla::dom::Promise>&)::$_0&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl1.cpp:mozilla::detail::RunnableFunction<SecretDecoderRing::AsyncEncryptStrings(unsigned int, char16_t const**, JSContext*, mozilla::dom::Promise**)::$_1>::RunnableFunction<SecretDecoderRing::AsyncEncryptStrings(unsigned int, char16_t const**, JSContext*, mozilla::dom::Promise**)::$_1>(char const*, SecretDecoderRing::AsyncEncryptStrings(unsigned int, char16_t const**, JSContext*, mozilla::dom::Promise**)::$_1&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsCertOverrideService, &nsCertOverrideService::Init, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsSiteSecurityService, &nsSiteSecurityService::Init, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<CertBlocklist, &CertBlocklist::Init, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<OSKeyStore, (nsresult (OSKeyStore::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<EnsureNSSInitializedChromeOrContent()::$_2>::RunnableFunction<EnsureNSSInitializedChromeOrContent()::$_2>(char const*, EnsureNSSInitializedChromeOrContent()::$_2&&)
Unexecuted instantiation: Unified_cpp_ackgroundhangmonitor0.cpp:mozilla::detail::RunnableFunction<mozilla::nsHangDetails::Submit()::$_0>::RunnableFunction<mozilla::nsHangDetails::Submit()::$_0>(char const*, mozilla::nsHangDetails::Submit()::$_0&&)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::detail::RunnableFunction<mozilla::extensions::StreamFilterParent::RecvSuspend()::$_3::operator()() const::{lambda()#1}>::RunnableFunction<{lambda()#1}&>(char const*, {lambda()#1}&)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::detail::RunnableFunction<mozilla::extensions::StreamFilterParent::RecvResume()::$_4::operator()() const::{lambda()#1}>::RunnableFunction<{lambda()#1}&>(char const*, {lambda()#1}&)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::detail::RunnableFunction<mozilla::extensions::StreamFilterParent::FinishDisconnect()::$_6::operator()() const::{lambda()#2}>::RunnableFunction<{lambda()#2}&>(char const*, {lambda()#2}&)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::detail::RunnableFunction<mozilla::extensions::StreamFilterParent::OnStartRequest(nsIRequest*, nsISupports*)::$_7>::RunnableFunction<mozilla::extensions::StreamFilterParent::OnStartRequest(nsIRequest*, nsISupports*)::$_7&>(char const*, mozilla::extensions::StreamFilterParent::OnStartRequest(nsIRequest*, nsISupports*)::$_7&)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::detail::RunnableFunction<mozilla::extensions::StreamFilterParent::OnStartRequest(nsIRequest*, nsISupports*)::$_8>::RunnableFunction<mozilla::extensions::StreamFilterParent::OnStartRequest(nsIRequest*, nsISupports*)::$_8&>(char const*, mozilla::extensions::StreamFilterParent::OnStartRequest(nsIRequest*, nsISupports*)::$_8&)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::detail::RunnableFunction<mozilla::extensions::StreamFilterParent::OnStopRequest(nsIRequest*, nsISupports*, nsresult)::$_9>::RunnableFunction<mozilla::extensions::StreamFilterParent::OnStopRequest(nsIRequest*, nsISupports*, nsresult)::$_9&>(char const*, mozilla::extensions::StreamFilterParent::OnStopRequest(nsIRequest*, nsISupports*, nsresult)::$_9&)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::detail::RunnableFunction<mozilla::places::History::DispatchNotifyVisited(nsIURI*, nsIDocument*)::$_8>::RunnableFunction<mozilla::places::History::DispatchNotifyVisited(nsIURI*, nsIDocument*)::$_8>(char const*, mozilla::places::History::DispatchNotifyVisited(nsIURI*, nsIDocument*)::$_8&&)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::detail::RunnableFunction<nsNavHistory::RecalculateOriginFrecencyStats(nsIObserver*)::$_10>::RunnableFunction<nsNavHistory::RecalculateOriginFrecencyStats(nsIObserver*)::$_10>(char const*, nsNavHistory::RecalculateOriginFrecencyStats(nsIObserver*)::$_10&&)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::detail::RunnableFunction<nsNavHistory::RecalculateOriginFrecencyStats(nsIObserver*)::$_10::operator()() const::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: TelemetryIPCAccumulator.cpp:mozilla::detail::RunnableFunction<(anonymous namespace)::DispatchIPCTimerFired()::$_1>::RunnableFunction<(anonymous namespace)::DispatchIPCTimerFired()::$_1>(char const*, (anonymous namespace)::DispatchIPCTimerFired()::$_1&&)
Unexecuted instantiation: TelemetryIPCAccumulator.cpp:mozilla::detail::RunnableFunction<(anonymous namespace)::ArmIPCTimer(mozilla::BaseAutoLock<mozilla::AnyStaticMutex> const&)::$_0>::RunnableFunction<(anonymous namespace)::ArmIPCTimer(mozilla::BaseAutoLock<mozilla::AnyStaticMutex> const&)::$_0>(char const*, (anonymous namespace)::ArmIPCTimer(mozilla::BaseAutoLock<mozilla::AnyStaticMutex> const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<mozilla::safebrowsing::Classifier::Reset()::$_0>::RunnableFunction<mozilla::safebrowsing::Classifier::Reset()::$_0&>(char const*, mozilla::safebrowsing::Classifier::Reset()::$_0&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<mozilla::safebrowsing::Classifier::AsyncApplyUpdates(nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> > const&, std::__1::function<void (nsresult)> const&)::$_1>::RunnableFunction<mozilla::safebrowsing::Classifier::AsyncApplyUpdates(nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> > const&, std::__1::function<void (nsresult)> const&)::$_1>(char const*, mozilla::safebrowsing::Classifier::AsyncApplyUpdates(nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> > const&, std::__1::function<void (nsresult)> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<mozilla::safebrowsing::Classifier::AsyncApplyUpdates(nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> > const&, std::__1::function<void (nsresult)> const&)::$_1::operator()() const::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_3>::RunnableFunction<nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_3>(char const*, nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_3&&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_4>::RunnableFunction<nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_4>(char const*, nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_4&&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_4::operator()() const::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<nsUrlClassifierDBService::LookupURI(nsIPrincipal*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIUrlClassifierCallback*, bool, bool*)::$_5>::RunnableFunction<nsUrlClassifierDBService::LookupURI(nsIPrincipal*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIUrlClassifierCallback*, bool, bool*)::$_5>(char const*, nsUrlClassifierDBService::LookupURI(nsIPrincipal*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIUrlClassifierCallback*, bool, bool*)::$_5&&)
Unexecuted instantiation: Unified_cpp_toolkit_profile0.cpp:mozilla::detail::RunnableFunction<nsToolkitProfile::RemoveInternal(bool, bool)::$_0>::RunnableFunction<nsToolkitProfile::RemoveInternal(bool, bool)::$_0>(char const*, nsToolkitProfile::RemoveInternal(bool, bool)::$_0&&)
Unexecuted instantiation: Faulty.cpp:mozilla::detail::RunnableFunction<mozilla::ipc::Faulty::IsMessageNameBlacklisted(char const*)::$_0>::RunnableFunction<mozilla::ipc::Faulty::IsMessageNameBlacklisted(char const*)::$_0>(char const*, mozilla::ipc::Faulty::IsMessageNameBlacklisted(char const*)::$_0&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<testing::LengthInputStream::AsyncLengthWait(nsIInputStreamLengthCallback*, nsIEventTarget*)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest0.cpp:mozilla::detail::RunnableFunction<testing::AsyncStringStream::MaybeExecCallback(nsIInputStreamCallback*, nsIEventTarget*)::$_0>::RunnableFunction<testing::AsyncStringStream::MaybeExecCallback(nsIInputStreamCallback*, nsIEventTarget*)::$_0>(char const*, testing::AsyncStringStream::MaybeExecCallback(nsIInputStreamCallback*, nsIEventTarget*)::$_0&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_BasicResolve_Test::TestBody()::$_18>::RunnableFunction<MozPromise_BasicResolve_Test::TestBody()::$_18&>(char const*, MozPromise_BasicResolve_Test::TestBody()::$_18&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_BasicReject_Test::TestBody()::$_19>::RunnableFunction<MozPromise_BasicReject_Test::TestBody()::$_19&>(char const*, MozPromise_BasicReject_Test::TestBody()::$_19&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_BasicResolveOrRejectResolved_Test::TestBody()::$_20>::RunnableFunction<MozPromise_BasicResolveOrRejectResolved_Test::TestBody()::$_20&>(char const*, MozPromise_BasicResolveOrRejectResolved_Test::TestBody()::$_20&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_BasicResolveOrRejectRejected_Test::TestBody()::$_21>::RunnableFunction<MozPromise_BasicResolveOrRejectRejected_Test::TestBody()::$_21&>(char const*, MozPromise_BasicResolveOrRejectRejected_Test::TestBody()::$_21&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_AsyncResolve_Test::TestBody()::$_22>::RunnableFunction<MozPromise_AsyncResolve_Test::TestBody()::$_22&>(char const*, MozPromise_AsyncResolve_Test::TestBody()::$_22&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_CompletionPromises_Test::TestBody()::$_23>::RunnableFunction<MozPromise_CompletionPromises_Test::TestBody()::$_23&>(char const*, MozPromise_CompletionPromises_Test::TestBody()::$_23&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_PromiseAllResolve_Test::TestBody()::$_24>::RunnableFunction<MozPromise_PromiseAllResolve_Test::TestBody()::$_24&>(char const*, MozPromise_PromiseAllResolve_Test::TestBody()::$_24&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_PromiseAllReject_Test::TestBody()::$_25>::RunnableFunction<MozPromise_PromiseAllReject_Test::TestBody()::$_25&>(char const*, MozPromise_PromiseAllReject_Test::TestBody()::$_25&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_Chaining_Test::TestBody()::$_26>::RunnableFunction<MozPromise_Chaining_Test::TestBody()::$_26&>(char const*, MozPromise_Chaining_Test::TestBody()::$_26&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_HeterogeneousChaining_Test::TestBody()::$_30>::RunnableFunction<MozPromise_HeterogeneousChaining_Test::TestBody()::$_30&>(char const*, MozPromise_HeterogeneousChaining_Test::TestBody()::$_30&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest2.cpp:mozilla::detail::RunnableFunction<TestStateWatching::WatchManager_Shutdown_Test::TestBody()::$_3>::RunnableFunction<TestStateWatching::WatchManager_Shutdown_Test::TestBody()::$_3>(char const*, TestStateWatching::WatchManager_Shutdown_Test::TestBody()::$_3&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<TestCopyWithNoMove>::RunnableFunction<TestCopyWithNoMove&>(char const*, TestCopyWithNoMove&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<TestCopyWithNoMove>::RunnableFunction<TestCopyWithNoMove>(char const*, TestCopyWithNoMove&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<TestCopyWithDeletedMove>::RunnableFunction<TestCopyWithDeletedMove&>(char const*, TestCopyWithDeletedMove&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<TestMove>::RunnableFunction<TestMove>(char const*, TestMove&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<TestCopyMove>::RunnableFunction<TestCopyMove>(char const*, TestCopyMove&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestNewRunnableFunction(bool)::$_19>::RunnableFunction<TestNewRunnableFunction(bool)::$_19>(char const*, TestNewRunnableFunction(bool)::$_19&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestNewRunnableFunction(bool)::$_20>::RunnableFunction<TestNewRunnableFunction(bool)::$_20>(char const*, TestNewRunnableFunction(bool)::$_20&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestNewRunnableFunction(bool)::$_21>::RunnableFunction<TestNewRunnableFunction(bool)::$_21>(char const*, TestNewRunnableFunction(bool)::$_21&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestNewRunnableFunction(bool)::$_22>::RunnableFunction<TestNewRunnableFunction(bool)::$_22>(char const*, TestNewRunnableFunction(bool)::$_22&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestNewRunnableFunction(bool)::$_23>::RunnableFunction<TestNewRunnableFunction(bool)::$_23>(char const*, TestNewRunnableFunction(bool)::$_23&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestNewRunnableFunction(bool)::$_24>::RunnableFunction<TestNewRunnableFunction(bool)::$_24>(char const*, TestNewRunnableFunction(bool)::$_24&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0>::RunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0>(char const*, TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#2}>::RunnableFunction<{lambda()#2}>(char const*, {lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#3}>::RunnableFunction<{lambda()#3}>(char const*, {lambda()#3}&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#3}::operator()() const::{lambda()#1}>::RunnableFunction<{lambda()#3}>(char const*, {lambda()#3}&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<ThreadUtils_NewNamedRunnableFunction_Test::TestBody()::$_1>::RunnableFunction<ThreadUtils_NewNamedRunnableFunction_Test::TestBody()::$_1>(char const*, ThreadUtils_NewNamedRunnableFunction_Test::TestBody()::$_1&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#2}>::RunnableFunction<{lambda()#2}>(char const*, {lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#2}>::RunnableFunction<{lambda()#2}>(char const*, {lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#2}>::RunnableFunction<{lambda()#2}>(char const*, {lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#2}>::RunnableFunction<{lambda()#2}>(char const*, {lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperST>(int, int, int, char const*)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperST>(int, int, int, char const*)::{lambda()#2}>::RunnableFunction<{lambda()#2}>(char const*, {lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperAW>(int, int, int, char const*)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperAW>(int, int, int, char const*)::{lambda()#2}>::RunnableFunction<{lambda()#2}>(char const*, {lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperMW>(int, int, int, char const*)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperMW>(int, int, int, char const*)::{lambda()#2}>::RunnableFunction<{lambda()#2}>(char const*, {lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperMT>(int, int, int, char const*)::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperMT>(int, int, int, char const*)::{lambda()#2}>::RunnableFunction<{lambda()#2}>(char const*, {lambda()#2}&&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<MP4DemuxerBinding::CheckTrackSamples(mozilla::MediaTrackDemuxer*)::{lambda()#1}>::RunnableFunction<{lambda()#1}&>(char const*, {lambda()#1}&)
Unexecuted instantiation: mozilla::detail::RunnableFunction<MP4DemuxerBinding::CheckTrackKeyFrame(mozilla::MediaTrackDemuxer*)::{lambda()#1}>::RunnableFunction<{lambda()#1}&>(char const*, {lambda()#1}&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_0>::RunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_0>(char const*, GeckoProfiler_DifferentThreads_Test::TestBody()::$_0&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_1>::RunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_1>(char const*, GeckoProfiler_DifferentThreads_Test::TestBody()::$_1&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_2>::RunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_2>(char const*, GeckoProfiler_DifferentThreads_Test::TestBody()::$_2&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_3>::RunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_3>(char const*, GeckoProfiler_DifferentThreads_Test::TestBody()::$_3&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<GeckoProfiler_StreamJSONForThisProcessThreaded_Test::TestBody()::$_4>::RunnableFunction<GeckoProfiler_StreamJSONForThisProcessThreaded_Test::TestBody()::$_4>(char const*, GeckoProfiler_StreamJSONForThisProcessThreaded_Test::TestBody()::$_4&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<GeckoProfiler_StreamJSONForThisProcessThreaded_Test::TestBody()::$_5>::RunnableFunction<GeckoProfiler_StreamJSONForThisProcessThreaded_Test::TestBody()::$_5>(char const*, GeckoProfiler_StreamJSONForThisProcessThreaded_Test::TestBody()::$_5&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<DoSuspendAndSample(int, nsIThread*)::$_6>::RunnableFunction<DoSuspendAndSample(int, nsIThread*)::$_6>(char const*, DoSuspendAndSample(int, nsIThread*)::$_6&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<TelemetryTestFixture_NonMainThreadAdd_Test::TestBody()::$_0>::RunnableFunction<TelemetryTestFixture_NonMainThreadAdd_Test::TestBody()::$_0>(char const*, TelemetryTestFixture_NonMainThreadAdd_Test::TestBody()::$_0&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<testOpenLookupCache()::$_7>::RunnableFunction<testOpenLookupCache()::$_7>(char const*, testOpenLookupCache()::$_7&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<SyncApplyUpdates(RefPtr<mozilla::safebrowsing::Classifier>, nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> >&)::$_0>::RunnableFunction<SyncApplyUpdates(RefPtr<mozilla::safebrowsing::Classifier>, nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> >&)::$_0>(char const*, SyncApplyUpdates(RefPtr<mozilla::safebrowsing::Classifier>, nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> >&)::$_0&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<SyncApplyUpdates(RefPtr<mozilla::safebrowsing::Classifier>, nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> >&)::$_6::operator()(nsresult) const::{lambda()#1}>::RunnableFunction<{lambda()#1}>(char const*, {lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<TestHasPrefix(nsTString<char> const&, bool, bool)::$_3>::RunnableFunction<TestHasPrefix(nsTString<char> const&, bool, bool)::$_3>(char const*, TestHasPrefix(nsTString<char> const&, bool, bool)::$_3&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<UrlClassifierPerProviderDirectory_LookupCache_Test::TestBody()::$_4>::RunnableFunction<UrlClassifierPerProviderDirectory_LookupCache_Test::TestBody()::$_4>(char const*, UrlClassifierPerProviderDirectory_LookupCache_Test::TestBody()::$_4&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<UrlClassifierPerProviderDirectory_HashStore_Test::TestBody()::$_5>::RunnableFunction<UrlClassifierPerProviderDirectory_HashStore_Test::TestBody()::$_5>(char const*, UrlClassifierPerProviderDirectory_HashStore_Test::TestBody()::$_5&&)
560
561
0
  NS_IMETHOD Run() override {
562
0
    static_assert(IsVoid<decltype(mFunction())>::value,
563
0
                  "The lambda must return void!");
564
0
    mFunction();
565
0
    return NS_OK;
566
0
  }
Unexecuted instantiation: SandboxReporter.cpp:mozilla::detail::RunnableFunction<mozilla::SandboxReporter::Singleton()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_base2.cpp:mozilla::detail::RunnableFunction<nsMemoryReporterManager::DispatchReporter(nsIMemoryReporter*, bool, nsIHandleReportCallback*, nsISupports*, bool)::$_0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<nsMultiplexInputStream::AsyncWaitLengthHelper::Proceed(nsMultiplexInputStream*, nsIEventTarget*, mozilla::BaseAutoLock<mozilla::Mutex&> const&)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:mozilla::detail::RunnableFunction<mozilla::AbstractThread::CreateXPCOMThreadWrapper(nsIThread*, bool)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:mozilla::detail::RunnableFunction<mozilla::SchedulerImpl::Start()::$_1>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:mozilla::detail::RunnableFunction<mozilla::SchedulerImpl::Shutdown()::$_2>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::PreferencesWriter::Flush()::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::PWRunnable::Run()::{lambda()#1}>::Run()
Unexecuted instantiation: nsCookieService.cpp:mozilla::detail::RunnableFunction<nsCookieService::InitDBStates()::$_0>::Run()
Unexecuted instantiation: nsCookieService.cpp:mozilla::detail::RunnableFunction<nsCookieService::InitDBStates()::$_0::operator()() const::{lambda()#1}>::Run()
Unexecuted instantiation: nsCookieService.cpp:mozilla::detail::RunnableFunction<nsCookieService::TryInitDB(bool)::$_2>::Run()
Unexecuted instantiation: nsCookieService.cpp:mozilla::detail::RunnableFunction<nsCookieService::RebuildCorruptDB(DBState*)::$_3>::Run()
Unexecuted instantiation: nsCookieService.cpp:mozilla::detail::RunnableFunction<nsCookieService::RebuildCorruptDB(DBState*)::$_3::operator()() const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_netwerk_dns0.cpp:mozilla::detail::RunnableFunction<mozilla::net::TRRService::IsTRRBlacklisted(nsTSubstring<char> const&, bool, bool)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_netwerk_cache20.cpp:mozilla::detail::RunnableFunction<mozilla::net::CacheIndex::AsyncGetDiskConsumption(nsICacheStorageConsumptionObserver*)::$_2>::Run()
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpBackgroundChannelChild::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpBackgroundChannelParent::OnChannelClosed()::$_1>::Run()
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpBackgroundChannelParent::OnNotifyTrackingCookieBlocked(unsigned int)::$_2>::Run()
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpBackgroundChannelParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_3>::Run()
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpChannelChild::OnTransportAndData(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)::$_5>::Run()
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpChannelChild::OnTransportAndData(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)::$_6>::Run()
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpChannelChild::ProcessNotifyTrackingProtectionDisabled()::$_7>::Run()
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::detail::RunnableFunction<mozilla::net::HttpChannelChild::ProcessNotifyTrackingCookieBlocked(unsigned int)::$_8>::Run()
Unexecuted instantiation: Unified_cpp_protocol_http1.cpp:mozilla::detail::RunnableFunction<mozilla::net::nsHttpChannel::ResumeInternal()::$_19>::Run()
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:mozilla::detail::RunnableFunction<mozilla::ipc::CrashReporterHost::NotifyCrashService(GeckoProcessType, int, nsTString<char16_t> const&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_js_xpconnect_src0.cpp:mozilla::detail::RunnableFunction<XPCJSRuntime::DoCycleCollectionCallback(JSContext*)::$_4>::Run()
Unexecuted instantiation: Unified_cpp_modules_libjar0.cpp:mozilla::detail::RunnableFunction<nsJARChannel::OpenLocalFile()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::SetRemoteSSRCLocked(unsigned int)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::PollStats()::$_1>::Run()
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::PollStats()::$_2>::Run()
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::PollStats()::$_3>::Run()
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::UpdateVideoStatsTimer()::$_4>::Run()
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::AddOrUpdateSink(rtc::VideoSinkInterface<webrtc::VideoFrame>*, rtc::VideoSinkWants const&)::$_6>::Run()
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::SendVideoFrame(webrtc::VideoFrame const&)::$_7>::Run()
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::ReceivedRTPPacket(void const*, int, unsigned int)::$_8>::Run()
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::detail::RunnableFunction<mozilla::WebrtcVideoConduit::ReceivedRTPPacket(void const*, int, unsigned int)::$_8::operator()()::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::AudioProxyThread::QueueAudioChunk(int, mozilla::AudioChunk const&, bool)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_uriloader_exthandler0.cpp:mozilla::detail::RunnableFunction<nsExtProtocolChannel::OpenURL()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::detail::RunnableFunction<mozilla::layers::PaintThread::QueuePaintTask(mozilla::UniquePtr<mozilla::layers::PaintTask, mozilla::DefaultDelete<mozilla::layers::PaintTask> >&&)::$_7>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::detail::RunnableFunction<mozilla::layers::PaintThread::QueueEndLayerTransaction(mozilla::layers::SyncObjectClient*)::$_8>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::detail::RunnableFunction<mozilla::layers::ProfilerScreenshots::SubmitScreenshot(unsigned long, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::TimeStamp const&, std::__1::function<bool (mozilla::gfx::DataSourceSurface*)> const&)::$_9>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::detail::RunnableFunction<mozilla::layers::WebRenderLayerManager::DoDestroy(bool)::$_3>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZCTreeManager::APZCTreeManager(mozilla::layers::LayersId)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZCTreeManager::ClearTree()::$_7>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZSampler::SetWebRenderWindowId(mozilla::wr::WrWindowId const&)::$_20>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::SetWebRenderWindowId(mozilla::wr::WrWindowId const&)::$_22>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::ClearTree(mozilla::layers::LayersId)::$_23>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::UpdateScrollDataAndTreeState(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::wr::Epoch const&, mozilla::layers::WebRenderScrollData&&)::$_24>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::UpdateScrollDataAndTreeState(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::wr::Epoch const&, mozilla::layers::WebRenderScrollData&&)::$_25>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::UpdateScrollOffsets(mozilla::layers::LayersId, mozilla::layers::LayersId, std::__1::map<unsigned long, mozilla::layers::ScrollUpdateInfo, std::__1::less<unsigned long>, std::__1::allocator<std::__1::pair<unsigned long const, mozilla::layers::ScrollUpdateInfo> > >&&, unsigned int)::$_26>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::NotifyLayerTreeRemoved(mozilla::layers::LayersId)::$_27>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::GetAPZTestData(mozilla::layers::LayersId, mozilla::layers::APZTestData*)::$_28>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::SetTestAsyncScrollOffset(mozilla::layers::LayersId, unsigned long const&, mozilla::gfx::PointTyped<mozilla::CSSPixel, float> const&)::$_29>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::detail::RunnableFunction<mozilla::layers::APZUpdater::SetTestAsyncZoom(mozilla::layers::LayersId, unsigned long const&, mozilla::gfx::ScaleFactor<mozilla::LayerPixel, mozilla::ParentLayerPixel> const&)::$_30>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::detail::RunnableFunction<mozilla::layers::CheckerboardEventStorage::Report(unsigned int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::detail::RunnableFunction<mozilla::layers::BasicCompositor::TryToEndRemoteDrawing(bool)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::detail::RunnableFunction<mozilla::layers::DestroyTextureData(mozilla::layers::TextureData*, mozilla::layers::LayersIPCChannel*, bool, bool)::$_2>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::detail::RunnableFunction<mozilla::layers::ClientLayerManager::Destroy()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::detail::RunnableFunction<mozilla::layers::CompositableClient::GetTextureClientRecycler()::$_1>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::detail::RunnableFunction<mozilla::layers::CompositorBridgeParent::FlushApzRepaints(mozilla::layers::LayersId const&)::$_3>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::detail::RunnableFunction<mozilla::layers::CompositorManagerParent::Shutdown()::$_7>::Run()
Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::detail::RunnableFunction<mozilla::layers::ImageBridgeParent::Shutdown()::$_11>::Run()
Unexecuted instantiation: gfxPlatform.cpp:mozilla::detail::RunnableFunction<gfxPlatform::NotifyCompositorCreated(mozilla::layers::LayersBackend)::$_2>::Run()
Unexecuted instantiation: GPUParent.cpp:mozilla::detail::RunnableFunction<mozilla::gfx::GPUParent::NotifyDeviceReset()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_gfx_vr0.cpp:mozilla::detail::RunnableFunction<mozilla::gfx::VRManager::Shutdown()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_gfx_vr0.cpp:mozilla::detail::RunnableFunction<mozilla::gfx::VRManager::RefreshVRDisplays(bool)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_gfx_config0.cpp:mozilla::detail::RunnableFunction<mozilla::gfx::gfxConfig::EnableFallback(mozilla::gfx::Fallback, char const*)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_image2.cpp:mozilla::detail::RunnableFunction<imgRequestProxy::RemoveFromLoadGroup()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_image2.cpp:mozilla::detail::RunnableFunction<imgRequestProxy::MoveToBackgroundInLoadGroup()::$_1>::Run()
Unexecuted instantiation: Unified_cpp_image2.cpp:mozilla::detail::RunnableFunction<imgRequestProxy::Notify(int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const*)::$_2>::Run()
Unexecuted instantiation: Unified_cpp_image2.cpp:mozilla::detail::RunnableFunction<imgRequestProxy::Notify(int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const*)::$_3>::Run()
Unexecuted instantiation: Unified_cpp_image2.cpp:mozilla::detail::RunnableFunction<imgRequestProxy::OnLoadComplete(bool)::$_4>::Run()
Unexecuted instantiation: nsContentUtils.cpp:mozilla::detail::RunnableFunction<nsContentUtils::AsyncPrecreateStringBundles()::$_3>::Run()
Unexecuted instantiation: nsContentUtils.cpp:mozilla::detail::RunnableFunction<nsContentUtils::UserInteractionObserver::Init()::$_4>::Run()
Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ImageEncoder::EnsureThreadPool()::$_3>::Run()
Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::detail::RunnableFunction<nsFocusManager::RaiseWindow(nsPIDOMWindowOuter*)::$_7>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::dom::ImageBitmapShutdownObserver::RegisterObserver()::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::dom::ImageBitmapShutdownObserver::UnregisterObserver()::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_canvas0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::CreateImageBitmapFromBlob::StartDecodeAndCropBlob()::$_1>::Run()
Unexecuted instantiation: Unified_cpp_dom_clients_api0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::Clients::Get(nsTSubstring<char16_t> const&, mozilla::ErrorResult&)::$_4::operator()(mozilla::dom::ClientOpResult const&) const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_clients_api0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::Clients::MatchAll(mozilla::dom::ClientQueryOptions const&, mozilla::ErrorResult&)::$_6::operator()(mozilla::dom::ClientOpResult const&) const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_clients_manager0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::(anonymous namespace)::OnShutdown()::$_18>::Run()
Unexecuted instantiation: Unified_cpp_dom_clients_manager0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::(anonymous namespace)::ClaimOnMainThread(mozilla::dom::ClientInfo const&, mozilla::dom::ServiceWorkerDescriptor const&)::$_19>::Run()
Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ClientSource::Claim(mozilla::dom::ClientClaimArgs const&)::$_7>::Run()
Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ClientSourceParent::RecvInheritController(mozilla::dom::ClientControlledArgs const&)::$_10>::Run()
Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ClientSourceParent::RecvNoteDOMContentLoaded()::$_11>::Run()
Unexecuted instantiation: Unified_cpp_dom_events0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::Clipboard::ReadHelper(JSContext*, nsIPrincipal&, mozilla::dom::ClipboardReadType, mozilla::ErrorResult&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_events0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::Clipboard::Write(JSContext*, mozilla::dom::DataTransfer&, nsIPrincipal&, mozilla::ErrorResult&)::$_1>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::dom::FetchBodyConsumer<mozilla::dom::Request>::ShutDownMainThreadConsuming()::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::dom::FetchBodyConsumer<mozilla::dom::Response>::ShutDownMainThreadConsuming()::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_fetch0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::FetchStream::ReleaseObjects(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_dom_fetch0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::FetchStreamReader::ReportErrorToConsole(JSContext*, JS::Handle<JS::Value>)::$_3>::Run()
Unexecuted instantiation: Unified_cpp_dom_file0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::MutableBlobStorage::MaybeCreateTemporaryFile(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_dom_file1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::(anonymous namespace)::TemporaryFileInputStream::~TemporaryFileInputStream()::{lambda()#1}>::Run()
Unexecuted instantiation: AutoplayPermissionManager.cpp:mozilla::detail::RunnableFunction<mozilla::AutoplayPermissionManager::RequestWithPrompt()::$_0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::dom::HTMLMediaElement::AudioChannelAgentCallback::MaybeNotifyMediaResumed(unsigned int)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::HTMLMediaElement::UnbindFromTree(bool, bool)::$_7>::Run()
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::HTMLMediaElement::AsyncResolveSeekDOMPromiseIfExists()::$_14>::Run()
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::HTMLMediaElement::AsyncRejectSeekDOMPromiseIfExists()::$_15>::Run()
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::HTMLMediaElement::ReportCanPlayTelemetry()::$_16>::Run()
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::HTMLMediaElement::ReportCanPlayTelemetry()::$_16::operator()() const::{lambda()#3}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<void (*)()>::Run()
Unexecuted instantiation: Unified_cpp_dom_media10.cpp:mozilla::detail::RunnableFunction<mozilla::VideoFrameContainer::SetCurrentFramesLocked(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, nsTArray<mozilla::layers::ImageContainer::NonOwningImage> const&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_media10.cpp:mozilla::detail::RunnableFunction<mozilla::VideoFrameContainer::SetCurrentFramesLocked(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, nsTArray<mozilla::layers::ImageContainer::NonOwningImage> const&)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_dom_media11.cpp:mozilla::detail::RunnableFunction<mozilla::LogToBrowserConsole(nsTSubstring<char16_t> const&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:mozilla::detail::RunnableFunction<mozilla::Benchmark::Run()::$_2::operator()() const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:mozilla::detail::RunnableFunction<mozilla::BenchmarkPlayback::DemuxNextSample()::$_5::operator()(RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>) const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:mozilla::detail::RunnableFunction<mozilla::BenchmarkPlayback::Output(nsTArray<RefPtr<mozilla::MediaData> > const&)::$_13>::Run()
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:mozilla::detail::RunnableFunction<mozilla::BenchmarkPlayback::Error(mozilla::MediaResult const&)::$_14>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::MediaDecoderStateMachine::DispatchIsLiveStream(bool)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:mozilla::detail::RunnableFunction<mozilla::ChannelMediaDecoder::NotifyDownloadEnded(nsresult)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:mozilla::detail::RunnableFunction<mozilla::ChannelMediaDecoder::DurationChanged()::$_1>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::MediaDecoderStateMachine::DispatchCanPlayThrough(bool)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:mozilla::detail::RunnableFunction<mozilla::ChannelMediaResource::CopySegmentToCache(nsIInputStream*, void*, char const*, unsigned int, unsigned int, unsigned int*)::$_5>::Run()
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:mozilla::detail::RunnableFunction<mozilla::ChannelMediaResource::CacheClientNotifyDataEnded(nsresult)::$_6>::Run()
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:mozilla::detail::RunnableFunction<mozilla::ChannelMediaResource::CacheClientSeek(long, bool)::$_7>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::MediaDecoderStateMachine::DispatchSetFragmentEndTime(mozilla::media::TimeUnit const&)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:mozilla::detail::RunnableFunction<GetSourceSurface(mozilla::layers::Image*)::$_5>::Run()
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:mozilla::detail::RunnableFunction<mozilla::FileBlockCache::Init()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:mozilla::detail::RunnableFunction<mozilla::FileBlockCache::Flush()::$_2>::Run()
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:mozilla::detail::RunnableFunction<mozilla::FileBlockCache::Close()::$_3>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::DormantState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::DormantState>()::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCache::Flush()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCache::CloseStreamsForPrivateBrowsing()::$_1>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::NotifyLoadID(unsigned int)::$_2>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::NotifyDataStarted(unsigned int, long, bool, long)::$_3>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::NotifyDataEnded(unsigned int, nsresult)::$_4>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::NotifyClientSuspended(bool)::$_5>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::NotifyResume()::$_6>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::Close()::$_7>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::SetReadMode(mozilla::MediaCacheStream::ReadMode)::$_8>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::ThrottleReadahead(bool)::$_9>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::Init(long)::$_10>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaCacheStream::InitAsClone(mozilla::MediaCacheStream*)::$_11>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaDecoder::Shutdown()::$_12>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::DecodingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::DecodingState>()::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::NextFrameSeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::NextFrameSeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&&)::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::NextFrameSeekingFromDormantState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::NextFrameSeekingFromDormantState, mozilla::SeekJob, mozilla::SeekJob>(mozilla::SeekJob&&, mozilla::SeekJob&&)::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::ShutdownState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::ShutdownState>()::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::VideoOnlySeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::VideoOnlySeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::AccurateSeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::AccurateSeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::NextFrameSeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::NextFrameSeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::DecodingFirstFrameState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::DecodingFirstFrameState>()::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::CompletedState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::CompletedState>()::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::BufferingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::BufferingState>()::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::detail::RunnableFunction<mozilla::MediaDecoderStateMachine::RequestDebugInfo()::$_36>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::MediaFormatReader::DemuxerProxy::Wrapper::Reset()::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::MediaFormatReader::DemuxerProxy::Wrapper::~Wrapper()::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::GetUserMediaTask::Run()::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:mozilla::detail::RunnableFunction<RefPtr<mozilla::MozPromise<bool, RefPtr<mozilla::MediaMgrError>, true> > mozilla::MediaManager::PostTask<mozilla::MozPromise<bool, RefPtr<mozilla::MediaMgrError>, true>, mozilla::SourceListener::InitializeAsync()::$_40>(char const*, mozilla::SourceListener::InitializeAsync()::$_40&&)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:mozilla::detail::RunnableFunction<RefPtr<mozilla::MozPromise<nsresult, bool, true> > mozilla::MediaManager::PostTask<mozilla::MozPromise<nsresult, bool, true>, mozilla::SourceListener::SetEnabledFor(int, bool)::$_45::operator()()::{lambda(mozilla::MozPromiseHolder<mozilla::MozPromise<nsresult, bool, true> >&)#1}>(char const*, mozilla::SourceListener::SetEnabledFor(int, bool)::$_45::operator()()::{lambda(mozilla::MozPromiseHolder<mozilla::MozPromise<nsresult, bool, true> >&)#1}&&)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:mozilla::detail::RunnableFunction<RefPtr<mozilla::MozPromise<bool, mozilla::Maybe<nsTString<char16_t> >, true> > mozilla::MediaManager::PostTask<mozilla::MozPromise<bool, mozilla::Maybe<nsTString<char16_t> >, true>, mozilla::SourceListener::ApplyConstraintsToTrack(nsPIDOMWindowInner*, int, mozilla::dom::MediaTrackConstraints const&, mozilla::dom::CallerType)::$_49>(char const*, mozilla::SourceListener::ApplyConstraintsToTrack(nsPIDOMWindowInner*, int, mozilla::dom::MediaTrackConstraints const&, mozilla::dom::CallerType)::$_49&&)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:mozilla::detail::RunnableFunction<mozilla::GetUserMediaWindowListener::NotifyChrome()::$_50>::Run()
Unexecuted instantiation: Unified_cpp_dom_media9.cpp:mozilla::detail::RunnableFunction<mozilla::ReaderProxy::SetCanonicalDuration(mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*)::$_7>::Run()
Unexecuted instantiation: Unified_cpp_dom_media9.cpp:mozilla::detail::RunnableFunction<mozilla::dom::TextTrack::DispatchAsyncTrustedEvent(nsTString<char16_t> const&)::$_8>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_doctor0.cpp:mozilla::detail::RunnableFunction<mozilla::DDMediaLogs::DispatchProcessLog(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_8>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_doctor0.cpp:mozilla::detail::RunnableFunction<mozilla::DecoderDoctorLogger::EnsureLogIsEnabled()::$_9>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_gmp0.cpp:mozilla::detail::RunnableFunction<mozilla::ChromiumCDMProxy::Init(unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_7>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_gmp0.cpp:mozilla::detail::RunnableFunction<mozilla::ChromiumCDMProxy::Shutdown()::$_8>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:mozilla::detail::RunnableFunction<mozilla::gmp::GMPServiceParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_20>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:mozilla::detail::RunnableFunction<mozilla::gmp::GMPServiceParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_20::operator()() const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:mozilla::detail::RunnableFunction<mozilla::gmp::GMPVideoDecoderParent::Reset()::$_21>::Run()
Unexecuted instantiation: RemoteVideoDecoder.cpp:mozilla::detail::RunnableFunction<mozilla::dom::RemoteVideoDecoder::~RemoteVideoDecoder()::$_0>::Run()
Unexecuted instantiation: RemoteVideoDecoder.cpp:mozilla::detail::RunnableFunction<mozilla::dom::RemoteVideoDecoder::SetSeekThreshold(mozilla::media::TimeUnit const&)::$_8>::Run()
Unexecuted instantiation: RemoteVideoDecoder.cpp:mozilla::detail::RunnableFunction<mozilla::dom::RemoteDecoderModule::CreateVideoDecoder(mozilla::CreateDecoderParams const&)::$_9>::Run()
Unexecuted instantiation: VideoDecoderChild.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderChild::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_0>::Run()
Unexecuted instantiation: VideoDecoderManagerChild.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerChild::Shutdown()::$_0>::Run()
Unexecuted instantiation: VideoDecoderManagerChild.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerChild::DeallocShmem(mozilla::ipc::Shmem&)::$_1>::Run()
Unexecuted instantiation: VideoDecoderManagerChild.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerChild::Readback(mozilla::layers::SurfaceDescriptorGPUVideo const&)::$_2>::Run()
Unexecuted instantiation: VideoDecoderManagerChild.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerChild::DeallocateSurfaceDescriptorGPUVideo(mozilla::layers::SurfaceDescriptorGPUVideo const&)::$_3>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerThreadHolder::~VideoDecoderManagerThreadHolder()::{lambda()#1}>::Run()
Unexecuted instantiation: VideoDecoderManagerParent.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerParent::StartupThreads()::$_0>::Run()
Unexecuted instantiation: VideoDecoderManagerParent.cpp:mozilla::detail::RunnableFunction<mozilla::dom::VideoDecoderManagerParent::ShutdownVideoBridge()::$_1>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<mozilla::DecodedStreamGraphListener::Forget()::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_mediasink0.cpp:mozilla::detail::RunnableFunction<mozilla::DecodedStream::DestroyData(mozilla::UniquePtr<mozilla::DecodedStreamData, mozilla::DefaultDelete<mozilla::DecodedStreamData> >)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaSourceDemuxer::AddSizeOfResources(mozilla::MediaDecoder::ResourceSizes*)::$_10>::Run()
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaSourceDemuxer::NotifyInitDataArrived()::$_11>::Run()
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaSourceTrackDemuxer::Reset()::$_13>::Run()
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaSourceTrackDemuxer::BreakCycles()::$_14>::Run()
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::detail::RunnableFunction<mozilla::TrackBuffersManager::OnDemuxerResetDone(mozilla::MediaResult const&)::$_28>::Run()
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::detail::RunnableFunction<mozilla::TrackBuffersManager::OnDemuxerInitDone(mozilla::MediaResult const&)::$_29>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_ogg0.cpp:mozilla::detail::RunnableFunction<mozilla::OggDemuxer::~OggDemuxer()::$_6>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_platforms0.cpp:mozilla::detail::RunnableFunction<mozilla::GlobalAllocPolicy::GlobalAllocPolicy()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_platforms0.cpp:mozilla::detail::RunnableFunction<mozilla::PDMFactory::EnsureInit() const::$_4>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_platforms0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaDataDecoderProxy::SetSeekThreshold(mozilla::media::TimeUnit const&)::$_36>::Run()
Unexecuted instantiation: Unified_cpp_media_platforms_omx0.cpp:mozilla::detail::RunnableFunction<mozilla::OmxDataDecoder::EmptyBufferDone(mozilla::OmxPromiseLayer::BufferData*)::$_15>::Run()
Unexecuted instantiation: Unified_cpp_systemservices0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaSystemResourceManager::Init()::$_15>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_webaudio0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::AudioContext::DispatchBlockedEvent()::$_3>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_webaudio1.cpp:mozilla::detail::RunnableFunction<mozilla::MediaDecodeTask::OnMetadataRead(mozilla::MetadataHolder&&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_webaudio2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::WebAudioUtils::LogToDeveloperConsole(unsigned long, char const*)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_webrtc0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaEngineRemoteVideoSource::Start(RefPtr<mozilla::AllocationHandle const> const&)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_dom_media_webrtc0.cpp:mozilla::detail::RunnableFunction<mozilla::MediaEngineRemoteVideoSource::DeliverFrame(unsigned char*, mozilla::camera::VideoFrameProperties const&)::$_2>::Run()
Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::StorageActivityService::SendActivity(mozilla::ipc::PrincipalInfo const&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::StorageActivityService::SendActivity(nsTSubstring<char> const&)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::StorageNotifierService::Broadcast(mozilla::dom::StorageEvent*, char16_t const*, bool, bool)::$_2>::Run()
Unexecuted instantiation: ContentChild.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ContentChild::Init(MessageLoop*, int, char const*, IPC::Channel*, unsigned long, bool)::$_2>::Run()
Unexecuted instantiation: Unified_cpp_dom_ipc1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::TabParent::SetRenderLayers(bool)::$_7>::Run()
Unexecuted instantiation: Unified_cpp_dom_audiochannel0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::AudioChannelService::AudioChannelWindow::NotifyMediaBlockStop(nsPIDOMWindowOuter*)::$_2>::Run()
Unexecuted instantiation: Unified_cpp_dom_audiochannel0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::AudioChannelService::AudioChannelWindow::MaybeNotifyMediaBlockStart(mozilla::dom::AudioChannelAgent*)::$_3>::Run()
Unexecuted instantiation: Unified_cpp_dom_url0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::URLMainThread::CreateObjectURL(mozilla::dom::GlobalObject const&, mozilla::dom::MediaSource&, nsTSubstring<char16_t>&, mozilla::ErrorResult&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_webauthn0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::U2FSoftTokenManager::GetOrCreateWrappingKey(std::__1::unique_ptr<PK11SlotInfoStr, mozilla::UniquePK11SlotInfoDeletePolicy> const&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_webauthn0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::U2FSoftTokenManager::Sign(mozilla::dom::WebAuthnGetAssertionInfo const&)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PaymentRequestParent::RespondPayment(nsIPaymentActionResponse*)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PaymentRequestParent::ChangeShippingAddress(nsTSubstring<char16_t> const&, nsIPaymentAddress*)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PaymentRequestParent::ChangeShippingOption(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_2>::Run()
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PaymentRequestParent::ChangePayerDetail(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_3>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::Register(mozilla::dom::ClientInfo const&, nsTString<char> const&, nsTString<char> const&, mozilla::dom::ServiceWorkerUpdateViaCache)::$_41>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::GetRegistration(mozilla::dom::ClientInfo const&, nsTString<char> const&)::$_42>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::GetRegistrations(mozilla::dom::ClientInfo const&)::$_43>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::GetReady(mozilla::dom::ClientInfo const&)::$_44>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerImpl::GetRegistration(std::__1::function<void (mozilla::dom::ServiceWorkerRegistrationDescriptor const&)>&&, std::__1::function<void (mozilla::ErrorResult&)>&&)::$_45>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerManager::DispatchFetchEvent(nsIInterceptedChannel*, mozilla::ErrorResult&)::$_9>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerManagerService::PropagateRegistration(unsigned long, mozilla::dom::ServiceWorkerRegistrationData&)::$_12>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerProxy::PostMessage(RefPtr<mozilla::dom::ServiceWorkerCloneData>&&, mozilla::dom::ClientInfo const&, mozilla::dom::ClientState const&)::$_14>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerRegistrationMainThread::UpdateState(mozilla::dom::ServiceWorkerRegistrationDescriptor const&)::$_20>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerRegistrationInfo::TransitionWaitingToActive()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerRegistrationProxy::Unregister()::$_6>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:mozilla::detail::RunnableFunction<mozilla::dom::ServiceWorkerRegistrationProxy::Update()::$_7>::Run()
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PresentationReconnectCallback::NotifySuccess(nsTSubstring<char16_t> const&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PresentationConnection::AsyncCloseConnectionWithErrorMsg(nsTSubstring<char16_t> const&)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PresentationReceiver::GetConnectionList(mozilla::ErrorResult&)::$_2>::Run()
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PresentationService::UntrackSessionInfo(nsTSubstring<char16_t> const&, unsigned char)::$_3>::Run()
Unexecuted instantiation: Unified_cpp_dom_presentation1.cpp:mozilla::detail::RunnableFunction<mozilla::dom::PresentationIPCService::UntrackSessionInfo(nsTSubstring<char16_t> const&, unsigned char)::$_0>::Run()
Unexecuted instantiation: nsBaseWidget.cpp:mozilla::detail::RunnableFunction<nsBaseWidget::AsyncEnableDragDrop(bool)::$_2>::Run()
Unexecuted instantiation: Unified_cpp_widget_headless0.cpp:mozilla::detail::RunnableFunction<mozilla::widget::HeadlessWidget::MakeFullScreen(bool, nsIScreen*)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_layout_style2.cpp:mozilla::detail::RunnableFunction<Gecko_StyleSheet_FinishAsyncParse::$_0>::Run()
Unexecuted instantiation: Unified_cpp_layout_style2.cpp:mozilla::detail::RunnableFunction<Gecko_LoadStyleSheetAsync::$_1>::Run()
Unexecuted instantiation: Unified_cpp_docshell_shistory0.cpp:mozilla::detail::RunnableFunction<nsSHEntryShared::RemoveFromBFCacheAsync()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_tools_profiler0.cpp:mozilla::detail::RunnableFunction<NotifyObservers(char const*, nsISupports*)::$_27>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<ActivePS::ActivePS(mozilla::BaseAutoLock<PSMutex&> const&, unsigned int, double, unsigned int, char const**, unsigned int)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_tools_profiler0.cpp:mozilla::detail::RunnableFunction<TriggerPollJSSamplingOnMainThread()::$_28>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<ActivePS::~ActivePS()::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<void mozilla::RunOnAllContentParents<mozilla::DataStorage::Put(nsTString<char> const&, nsTString<char> const&, mozilla::DataStorageType)::$_0>(mozilla::DataStorage::Put(nsTString<char> const&, nsTString<char> const&, mozilla::DataStorageType)::$_0)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<void mozilla::RunOnAllContentParents<mozilla::DataStorage::Remove(nsTString<char> const&, mozilla::DataStorageType)::$_1>(mozilla::DataStorage::Remove(nsTString<char> const&, mozilla::DataStorageType)::$_1)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<void mozilla::RunOnAllContentParents<mozilla::DataStorage::Clear()::$_2>(mozilla::DataStorage::Clear()::$_2)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<NSSKeyStore::Lock()::$_3>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<NSSKeyStore::Unlock()::$_4>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundUnlock(RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_5>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncUnlock(JSContext*, mozilla::dom::Promise**)::$_6>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundLock(RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_7>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncLock(JSContext*, mozilla::dom::Promise**)::$_8>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundGenerateSecret(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_9>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncGenerateSecret(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_10>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundSecretAvailable(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_11>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncSecretAvailable(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_12>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundRecoverSecret(nsTSubstring<char> const&, nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_13>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncRecoverSecret(nsTSubstring<char> const&, nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_14>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundDeleteSecret(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_15>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncDeleteSecret(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_16>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundEncryptBytes(nsTSubstring<char> const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_17>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncEncryptBytes(nsTSubstring<char> const&, unsigned int, unsigned char*, JSContext*, mozilla::dom::Promise**)::$_18>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<BackgroundDecryptBytes(nsTSubstring<char> const&, nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_19>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::detail::RunnableFunction<OSKeyStore::AsyncDecryptBytes(nsTSubstring<char> const&, nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_20>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl1.cpp:mozilla::detail::RunnableFunction<BackgroundSdrEncryptStrings(nsTArray<nsTString<char> > const&, RefPtr<mozilla::dom::Promise>&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl1.cpp:mozilla::detail::RunnableFunction<SecretDecoderRing::AsyncEncryptStrings(unsigned int, char16_t const**, JSContext*, mozilla::dom::Promise**)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsCertOverrideService, &nsCertOverrideService::Init, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsSiteSecurityService, &nsSiteSecurityService::Init, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<CertBlocklist, &CertBlocklist::Init, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<OSKeyStore, (nsresult (OSKeyStore::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<EnsureNSSInitializedChromeOrContent()::$_2>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsSSLSocketProvider, (nsresult (nsSSLSocketProvider::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsTLSSocketProvider, (nsresult (nsTLSSocketProvider::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<SecretDecoderRing, (nsresult (SecretDecoderRing::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsPK11TokenDB, (nsresult (nsPK11TokenDB::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<mozilla::psm::PKCS11ModuleDB, (nsresult (mozilla::psm::PKCS11ModuleDB::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsNSSCertificate, (nsresult (nsNSSCertificate::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsNSSCertificateDB, (nsresult (nsNSSCertificateDB::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsNSSCertList, (nsresult (nsNSSCertList::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsCertTree, (nsresult (nsCertTree::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsCryptoHash, (nsresult (nsCryptoHash::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsCryptoHMAC, (nsresult (nsCryptoHMAC::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsNTLMAuthModule, &nsNTLMAuthModule::InitTest, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsKeyObject, (nsresult (nsKeyObject::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsKeyObjectFactory, (nsresult (nsKeyObjectFactory::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<ContentSignatureVerifier, (nsresult (ContentSignatureVerifier::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<nsRandomGenerator, (nsresult (nsRandomGenerator::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::detail::RunnableFunction<nsresult mozilla::psm::Constructor<mozilla::psm::TransportSecurityInfo, (nsresult (mozilla::psm::TransportSecurityInfo::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_ackgroundhangmonitor0.cpp:mozilla::detail::RunnableFunction<mozilla::nsHangDetails::Submit()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::detail::RunnableFunction<mozilla::extensions::StreamFilterParent::RecvSuspend()::$_3::operator()() const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::detail::RunnableFunction<mozilla::extensions::StreamFilterParent::RecvResume()::$_4::operator()() const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::detail::RunnableFunction<mozilla::extensions::StreamFilterParent::FinishDisconnect()::$_6::operator()() const::{lambda()#2}>::Run()
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::detail::RunnableFunction<mozilla::extensions::StreamFilterParent::OnStartRequest(nsIRequest*, nsISupports*)::$_7>::Run()
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::detail::RunnableFunction<mozilla::extensions::StreamFilterParent::OnStartRequest(nsIRequest*, nsISupports*)::$_8>::Run()
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::detail::RunnableFunction<mozilla::extensions::StreamFilterParent::OnStopRequest(nsIRequest*, nsISupports*, nsresult)::$_9>::Run()
Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::detail::RunnableFunction<mozilla::places::History::DispatchNotifyVisited(nsIURI*, nsIDocument*)::$_8>::Run()
Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::detail::RunnableFunction<nsNavHistory::RecalculateOriginFrecencyStats(nsIObserver*)::$_10>::Run()
Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::detail::RunnableFunction<nsNavHistory::RecalculateOriginFrecencyStats(nsIObserver*)::$_10::operator()() const::{lambda()#1}>::Run()
Unexecuted instantiation: TelemetryIPCAccumulator.cpp:mozilla::detail::RunnableFunction<(anonymous namespace)::DispatchIPCTimerFired()::$_1>::Run()
Unexecuted instantiation: TelemetryIPCAccumulator.cpp:mozilla::detail::RunnableFunction<(anonymous namespace)::ArmIPCTimer(mozilla::BaseAutoLock<mozilla::AnyStaticMutex> const&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<mozilla::safebrowsing::Classifier::Reset()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<mozilla::safebrowsing::Classifier::AsyncApplyUpdates(nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> > const&, std::__1::function<void (nsresult)> const&)::$_1>::Run()
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<mozilla::safebrowsing::Classifier::AsyncApplyUpdates(nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> > const&, std::__1::function<void (nsresult)> const&)::$_1::operator()() const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_3>::Run()
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_4>::Run()
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_4::operator()() const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::detail::RunnableFunction<nsUrlClassifierDBService::LookupURI(nsIPrincipal*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIUrlClassifierCallback*, bool, bool*)::$_5>::Run()
Unexecuted instantiation: Unified_cpp_toolkit_profile0.cpp:mozilla::detail::RunnableFunction<nsToolkitProfile::RemoveInternal(bool, bool)::$_0>::Run()
Unexecuted instantiation: Faulty.cpp:mozilla::detail::RunnableFunction<mozilla::ipc::Faulty::IsMessageNameBlacklisted(char const*)::$_0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<testing::LengthInputStream::AsyncLengthWait(nsIInputStreamLengthCallback*, nsIEventTarget*)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest0.cpp:mozilla::detail::RunnableFunction<testing::AsyncStringStream::MaybeExecCallback(nsIInputStreamCallback*, nsIEventTarget*)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_BasicResolve_Test::TestBody()::$_18>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_BasicReject_Test::TestBody()::$_19>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_BasicResolveOrRejectResolved_Test::TestBody()::$_20>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_BasicResolveOrRejectRejected_Test::TestBody()::$_21>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_AsyncResolve_Test::TestBody()::$_22>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_CompletionPromises_Test::TestBody()::$_23>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_PromiseAllResolve_Test::TestBody()::$_24>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_PromiseAllReject_Test::TestBody()::$_25>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_Chaining_Test::TestBody()::$_26>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:mozilla::detail::RunnableFunction<MozPromise_HeterogeneousChaining_Test::TestBody()::$_30>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest2.cpp:mozilla::detail::RunnableFunction<TestStateWatching::WatchManager_Shutdown_Test::TestBody()::$_3>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<TestCopyWithNoMove>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<TestCopyWithDeletedMove>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<TestMove>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<TestCopyMove>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestNewRunnableFunction(bool)::$_19>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestNewRunnableFunction(bool)::$_20>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestNewRunnableFunction(bool)::$_21>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestNewRunnableFunction(bool)::$_22>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestNewRunnableFunction(bool)::$_23>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestNewRunnableFunction(bool)::$_24>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#2}>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#3}>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#3}::operator()() const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::detail::RunnableFunction<ThreadUtils_NewNamedRunnableFunction_Test::TestBody()::$_1>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#2}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#2}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#2}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#2}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperST>(int, int, int, char const*)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperST>(int, int, int, char const*)::{lambda()#2}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperAW>(int, int, int, char const*)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperAW>(int, int, int, char const*)::{lambda()#2}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperMW>(int, int, int, char const*)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperMW>(int, int, int, char const*)::{lambda()#2}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperMT>(int, int, int, char const*)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:mozilla::detail::RunnableFunction<void TestMultiWriterQueueMT<DequeWrapperMT>(int, int, int, char const*)::{lambda()#2}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<MP4DemuxerBinding::CheckTrackSamples(mozilla::MediaTrackDemuxer*)::{lambda()#1}>::Run()
Unexecuted instantiation: mozilla::detail::RunnableFunction<MP4DemuxerBinding::CheckTrackKeyFrame(mozilla::MediaTrackDemuxer*)::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_1>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_2>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_3>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<GeckoProfiler_StreamJSONForThisProcessThreaded_Test::TestBody()::$_4>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<GeckoProfiler_StreamJSONForThisProcessThreaded_Test::TestBody()::$_5>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<DoSuspendAndSample(int, nsIThread*)::$_6>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<TelemetryTestFixture_NonMainThreadAdd_Test::TestBody()::$_0>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<testOpenLookupCache()::$_7>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<SyncApplyUpdates(RefPtr<mozilla::safebrowsing::Classifier>, nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> >&)::$_0>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<SyncApplyUpdates(RefPtr<mozilla::safebrowsing::Classifier>, nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> >&)::$_6::operator()(nsresult) const::{lambda()#1}>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<TestHasPrefix(nsTString<char> const&, bool, bool)::$_3>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<UrlClassifierPerProviderDirectory_LookupCache_Test::TestBody()::$_4>::Run()
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:mozilla::detail::RunnableFunction<UrlClassifierPerProviderDirectory_HashStore_Test::TestBody()::$_5>::Run()
567
private:
568
  StoredFunction mFunction;
569
};
570
571
// Type alias for NS_NewRunnableFunction
572
template<typename Function>
573
using RunnableFunctionImpl =
574
  // Make sure we store a non-reference in nsRunnableFunction.
575
  typename detail::RunnableFunction<typename RemoveReference<Function>::Type>;
576
} // namespace detail
577
578
namespace detail {
579
580
template<typename CVRemoved>
581
struct IsRefcountedSmartPointerHelper : FalseType {};
582
583
template<typename Pointee>
584
struct IsRefcountedSmartPointerHelper<RefPtr<Pointee>> : TrueType {};
585
586
template<typename Pointee>
587
struct IsRefcountedSmartPointerHelper<nsCOMPtr<Pointee>> : TrueType {};
588
589
} // namespace detail
590
591
template<typename T>
592
struct IsRefcountedSmartPointer
593
  : detail::IsRefcountedSmartPointerHelper<typename RemoveCV<T>::Type>
594
{};
595
596
namespace detail {
597
598
template<typename T, typename CVRemoved>
599
struct RemoveSmartPointerHelper
600
{
601
  typedef T Type;
602
};
603
604
template<typename T, typename Pointee>
605
struct RemoveSmartPointerHelper<T, RefPtr<Pointee>>
606
{
607
  typedef Pointee Type;
608
};
609
610
template<typename T, typename Pointee>
611
struct RemoveSmartPointerHelper<T, nsCOMPtr<Pointee>>
612
{
613
  typedef Pointee Type;
614
};
615
616
} // namespace detail
617
618
template<typename T>
619
struct RemoveSmartPointer
620
  : detail::RemoveSmartPointerHelper<T, typename RemoveCV<T>::Type>
621
{};
622
623
namespace detail {
624
625
template<typename T, typename CVRemoved>
626
struct RemoveRawOrSmartPointerHelper
627
{
628
  typedef T Type;
629
};
630
631
template<typename T, typename Pointee>
632
struct RemoveRawOrSmartPointerHelper<T, Pointee*>
633
{
634
  typedef Pointee Type;
635
};
636
637
template<typename T, typename Pointee>
638
struct RemoveRawOrSmartPointerHelper<T, RefPtr<Pointee>>
639
{
640
  typedef Pointee Type;
641
};
642
643
template<typename T, typename Pointee>
644
struct RemoveRawOrSmartPointerHelper<T, nsCOMPtr<Pointee>>
645
{
646
  typedef Pointee Type;
647
};
648
649
} // namespace detail
650
651
template<typename T>
652
struct RemoveRawOrSmartPointer
653
  : detail::RemoveRawOrSmartPointerHelper<T, typename RemoveCV<T>::Type>
654
{};
655
656
} // namespace mozilla
657
658
inline nsISupports*
659
ToSupports(mozilla::Runnable *p)
660
0
{
661
0
  return static_cast<nsIRunnable*>(p);
662
0
}
663
664
template<typename Function>
665
already_AddRefed<mozilla::Runnable>
666
NS_NewRunnableFunction(const char* aName, Function&& aFunction)
667
48
{
668
48
  // We store a non-reference in RunnableFunction, but still forward aFunction
669
48
  // to move if possible.
670
48
  return do_AddRef(
671
48
    new mozilla::detail::RunnableFunctionImpl<Function>(
672
48
      aName, std::forward<Function>(aFunction)));
673
48
}
Unexecuted instantiation: SandboxReporter.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::SandboxReporter::Singleton()::$_0>(char const*, mozilla::SandboxReporter::Singleton()::$_0&&)
Unexecuted instantiation: Unified_cpp_xpcom_base2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsMemoryReporterManager::DispatchReporter(nsIMemoryReporter*, bool, nsIHandleReportCallback*, nsISupports*, bool)::$_0>(char const*, nsMemoryReporterManager::DispatchReporter(nsIMemoryReporter*, bool, nsIHandleReportCallback*, nsISupports*, bool)::$_0&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsMultiplexInputStream::AsyncWaitLengthHelper::Proceed(nsMultiplexInputStream*, nsIEventTarget*, mozilla::BaseAutoLock<mozilla::Mutex&> const&)::{lambda()#1}>(char const*, nsMultiplexInputStream::AsyncWaitLengthHelper::Proceed(nsMultiplexInputStream*, nsIEventTarget*, mozilla::BaseAutoLock<mozilla::Mutex&> const&)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::AbstractThread::CreateXPCOMThreadWrapper(nsIThread*, bool)::$_0>(char const*, mozilla::AbstractThread::CreateXPCOMThreadWrapper(nsIThread*, bool)::$_0&&)
Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::SchedulerImpl::Start()::$_1>(char const*, mozilla::SchedulerImpl::Start()::$_1&&)
Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::SchedulerImpl::Shutdown()::$_2>(char const*, mozilla::SchedulerImpl::Shutdown()::$_2&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::PreferencesWriter::Flush()::{lambda()#1}>(char const*, mozilla::PreferencesWriter::Flush()::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::PWRunnable::Run()::{lambda()#1}>(char const*, mozilla::PWRunnable::Run()::{lambda()#1}&&)
Unexecuted instantiation: nsCookieService.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsCookieService::InitDBStates()::$_0>(char const*, nsCookieService::InitDBStates()::$_0&&)
Unexecuted instantiation: nsCookieService.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsCookieService::InitDBStates()::$_0::operator()() const::{lambda()#1}>(char const*, nsCookieService::InitDBStates()::$_0::operator()() const::{lambda()#1}&&)
Unexecuted instantiation: nsCookieService.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsCookieService::TryInitDB(bool)::$_2>(char const*, nsCookieService::TryInitDB(bool)::$_2&&)
Unexecuted instantiation: nsCookieService.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsCookieService::RebuildCorruptDB(DBState*)::$_3>(char const*, nsCookieService::RebuildCorruptDB(DBState*)::$_3&&)
Unexecuted instantiation: nsCookieService.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsCookieService::RebuildCorruptDB(DBState*)::$_3::operator()() const::{lambda()#1}>(char const*, nsCookieService::RebuildCorruptDB(DBState*)::$_3::operator()() const::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_netwerk_dns0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::net::TRRService::IsTRRBlacklisted(nsTSubstring<char> const&, bool, bool)::$_1>(char const*, mozilla::net::TRRService::IsTRRBlacklisted(nsTSubstring<char> const&, bool, bool)::$_1&&)
Unexecuted instantiation: Unified_cpp_netwerk_cache20.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::net::CacheIndex::AsyncGetDiskConsumption(nsICacheStorageConsumptionObserver*)::$_2>(char const*, mozilla::net::CacheIndex::AsyncGetDiskConsumption(nsICacheStorageConsumptionObserver*)::$_2&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::net::HttpBackgroundChannelChild::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_0>(char const*, mozilla::net::HttpBackgroundChannelChild::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_0&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::net::HttpBackgroundChannelParent::OnChannelClosed()::$_1>(char const*, mozilla::net::HttpBackgroundChannelParent::OnChannelClosed()::$_1&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::net::HttpBackgroundChannelParent::OnNotifyTrackingCookieBlocked(unsigned int)::$_2>(char const*, mozilla::net::HttpBackgroundChannelParent::OnNotifyTrackingCookieBlocked(unsigned int)::$_2&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::net::HttpBackgroundChannelParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_3>(char const*, mozilla::net::HttpBackgroundChannelParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_3&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::net::HttpChannelChild::OnTransportAndData(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)::$_5>(char const*, mozilla::net::HttpChannelChild::OnTransportAndData(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)::$_5&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::net::HttpChannelChild::OnTransportAndData(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)::$_6>(char const*, mozilla::net::HttpChannelChild::OnTransportAndData(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)::$_6&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::net::HttpChannelChild::ProcessNotifyTrackingProtectionDisabled()::$_7>(char const*, mozilla::net::HttpChannelChild::ProcessNotifyTrackingProtectionDisabled()::$_7&&)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::net::HttpChannelChild::ProcessNotifyTrackingCookieBlocked(unsigned int)::$_8>(char const*, mozilla::net::HttpChannelChild::ProcessNotifyTrackingCookieBlocked(unsigned int)::$_8&&)
Unexecuted instantiation: Unified_cpp_protocol_http1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::net::nsHttpChannel::ResumeInternal()::$_19>(char const*, mozilla::net::nsHttpChannel::ResumeInternal()::$_19&&)
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::ipc::CrashReporterHost::NotifyCrashService(GeckoProcessType, int, nsTString<char16_t> const&)::$_0>(char const*, mozilla::ipc::CrashReporterHost::NotifyCrashService(GeckoProcessType, int, nsTString<char16_t> const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_js_xpconnect_src0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<XPCJSRuntime::DoCycleCollectionCallback(JSContext*)::$_4>(char const*, XPCJSRuntime::DoCycleCollectionCallback(JSContext*)::$_4&&)
Unexecuted instantiation: Unified_cpp_modules_libjar0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsJARChannel::OpenLocalFile()::$_0>(char const*, nsJARChannel::OpenLocalFile()::$_0&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::WebrtcVideoConduit::SetRemoteSSRCLocked(unsigned int)::$_0>(char const*, mozilla::WebrtcVideoConduit::SetRemoteSSRCLocked(unsigned int)::$_0&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::WebrtcVideoConduit::PollStats()::$_1>(char const*, mozilla::WebrtcVideoConduit::PollStats()::$_1&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::WebrtcVideoConduit::PollStats()::$_2>(char const*, mozilla::WebrtcVideoConduit::PollStats()::$_2&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::WebrtcVideoConduit::PollStats()::$_3>(char const*, mozilla::WebrtcVideoConduit::PollStats()::$_3&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::WebrtcVideoConduit::UpdateVideoStatsTimer()::$_4>(char const*, mozilla::WebrtcVideoConduit::UpdateVideoStatsTimer()::$_4&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::WebrtcVideoConduit::AddOrUpdateSink(rtc::VideoSinkInterface<webrtc::VideoFrame>*, rtc::VideoSinkWants const&)::$_6>(char const*, mozilla::WebrtcVideoConduit::AddOrUpdateSink(rtc::VideoSinkInterface<webrtc::VideoFrame>*, rtc::VideoSinkWants const&)::$_6&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::WebrtcVideoConduit::SendVideoFrame(webrtc::VideoFrame const&)::$_7>(char const*, mozilla::WebrtcVideoConduit::SendVideoFrame(webrtc::VideoFrame const&)::$_7&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::WebrtcVideoConduit::ReceivedRTPPacket(void const*, int, unsigned int)::$_8>(char const*, mozilla::WebrtcVideoConduit::ReceivedRTPPacket(void const*, int, unsigned int)::$_8&&)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::WebrtcVideoConduit::ReceivedRTPPacket(void const*, int, unsigned int)::$_8::operator()()::{lambda()#1}>(char const*, mozilla::WebrtcVideoConduit::ReceivedRTPPacket(void const*, int, unsigned int)::$_8::operator()()::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::AudioProxyThread::QueueAudioChunk(int, mozilla::AudioChunk const&, bool)::{lambda()#1}>(char const*, mozilla::AudioProxyThread::QueueAudioChunk(int, mozilla::AudioChunk const&, bool)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_uriloader_exthandler0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsExtProtocolChannel::OpenURL()::$_0>(char const*, nsExtProtocolChannel::OpenURL()::$_0&&)
Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::PaintThread::QueuePaintTask(mozilla::UniquePtr<mozilla::layers::PaintTask, mozilla::DefaultDelete<mozilla::layers::PaintTask> >&&)::$_7>(char const*, mozilla::layers::PaintThread::QueuePaintTask(mozilla::UniquePtr<mozilla::layers::PaintTask, mozilla::DefaultDelete<mozilla::layers::PaintTask> >&&)::$_7&&)
Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::PaintThread::QueueEndLayerTransaction(mozilla::layers::SyncObjectClient*)::$_8>(char const*, mozilla::layers::PaintThread::QueueEndLayerTransaction(mozilla::layers::SyncObjectClient*)::$_8&&)
Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::ProfilerScreenshots::SubmitScreenshot(unsigned long, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::TimeStamp const&, std::__1::function<bool (mozilla::gfx::DataSourceSurface*)> const&)::$_9>(char const*, mozilla::layers::ProfilerScreenshots::SubmitScreenshot(unsigned long, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::TimeStamp const&, std::__1::function<bool (mozilla::gfx::DataSourceSurface*)> const&)::$_9&&)
Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::WebRenderLayerManager::DoDestroy(bool)::$_3>(char const*, mozilla::layers::WebRenderLayerManager::DoDestroy(bool)::$_3&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::APZCTreeManager::APZCTreeManager(mozilla::layers::LayersId)::$_1>(char const*, mozilla::layers::APZCTreeManager::APZCTreeManager(mozilla::layers::LayersId)::$_1&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::APZCTreeManager::ClearTree()::$_7>(char const*, mozilla::layers::APZCTreeManager::ClearTree()::$_7&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::APZSampler::SetWebRenderWindowId(mozilla::wr::WrWindowId const&)::$_20>(char const*, mozilla::layers::APZSampler::SetWebRenderWindowId(mozilla::wr::WrWindowId const&)::$_20&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::APZUpdater::SetWebRenderWindowId(mozilla::wr::WrWindowId const&)::$_22>(char const*, mozilla::layers::APZUpdater::SetWebRenderWindowId(mozilla::wr::WrWindowId const&)::$_22&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::APZUpdater::ClearTree(mozilla::layers::LayersId)::$_23>(char const*, mozilla::layers::APZUpdater::ClearTree(mozilla::layers::LayersId)::$_23&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::APZUpdater::UpdateScrollDataAndTreeState(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::wr::Epoch const&, mozilla::layers::WebRenderScrollData&&)::$_24>(char const*, mozilla::layers::APZUpdater::UpdateScrollDataAndTreeState(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::wr::Epoch const&, mozilla::layers::WebRenderScrollData&&)::$_24&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::APZUpdater::UpdateScrollDataAndTreeState(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::wr::Epoch const&, mozilla::layers::WebRenderScrollData&&)::$_25>(char const*, mozilla::layers::APZUpdater::UpdateScrollDataAndTreeState(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::wr::Epoch const&, mozilla::layers::WebRenderScrollData&&)::$_25&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::APZUpdater::UpdateScrollOffsets(mozilla::layers::LayersId, mozilla::layers::LayersId, std::__1::map<unsigned long, mozilla::layers::ScrollUpdateInfo, std::__1::less<unsigned long>, std::__1::allocator<std::__1::pair<unsigned long const, mozilla::layers::ScrollUpdateInfo> > >&&, unsigned int)::$_26>(char const*, mozilla::layers::APZUpdater::UpdateScrollOffsets(mozilla::layers::LayersId, mozilla::layers::LayersId, std::__1::map<unsigned long, mozilla::layers::ScrollUpdateInfo, std::__1::less<unsigned long>, std::__1::allocator<std::__1::pair<unsigned long const, mozilla::layers::ScrollUpdateInfo> > >&&, unsigned int)::$_26&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::APZUpdater::NotifyLayerTreeRemoved(mozilla::layers::LayersId)::$_27>(char const*, mozilla::layers::APZUpdater::NotifyLayerTreeRemoved(mozilla::layers::LayersId)::$_27&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::APZUpdater::GetAPZTestData(mozilla::layers::LayersId, mozilla::layers::APZTestData*)::$_28>(char const*, mozilla::layers::APZUpdater::GetAPZTestData(mozilla::layers::LayersId, mozilla::layers::APZTestData*)::$_28&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::APZUpdater::SetTestAsyncScrollOffset(mozilla::layers::LayersId, unsigned long const&, mozilla::gfx::PointTyped<mozilla::CSSPixel, float> const&)::$_29>(char const*, mozilla::layers::APZUpdater::SetTestAsyncScrollOffset(mozilla::layers::LayersId, unsigned long const&, mozilla::gfx::PointTyped<mozilla::CSSPixel, float> const&)::$_29&&)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::APZUpdater::SetTestAsyncZoom(mozilla::layers::LayersId, unsigned long const&, mozilla::gfx::ScaleFactor<mozilla::LayerPixel, mozilla::ParentLayerPixel> const&)::$_30>(char const*, mozilla::layers::APZUpdater::SetTestAsyncZoom(mozilla::layers::LayersId, unsigned long const&, mozilla::gfx::ScaleFactor<mozilla::LayerPixel, mozilla::ParentLayerPixel> const&)::$_30&&)
Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::CheckerboardEventStorage::Report(unsigned int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)::$_0>(char const*, mozilla::layers::CheckerboardEventStorage::Report(unsigned int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::BasicCompositor::TryToEndRemoteDrawing(bool)::$_1>(char const*, mozilla::layers::BasicCompositor::TryToEndRemoteDrawing(bool)::$_1&&)
Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::DestroyTextureData(mozilla::layers::TextureData*, mozilla::layers::LayersIPCChannel*, bool, bool)::$_2>(char const*, mozilla::layers::DestroyTextureData(mozilla::layers::TextureData*, mozilla::layers::LayersIPCChannel*, bool, bool)::$_2&&)
Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::ClientLayerManager::Destroy()::$_0>(char const*, mozilla::layers::ClientLayerManager::Destroy()::$_0&&)
Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::CompositableClient::GetTextureClientRecycler()::$_1>(char const*, mozilla::layers::CompositableClient::GetTextureClientRecycler()::$_1&&)
Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::CompositorBridgeParent::FlushApzRepaints(mozilla::layers::LayersId const&)::$_3>(char const*, mozilla::layers::CompositorBridgeParent::FlushApzRepaints(mozilla::layers::LayersId const&)::$_3&&)
Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::CompositorManagerParent::Shutdown()::$_7>(char const*, mozilla::layers::CompositorManagerParent::Shutdown()::$_7&&)
Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::layers::ImageBridgeParent::Shutdown()::$_11>(char const*, mozilla::layers::ImageBridgeParent::Shutdown()::$_11&&)
Unexecuted instantiation: gfxPlatform.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<gfxPlatform::NotifyCompositorCreated(mozilla::layers::LayersBackend)::$_2>(char const*, gfxPlatform::NotifyCompositorCreated(mozilla::layers::LayersBackend)::$_2&&)
Unexecuted instantiation: GPUParent.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::gfx::GPUParent::NotifyDeviceReset()::$_0>(char const*, mozilla::gfx::GPUParent::NotifyDeviceReset()::$_0&&)
Unexecuted instantiation: Unified_cpp_gfx_vr0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::gfx::VRManager::Shutdown()::$_0>(char const*, mozilla::gfx::VRManager::Shutdown()::$_0&&)
Unexecuted instantiation: Unified_cpp_gfx_vr0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::gfx::VRManager::RefreshVRDisplays(bool)::$_1>(char const*, mozilla::gfx::VRManager::RefreshVRDisplays(bool)::$_1&&)
Unexecuted instantiation: Unified_cpp_gfx_config0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::gfx::gfxConfig::EnableFallback(mozilla::gfx::Fallback, char const*)::$_0>(char const*, mozilla::gfx::gfxConfig::EnableFallback(mozilla::gfx::Fallback, char const*)::$_0&&)
Unexecuted instantiation: Unified_cpp_image2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<imgRequestProxy::RemoveFromLoadGroup()::$_0>(char const*, imgRequestProxy::RemoveFromLoadGroup()::$_0&&)
Unexecuted instantiation: Unified_cpp_image2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<imgRequestProxy::MoveToBackgroundInLoadGroup()::$_1>(char const*, imgRequestProxy::MoveToBackgroundInLoadGroup()::$_1&&)
Unexecuted instantiation: Unified_cpp_image2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<imgRequestProxy::Notify(int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const*)::$_2>(char const*, imgRequestProxy::Notify(int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const*)::$_2&&)
Unexecuted instantiation: Unified_cpp_image2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<imgRequestProxy::Notify(int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const*)::$_3>(char const*, imgRequestProxy::Notify(int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const*)::$_3&&)
Unexecuted instantiation: Unified_cpp_image2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<imgRequestProxy::OnLoadComplete(bool)::$_4>(char const*, imgRequestProxy::OnLoadComplete(bool)::$_4&&)
nsContentUtils.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsContentUtils::AsyncPrecreateStringBundles()::$_3>(char const*, nsContentUtils::AsyncPrecreateStringBundles()::$_3&&)
Line
Count
Source
667
42
{
668
42
  // We store a non-reference in RunnableFunction, but still forward aFunction
669
42
  // to move if possible.
670
42
  return do_AddRef(
671
42
    new mozilla::detail::RunnableFunctionImpl<Function>(
672
42
      aName, std::forward<Function>(aFunction)));
673
42
}
nsContentUtils.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsContentUtils::UserInteractionObserver::Init()::$_4>(char const*, nsContentUtils::UserInteractionObserver::Init()::$_4&&)
Line
Count
Source
667
3
{
668
3
  // We store a non-reference in RunnableFunction, but still forward aFunction
669
3
  // to move if possible.
670
3
  return do_AddRef(
671
3
    new mozilla::detail::RunnableFunctionImpl<Function>(
672
3
      aName, std::forward<Function>(aFunction)));
673
3
}
Unexecuted instantiation: Unified_cpp_dom_base2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ImageEncoder::EnsureThreadPool()::$_3>(char const*, mozilla::dom::ImageEncoder::EnsureThreadPool()::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_base7.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsFocusManager::RaiseWindow(nsPIDOMWindowOuter*)::$_7>(char const*, nsFocusManager::RaiseWindow(nsPIDOMWindowOuter*)::$_7&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ImageBitmapShutdownObserver::RegisterObserver()::{lambda()#1}>(char const*, mozilla::dom::ImageBitmapShutdownObserver::RegisterObserver()::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ImageBitmapShutdownObserver::UnregisterObserver()::{lambda()#1}>(char const*, mozilla::dom::ImageBitmapShutdownObserver::UnregisterObserver()::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_canvas0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::CreateImageBitmapFromBlob::StartDecodeAndCropBlob()::$_1>(char const*, mozilla::dom::CreateImageBitmapFromBlob::StartDecodeAndCropBlob()::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_clients_api0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::Clients::Get(nsTSubstring<char16_t> const&, mozilla::ErrorResult&)::$_4::operator()(mozilla::dom::ClientOpResult const&) const::{lambda()#1}>(char const*, mozilla::dom::Clients::Get(nsTSubstring<char16_t> const&, mozilla::ErrorResult&)::$_4::operator()(mozilla::dom::ClientOpResult const&) const::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_clients_api0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::Clients::MatchAll(mozilla::dom::ClientQueryOptions const&, mozilla::ErrorResult&)::$_6::operator()(mozilla::dom::ClientOpResult const&) const::{lambda()#1}>(char const*, mozilla::dom::Clients::MatchAll(mozilla::dom::ClientQueryOptions const&, mozilla::ErrorResult&)::$_6::operator()(mozilla::dom::ClientOpResult const&) const::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_clients_manager0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::(anonymous namespace)::OnShutdown()::$_18>(char const*, mozilla::dom::(anonymous namespace)::OnShutdown()::$_18&&)
Unexecuted instantiation: Unified_cpp_dom_clients_manager0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::(anonymous namespace)::ClaimOnMainThread(mozilla::dom::ClientInfo const&, mozilla::dom::ServiceWorkerDescriptor const&)::$_19>(char const*, mozilla::dom::(anonymous namespace)::ClaimOnMainThread(mozilla::dom::ClientInfo const&, mozilla::dom::ServiceWorkerDescriptor const&)::$_19&&)
Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ClientSource::Claim(mozilla::dom::ClientClaimArgs const&)::$_7>(char const*, mozilla::dom::ClientSource::Claim(mozilla::dom::ClientClaimArgs const&)::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ClientSourceParent::RecvInheritController(mozilla::dom::ClientControlledArgs const&)::$_10>(char const*, mozilla::dom::ClientSourceParent::RecvInheritController(mozilla::dom::ClientControlledArgs const&)::$_10&&)
Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ClientSourceParent::RecvNoteDOMContentLoaded()::$_11>(char const*, mozilla::dom::ClientSourceParent::RecvNoteDOMContentLoaded()::$_11&&)
Unexecuted instantiation: Unified_cpp_dom_events0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::Clipboard::ReadHelper(JSContext*, nsIPrincipal&, mozilla::dom::ClipboardReadType, mozilla::ErrorResult&)::$_0>(char const*, mozilla::dom::Clipboard::ReadHelper(JSContext*, nsIPrincipal&, mozilla::dom::ClipboardReadType, mozilla::ErrorResult&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_events0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::Clipboard::Write(JSContext*, mozilla::dom::DataTransfer&, nsIPrincipal&, mozilla::ErrorResult&)::$_1>(char const*, mozilla::dom::Clipboard::Write(JSContext*, mozilla::dom::DataTransfer&, nsIPrincipal&, mozilla::ErrorResult&)::$_1&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::FetchBodyConsumer<mozilla::dom::Request>::ShutDownMainThreadConsuming()::{lambda()#1}>(char const*, mozilla::dom::FetchBodyConsumer<mozilla::dom::Request>::ShutDownMainThreadConsuming()::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::FetchBodyConsumer<mozilla::dom::Response>::ShutDownMainThreadConsuming()::{lambda()#1}>(char const*, mozilla::dom::FetchBodyConsumer<mozilla::dom::Response>::ShutDownMainThreadConsuming()::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_fetch0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::FetchStream::ReleaseObjects(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_1>(char const*, mozilla::dom::FetchStream::ReleaseObjects(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_fetch0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::FetchStreamReader::ReportErrorToConsole(JSContext*, JS::Handle<JS::Value>)::$_3>(char const*, mozilla::dom::FetchStreamReader::ReportErrorToConsole(JSContext*, JS::Handle<JS::Value>)::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_file0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::MutableBlobStorage::MaybeCreateTemporaryFile(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_1>(char const*, mozilla::dom::MutableBlobStorage::MaybeCreateTemporaryFile(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_file1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::(anonymous namespace)::TemporaryFileInputStream::~TemporaryFileInputStream()::{lambda()#1}>(char const*, mozilla::dom::(anonymous namespace)::TemporaryFileInputStream::~TemporaryFileInputStream()::{lambda()#1}&&)
Unexecuted instantiation: AutoplayPermissionManager.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::AutoplayPermissionManager::RequestWithPrompt()::$_0>(char const*, mozilla::AutoplayPermissionManager::RequestWithPrompt()::$_0&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::HTMLMediaElement::AudioChannelAgentCallback::MaybeNotifyMediaResumed(unsigned int)::{lambda()#1}>(char const*, mozilla::dom::HTMLMediaElement::AudioChannelAgentCallback::MaybeNotifyMediaResumed(unsigned int)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::HTMLMediaElement::UnbindFromTree(bool, bool)::$_7>(char const*, mozilla::dom::HTMLMediaElement::UnbindFromTree(bool, bool)::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::HTMLMediaElement::AsyncResolveSeekDOMPromiseIfExists()::$_14>(char const*, mozilla::dom::HTMLMediaElement::AsyncResolveSeekDOMPromiseIfExists()::$_14&&)
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::HTMLMediaElement::AsyncRejectSeekDOMPromiseIfExists()::$_15>(char const*, mozilla::dom::HTMLMediaElement::AsyncRejectSeekDOMPromiseIfExists()::$_15&&)
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::HTMLMediaElement::ReportCanPlayTelemetry()::$_16>(char const*, mozilla::dom::HTMLMediaElement::ReportCanPlayTelemetry()::$_16&&)
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::HTMLMediaElement::ReportCanPlayTelemetry()::$_16::operator()() const::{lambda()#3}>(char const*, mozilla::dom::HTMLMediaElement::ReportCanPlayTelemetry()::$_16::operator()() const::{lambda()#3}&&)
already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void (*)()>(char const*, void (*&&)())
Line
Count
Source
667
3
{
668
3
  // We store a non-reference in RunnableFunction, but still forward aFunction
669
3
  // to move if possible.
670
3
  return do_AddRef(
671
3
    new mozilla::detail::RunnableFunctionImpl<Function>(
672
3
      aName, std::forward<Function>(aFunction)));
673
3
}
Unexecuted instantiation: Unified_cpp_dom_media10.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::VideoFrameContainer::SetCurrentFramesLocked(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, nsTArray<mozilla::layers::ImageContainer::NonOwningImage> const&)::$_0>(char const*, mozilla::VideoFrameContainer::SetCurrentFramesLocked(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, nsTArray<mozilla::layers::ImageContainer::NonOwningImage> const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media10.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::VideoFrameContainer::SetCurrentFramesLocked(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, nsTArray<mozilla::layers::ImageContainer::NonOwningImage> const&)::$_1>(char const*, mozilla::VideoFrameContainer::SetCurrentFramesLocked(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, nsTArray<mozilla::layers::ImageContainer::NonOwningImage> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_media11.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::LogToBrowserConsole(nsTSubstring<char16_t> const&)::$_0>(char const*, mozilla::LogToBrowserConsole(nsTSubstring<char16_t> const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::Benchmark::Run()::$_2::operator()() const::{lambda()#1}>(char const*, mozilla::Benchmark::Run()::$_2::operator()() const::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::BenchmarkPlayback::DemuxNextSample()::$_5::operator()(RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>) const::{lambda()#1}>(char const*, mozilla::BenchmarkPlayback::DemuxNextSample()::$_5::operator()(RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>) const::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::BenchmarkPlayback::Output(nsTArray<RefPtr<mozilla::MediaData> > const&)::$_13>(char const*, mozilla::BenchmarkPlayback::Output(nsTArray<RefPtr<mozilla::MediaData> > const&)::$_13&&)
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::BenchmarkPlayback::Error(mozilla::MediaResult const&)::$_14>(char const*, mozilla::BenchmarkPlayback::Error(mozilla::MediaResult const&)::$_14&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaDecoderStateMachine::DispatchIsLiveStream(bool)::{lambda()#1}>(char const*, mozilla::MediaDecoderStateMachine::DispatchIsLiveStream(bool)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::ChannelMediaDecoder::NotifyDownloadEnded(nsresult)::$_0>(char const*, mozilla::ChannelMediaDecoder::NotifyDownloadEnded(nsresult)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::ChannelMediaDecoder::DurationChanged()::$_1>(char const*, mozilla::ChannelMediaDecoder::DurationChanged()::$_1&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaDecoderStateMachine::DispatchCanPlayThrough(bool)::{lambda()#1}>(char const*, mozilla::MediaDecoderStateMachine::DispatchCanPlayThrough(bool)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::ChannelMediaResource::CopySegmentToCache(nsIInputStream*, void*, char const*, unsigned int, unsigned int, unsigned int*)::$_5>(char const*, mozilla::ChannelMediaResource::CopySegmentToCache(nsIInputStream*, void*, char const*, unsigned int, unsigned int, unsigned int*)::$_5&&)
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::ChannelMediaResource::CacheClientNotifyDataEnded(nsresult)::$_6>(char const*, mozilla::ChannelMediaResource::CacheClientNotifyDataEnded(nsresult)::$_6&&)
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::ChannelMediaResource::CacheClientSeek(long, bool)::$_7>(char const*, mozilla::ChannelMediaResource::CacheClientSeek(long, bool)::$_7&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaDecoderStateMachine::DispatchSetFragmentEndTime(mozilla::media::TimeUnit const&)::{lambda()#1}>(char const*, mozilla::MediaDecoderStateMachine::DispatchSetFragmentEndTime(mozilla::media::TimeUnit const&)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<GetSourceSurface(mozilla::layers::Image*)::$_5>(char const*, GetSourceSurface(mozilla::layers::Image*)::$_5&&)
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::FileBlockCache::Init()::$_0>(char const*, mozilla::FileBlockCache::Init()::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::FileBlockCache::Flush()::$_2>(char const*, mozilla::FileBlockCache::Flush()::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::FileBlockCache::Close()::$_3>(char const*, mozilla::FileBlockCache::Close()::$_3&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::DormantState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::DormantState>()::{lambda()#1}>(char const*, decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::DormantState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::DormantState>()::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaCache::Flush()::$_0>(char const*, mozilla::MediaCache::Flush()::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaCache::CloseStreamsForPrivateBrowsing()::$_1>(char const*, mozilla::MediaCache::CloseStreamsForPrivateBrowsing()::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaCacheStream::NotifyLoadID(unsigned int)::$_2>(char const*, mozilla::MediaCacheStream::NotifyLoadID(unsigned int)::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaCacheStream::NotifyDataStarted(unsigned int, long, bool, long)::$_3>(char const*, mozilla::MediaCacheStream::NotifyDataStarted(unsigned int, long, bool, long)::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaCacheStream::NotifyDataEnded(unsigned int, nsresult)::$_4>(char const*, mozilla::MediaCacheStream::NotifyDataEnded(unsigned int, nsresult)::$_4&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaCacheStream::NotifyClientSuspended(bool)::$_5>(char const*, mozilla::MediaCacheStream::NotifyClientSuspended(bool)::$_5&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaCacheStream::NotifyResume()::$_6>(char const*, mozilla::MediaCacheStream::NotifyResume()::$_6&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaCacheStream::Close()::$_7>(char const*, mozilla::MediaCacheStream::Close()::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaCacheStream::SetReadMode(mozilla::MediaCacheStream::ReadMode)::$_8>(char const*, mozilla::MediaCacheStream::SetReadMode(mozilla::MediaCacheStream::ReadMode)::$_8&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaCacheStream::ThrottleReadahead(bool)::$_9>(char const*, mozilla::MediaCacheStream::ThrottleReadahead(bool)::$_9&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaCacheStream::Init(long)::$_10>(char const*, mozilla::MediaCacheStream::Init(long)::$_10&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaCacheStream::InitAsClone(mozilla::MediaCacheStream*)::$_11>(char const*, mozilla::MediaCacheStream::InitAsClone(mozilla::MediaCacheStream*)::$_11&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaDecoder::Shutdown()::$_12>(char const*, mozilla::MediaDecoder::Shutdown()::$_12&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::DecodingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::DecodingState>()::{lambda()#1}>(char const*, decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::DecodingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::DecodingState>()::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::NextFrameSeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::NextFrameSeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&&)::{lambda()#1}>(char const*, decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::NextFrameSeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::NextFrameSeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&&)::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::NextFrameSeekingFromDormantState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::NextFrameSeekingFromDormantState, mozilla::SeekJob, mozilla::SeekJob>(mozilla::SeekJob&&, mozilla::SeekJob&&)::{lambda()#1}>(char const*, decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::NextFrameSeekingFromDormantState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::NextFrameSeekingFromDormantState, mozilla::SeekJob, mozilla::SeekJob>(mozilla::SeekJob&&, mozilla::SeekJob&&)::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::ShutdownState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::ShutdownState>()::{lambda()#1}>(char const*, decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::ShutdownState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::ShutdownState>()::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::VideoOnlySeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::VideoOnlySeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)::{lambda()#1}>(char const*, decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::VideoOnlySeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::VideoOnlySeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::AccurateSeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::AccurateSeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)::{lambda()#1}>(char const*, decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::AccurateSeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::AccurateSeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::NextFrameSeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::NextFrameSeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)::{lambda()#1}>(char const*, decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::NextFrameSeekingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::NextFrameSeekingState, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::DecodingFirstFrameState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::DecodingFirstFrameState>()::{lambda()#1}>(char const*, decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::DecodingFirstFrameState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::DecodingFirstFrameState>()::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::CompletedState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::CompletedState>()::{lambda()#1}>(char const*, decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::CompletedState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::CompletedState>()::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::BufferingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::BufferingState>()::{lambda()#1}>(char const*, decltype (ReturnTypeHelper(&mozilla::MediaDecoderStateMachine::BufferingState::Enter)) mozilla::MediaDecoderStateMachine::StateObject::SetState<mozilla::MediaDecoderStateMachine::BufferingState>()::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaDecoderStateMachine::RequestDebugInfo()::$_36>(char const*, mozilla::MediaDecoderStateMachine::RequestDebugInfo()::$_36&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaFormatReader::DemuxerProxy::Wrapper::Reset()::{lambda()#1}>(char const*, mozilla::MediaFormatReader::DemuxerProxy::Wrapper::Reset()::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaFormatReader::DemuxerProxy::Wrapper::~Wrapper()::{lambda()#1}>(char const*, mozilla::MediaFormatReader::DemuxerProxy::Wrapper::~Wrapper()::{lambda()#1}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::GetUserMediaTask::Run()::{lambda()#1}>(char const*, mozilla::GetUserMediaTask::Run()::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<RefPtr<mozilla::MozPromise<bool, RefPtr<mozilla::MediaMgrError>, true> > mozilla::MediaManager::PostTask<mozilla::MozPromise<bool, RefPtr<mozilla::MediaMgrError>, true>, mozilla::SourceListener::InitializeAsync()::$_40>(char const*, mozilla::SourceListener::InitializeAsync()::$_40&&)::{lambda()#1}>(char const*, RefPtr<mozilla::MozPromise<bool, RefPtr<mozilla::MediaMgrError>, true> > mozilla::MediaManager::PostTask<mozilla::MozPromise<bool, RefPtr<mozilla::MediaMgrError>, true>, mozilla::SourceListener::InitializeAsync()::$_40>(char const*, mozilla::SourceListener::InitializeAsync()::$_40&&)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<RefPtr<mozilla::MozPromise<nsresult, bool, true> > mozilla::MediaManager::PostTask<mozilla::MozPromise<nsresult, bool, true>, mozilla::SourceListener::SetEnabledFor(int, bool)::$_45::operator()()::{lambda(mozilla::MozPromiseHolder<mozilla::MozPromise<nsresult, bool, true> >&)#1}>(char const*, mozilla::SourceListener::SetEnabledFor(int, bool)::$_45::operator()()::{lambda(mozilla::MozPromiseHolder<mozilla::MozPromise<nsresult, bool, true> >&)#1}&&)::{lambda()#1}>(char const, RefPtr&&)
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<RefPtr<mozilla::MozPromise<bool, mozilla::Maybe<nsTString<char16_t> >, true> > mozilla::MediaManager::PostTask<mozilla::MozPromise<bool, mozilla::Maybe<nsTString<char16_t> >, true>, mozilla::SourceListener::ApplyConstraintsToTrack(nsPIDOMWindowInner*, int, mozilla::dom::MediaTrackConstraints const&, mozilla::dom::CallerType)::$_49>(char const*, mozilla::SourceListener::ApplyConstraintsToTrack(nsPIDOMWindowInner*, int, mozilla::dom::MediaTrackConstraints const&, mozilla::dom::CallerType)::$_49&&)::{lambda()#1}>(char const*, RefPtr<mozilla::MozPromise<bool, mozilla::Maybe<nsTString<char16_t> >, true> > mozilla::MediaManager::PostTask<mozilla::MozPromise<bool, mozilla::Maybe<nsTString<char16_t> >, true>, mozilla::SourceListener::ApplyConstraintsToTrack(nsPIDOMWindowInner*, int, mozilla::dom::MediaTrackConstraints const&, mozilla::dom::CallerType)::$_49>(char const*, mozilla::SourceListener::ApplyConstraintsToTrack(nsPIDOMWindowInner*, int, mozilla::dom::MediaTrackConstraints const&, mozilla::dom::CallerType)::$_49&&)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::GetUserMediaWindowListener::NotifyChrome()::$_50>(char const*, mozilla::GetUserMediaWindowListener::NotifyChrome()::$_50&&)
Unexecuted instantiation: Unified_cpp_dom_media9.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::ReaderProxy::SetCanonicalDuration(mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*)::$_7>(char const*, mozilla::ReaderProxy::SetCanonicalDuration(mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*)::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_media9.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::TextTrack::DispatchAsyncTrustedEvent(nsTString<char16_t> const&)::$_8>(char const*, mozilla::dom::TextTrack::DispatchAsyncTrustedEvent(nsTString<char16_t> const&)::$_8&&)
Unexecuted instantiation: Unified_cpp_dom_media_doctor0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::DDMediaLogs::DispatchProcessLog(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_8>(char const*, mozilla::DDMediaLogs::DispatchProcessLog(mozilla::BaseAutoLock<mozilla::Mutex&> const&)::$_8&&)
Unexecuted instantiation: Unified_cpp_dom_media_doctor0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::DecoderDoctorLogger::EnsureLogIsEnabled()::$_9>(char const*, mozilla::DecoderDoctorLogger::EnsureLogIsEnabled()::$_9&&)
Unexecuted instantiation: Unified_cpp_dom_media_gmp0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::ChromiumCDMProxy::Init(unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_7>(char const*, mozilla::ChromiumCDMProxy::Init(unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_media_gmp0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::ChromiumCDMProxy::Shutdown()::$_8>(char const*, mozilla::ChromiumCDMProxy::Shutdown()::$_8&&)
Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::gmp::GMPServiceParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_20>(char const*, mozilla::gmp::GMPServiceParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_20&&)
Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::gmp::GMPServiceParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_20::operator()() const::{lambda()#1}>(char const*, mozilla::gmp::GMPServiceParent::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_20::operator()() const::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::gmp::GMPVideoDecoderParent::Reset()::$_21>(char const*, mozilla::gmp::GMPVideoDecoderParent::Reset()::$_21&&)
Unexecuted instantiation: RemoteVideoDecoder.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::RemoteVideoDecoder::~RemoteVideoDecoder()::$_0>(char const*, mozilla::dom::RemoteVideoDecoder::~RemoteVideoDecoder()::$_0&&)
Unexecuted instantiation: RemoteVideoDecoder.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::RemoteVideoDecoder::SetSeekThreshold(mozilla::media::TimeUnit const&)::$_8>(char const*, mozilla::dom::RemoteVideoDecoder::SetSeekThreshold(mozilla::media::TimeUnit const&)::$_8&&)
Unexecuted instantiation: RemoteVideoDecoder.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::RemoteDecoderModule::CreateVideoDecoder(mozilla::CreateDecoderParams const&)::$_9>(char const*, mozilla::dom::RemoteDecoderModule::CreateVideoDecoder(mozilla::CreateDecoderParams const&)::$_9&&)
Unexecuted instantiation: VideoDecoderChild.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::VideoDecoderChild::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_0>(char const*, mozilla::dom::VideoDecoderChild::ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason)::$_0&&)
Unexecuted instantiation: VideoDecoderManagerChild.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::VideoDecoderManagerChild::Shutdown()::$_0>(char const*, mozilla::dom::VideoDecoderManagerChild::Shutdown()::$_0&&)
Unexecuted instantiation: VideoDecoderManagerChild.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::VideoDecoderManagerChild::DeallocShmem(mozilla::ipc::Shmem&)::$_1>(char const*, mozilla::dom::VideoDecoderManagerChild::DeallocShmem(mozilla::ipc::Shmem&)::$_1&&)
Unexecuted instantiation: VideoDecoderManagerChild.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::VideoDecoderManagerChild::Readback(mozilla::layers::SurfaceDescriptorGPUVideo const&)::$_2>(char const*, mozilla::dom::VideoDecoderManagerChild::Readback(mozilla::layers::SurfaceDescriptorGPUVideo const&)::$_2&&)
Unexecuted instantiation: VideoDecoderManagerChild.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::VideoDecoderManagerChild::DeallocateSurfaceDescriptorGPUVideo(mozilla::layers::SurfaceDescriptorGPUVideo const&)::$_3>(char const*, mozilla::dom::VideoDecoderManagerChild::DeallocateSurfaceDescriptorGPUVideo(mozilla::layers::SurfaceDescriptorGPUVideo const&)::$_3&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::VideoDecoderManagerThreadHolder::~VideoDecoderManagerThreadHolder()::{lambda()#1}>(char const*, mozilla::dom::VideoDecoderManagerThreadHolder::~VideoDecoderManagerThreadHolder()::{lambda()#1}&&)
Unexecuted instantiation: VideoDecoderManagerParent.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::VideoDecoderManagerParent::StartupThreads()::$_0>(char const*, mozilla::dom::VideoDecoderManagerParent::StartupThreads()::$_0&&)
Unexecuted instantiation: VideoDecoderManagerParent.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::VideoDecoderManagerParent::ShutdownVideoBridge()::$_1>(char const*, mozilla::dom::VideoDecoderManagerParent::ShutdownVideoBridge()::$_1&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::DecodedStreamGraphListener::Forget()::{lambda()#1}>(char const*, mozilla::DecodedStreamGraphListener::Forget()::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_dom_media_mediasink0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::DecodedStream::DestroyData(mozilla::UniquePtr<mozilla::DecodedStreamData, mozilla::DefaultDelete<mozilla::DecodedStreamData> >)::$_0>(char const*, mozilla::DecodedStream::DestroyData(mozilla::UniquePtr<mozilla::DecodedStreamData, mozilla::DefaultDelete<mozilla::DecodedStreamData> >)::$_0&&)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaSourceDemuxer::AddSizeOfResources(mozilla::MediaDecoder::ResourceSizes*)::$_10>(char const*, mozilla::MediaSourceDemuxer::AddSizeOfResources(mozilla::MediaDecoder::ResourceSizes*)::$_10&&)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaSourceDemuxer::NotifyInitDataArrived()::$_11>(char const*, mozilla::MediaSourceDemuxer::NotifyInitDataArrived()::$_11&&)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaSourceTrackDemuxer::Reset()::$_13>(char const*, mozilla::MediaSourceTrackDemuxer::Reset()::$_13&&)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaSourceTrackDemuxer::BreakCycles()::$_14>(char const*, mozilla::MediaSourceTrackDemuxer::BreakCycles()::$_14&&)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::TrackBuffersManager::OnDemuxerResetDone(mozilla::MediaResult const&)::$_28>(char const*, mozilla::TrackBuffersManager::OnDemuxerResetDone(mozilla::MediaResult const&)::$_28&&)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::TrackBuffersManager::OnDemuxerInitDone(mozilla::MediaResult const&)::$_29>(char const*, mozilla::TrackBuffersManager::OnDemuxerInitDone(mozilla::MediaResult const&)::$_29&&)
Unexecuted instantiation: Unified_cpp_dom_media_ogg0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::OggDemuxer::~OggDemuxer()::$_6>(char const*, mozilla::OggDemuxer::~OggDemuxer()::$_6&&)
Unexecuted instantiation: Unified_cpp_dom_media_platforms0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::GlobalAllocPolicy::GlobalAllocPolicy()::$_0>(char const*, mozilla::GlobalAllocPolicy::GlobalAllocPolicy()::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media_platforms0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::PDMFactory::EnsureInit() const::$_4>(char const*, mozilla::PDMFactory::EnsureInit() const::$_4&&)
Unexecuted instantiation: Unified_cpp_dom_media_platforms0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaDataDecoderProxy::SetSeekThreshold(mozilla::media::TimeUnit const&)::$_36>(char const*, mozilla::MediaDataDecoderProxy::SetSeekThreshold(mozilla::media::TimeUnit const&)::$_36&&)
Unexecuted instantiation: Unified_cpp_media_platforms_omx0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::OmxDataDecoder::EmptyBufferDone(mozilla::OmxPromiseLayer::BufferData*)::$_15>(char const*, mozilla::OmxDataDecoder::EmptyBufferDone(mozilla::OmxPromiseLayer::BufferData*)::$_15&&)
Unexecuted instantiation: Unified_cpp_systemservices0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaSystemResourceManager::Init()::$_15>(char const*, mozilla::MediaSystemResourceManager::Init()::$_15&&)
Unexecuted instantiation: Unified_cpp_dom_media_webaudio0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::AudioContext::DispatchBlockedEvent()::$_3>(char const*, mozilla::dom::AudioContext::DispatchBlockedEvent()::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_media_webaudio1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaDecodeTask::OnMetadataRead(mozilla::MetadataHolder&&)::$_0>(char const*, mozilla::MediaDecodeTask::OnMetadataRead(mozilla::MetadataHolder&&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media_webaudio2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::WebAudioUtils::LogToDeveloperConsole(unsigned long, char const*)::$_0>(char const*, mozilla::dom::WebAudioUtils::LogToDeveloperConsole(unsigned long, char const*)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_media_webrtc0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaEngineRemoteVideoSource::Start(RefPtr<mozilla::AllocationHandle const> const&)::$_1>(char const*, mozilla::MediaEngineRemoteVideoSource::Start(RefPtr<mozilla::AllocationHandle const> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_media_webrtc0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::MediaEngineRemoteVideoSource::DeliverFrame(unsigned char*, mozilla::camera::VideoFrameProperties const&)::$_2>(char const*, mozilla::MediaEngineRemoteVideoSource::DeliverFrame(unsigned char*, mozilla::camera::VideoFrameProperties const&)::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::StorageActivityService::SendActivity(mozilla::ipc::PrincipalInfo const&)::$_0>(char const*, mozilla::dom::StorageActivityService::SendActivity(mozilla::ipc::PrincipalInfo const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::StorageActivityService::SendActivity(nsTSubstring<char> const&)::$_1>(char const*, mozilla::dom::StorageActivityService::SendActivity(nsTSubstring<char> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::StorageNotifierService::Broadcast(mozilla::dom::StorageEvent*, char16_t const*, bool, bool)::$_2>(char const*, mozilla::dom::StorageNotifierService::Broadcast(mozilla::dom::StorageEvent*, char16_t const*, bool, bool)::$_2&&)
Unexecuted instantiation: ContentChild.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ContentChild::Init(MessageLoop*, int, char const*, IPC::Channel*, unsigned long, bool)::$_2>(char const*, mozilla::dom::ContentChild::Init(MessageLoop*, int, char const*, IPC::Channel*, unsigned long, bool)::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_ipc1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::TabParent::SetRenderLayers(bool)::$_7>(char const*, mozilla::dom::TabParent::SetRenderLayers(bool)::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_audiochannel0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::AudioChannelService::AudioChannelWindow::NotifyMediaBlockStop(nsPIDOMWindowOuter*)::$_2>(char const*, mozilla::dom::AudioChannelService::AudioChannelWindow::NotifyMediaBlockStop(nsPIDOMWindowOuter*)::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_audiochannel0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::AudioChannelService::AudioChannelWindow::MaybeNotifyMediaBlockStart(mozilla::dom::AudioChannelAgent*)::$_3>(char const*, mozilla::dom::AudioChannelService::AudioChannelWindow::MaybeNotifyMediaBlockStart(mozilla::dom::AudioChannelAgent*)::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_url0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::URLMainThread::CreateObjectURL(mozilla::dom::GlobalObject const&, mozilla::dom::MediaSource&, nsTSubstring<char16_t>&, mozilla::ErrorResult&)::$_0>(char const*, mozilla::dom::URLMainThread::CreateObjectURL(mozilla::dom::GlobalObject const&, mozilla::dom::MediaSource&, nsTSubstring<char16_t>&, mozilla::ErrorResult&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_webauthn0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::U2FSoftTokenManager::GetOrCreateWrappingKey(std::__1::unique_ptr<PK11SlotInfoStr, mozilla::UniquePK11SlotInfoDeletePolicy> const&)::$_0>(char const*, mozilla::dom::U2FSoftTokenManager::GetOrCreateWrappingKey(std::__1::unique_ptr<PK11SlotInfoStr, mozilla::UniquePK11SlotInfoDeletePolicy> const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_webauthn0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::U2FSoftTokenManager::Sign(mozilla::dom::WebAuthnGetAssertionInfo const&)::$_1>(char const*, mozilla::dom::U2FSoftTokenManager::Sign(mozilla::dom::WebAuthnGetAssertionInfo const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::PaymentRequestParent::RespondPayment(nsIPaymentActionResponse*)::$_0>(char const*, mozilla::dom::PaymentRequestParent::RespondPayment(nsIPaymentActionResponse*)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::PaymentRequestParent::ChangeShippingAddress(nsTSubstring<char16_t> const&, nsIPaymentAddress*)::$_1>(char const*, mozilla::dom::PaymentRequestParent::ChangeShippingAddress(nsTSubstring<char16_t> const&, nsIPaymentAddress*)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::PaymentRequestParent::ChangeShippingOption(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_2>(char const*, mozilla::dom::PaymentRequestParent::ChangeShippingOption(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::PaymentRequestParent::ChangePayerDetail(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_3>(char const*, mozilla::dom::PaymentRequestParent::ChangePayerDetail(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&)::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::Register(mozilla::dom::ClientInfo const&, nsTString<char> const&, nsTString<char> const&, mozilla::dom::ServiceWorkerUpdateViaCache)::$_41>(char const*, mozilla::dom::ServiceWorkerContainerProxy::Register(mozilla::dom::ClientInfo const&, nsTString<char> const&, nsTString<char> const&, mozilla::dom::ServiceWorkerUpdateViaCache)::$_41&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::GetRegistration(mozilla::dom::ClientInfo const&, nsTString<char> const&)::$_42>(char const*, mozilla::dom::ServiceWorkerContainerProxy::GetRegistration(mozilla::dom::ClientInfo const&, nsTString<char> const&)::$_42&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::GetRegistrations(mozilla::dom::ClientInfo const&)::$_43>(char const*, mozilla::dom::ServiceWorkerContainerProxy::GetRegistrations(mozilla::dom::ClientInfo const&)::$_43&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ServiceWorkerContainerProxy::GetReady(mozilla::dom::ClientInfo const&)::$_44>(char const*, mozilla::dom::ServiceWorkerContainerProxy::GetReady(mozilla::dom::ClientInfo const&)::$_44&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ServiceWorkerImpl::GetRegistration(std::__1::function<void (mozilla::dom::ServiceWorkerRegistrationDescriptor const&)>&&, std::__1::function<void (mozilla::ErrorResult&)>&&)::$_45>(char const*, mozilla::dom::ServiceWorkerImpl::GetRegistration(std::__1::function<void (mozilla::dom::ServiceWorkerRegistrationDescriptor const&)>&&, std::__1::function<void (mozilla::ErrorResult&)>&&)::$_45&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ServiceWorkerManager::DispatchFetchEvent(nsIInterceptedChannel*, mozilla::ErrorResult&)::$_9>(char const*, mozilla::dom::ServiceWorkerManager::DispatchFetchEvent(nsIInterceptedChannel*, mozilla::ErrorResult&)::$_9&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ServiceWorkerManagerService::PropagateRegistration(unsigned long, mozilla::dom::ServiceWorkerRegistrationData&)::$_12>(char const*, mozilla::dom::ServiceWorkerManagerService::PropagateRegistration(unsigned long, mozilla::dom::ServiceWorkerRegistrationData&)::$_12&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ServiceWorkerProxy::PostMessage(RefPtr<mozilla::dom::ServiceWorkerCloneData>&&, mozilla::dom::ClientInfo const&, mozilla::dom::ClientState const&)::$_14>(char const*, mozilla::dom::ServiceWorkerProxy::PostMessage(RefPtr<mozilla::dom::ServiceWorkerCloneData>&&, mozilla::dom::ClientInfo const&, mozilla::dom::ClientState const&)::$_14&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ServiceWorkerRegistrationMainThread::UpdateState(mozilla::dom::ServiceWorkerRegistrationDescriptor const&)::$_20>(char const*, mozilla::dom::ServiceWorkerRegistrationMainThread::UpdateState(mozilla::dom::ServiceWorkerRegistrationDescriptor const&)::$_20&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ServiceWorkerRegistrationInfo::TransitionWaitingToActive()::$_0>(char const*, mozilla::dom::ServiceWorkerRegistrationInfo::TransitionWaitingToActive()::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ServiceWorkerRegistrationProxy::Unregister()::$_6>(char const*, mozilla::dom::ServiceWorkerRegistrationProxy::Unregister()::$_6&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::ServiceWorkerRegistrationProxy::Update()::$_7>(char const*, mozilla::dom::ServiceWorkerRegistrationProxy::Update()::$_7&&)
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::PresentationReconnectCallback::NotifySuccess(nsTSubstring<char16_t> const&)::$_0>(char const*, mozilla::dom::PresentationReconnectCallback::NotifySuccess(nsTSubstring<char16_t> const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::PresentationConnection::AsyncCloseConnectionWithErrorMsg(nsTSubstring<char16_t> const&)::$_1>(char const*, mozilla::dom::PresentationConnection::AsyncCloseConnectionWithErrorMsg(nsTSubstring<char16_t> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::PresentationReceiver::GetConnectionList(mozilla::ErrorResult&)::$_2>(char const*, mozilla::dom::PresentationReceiver::GetConnectionList(mozilla::ErrorResult&)::$_2&&)
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::PresentationService::UntrackSessionInfo(nsTSubstring<char16_t> const&, unsigned char)::$_3>(char const*, mozilla::dom::PresentationService::UntrackSessionInfo(nsTSubstring<char16_t> const&, unsigned char)::$_3&&)
Unexecuted instantiation: Unified_cpp_dom_presentation1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::dom::PresentationIPCService::UntrackSessionInfo(nsTSubstring<char16_t> const&, unsigned char)::$_0>(char const*, mozilla::dom::PresentationIPCService::UntrackSessionInfo(nsTSubstring<char16_t> const&, unsigned char)::$_0&&)
Unexecuted instantiation: nsBaseWidget.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsBaseWidget::AsyncEnableDragDrop(bool)::$_2>(char const*, nsBaseWidget::AsyncEnableDragDrop(bool)::$_2&&)
Unexecuted instantiation: Unified_cpp_widget_headless0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::widget::HeadlessWidget::MakeFullScreen(bool, nsIScreen*)::$_0>(char const*, mozilla::widget::HeadlessWidget::MakeFullScreen(bool, nsIScreen*)::$_0&&)
Unexecuted instantiation: Unified_cpp_layout_style2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<Gecko_StyleSheet_FinishAsyncParse::$_0>(char const*, Gecko_StyleSheet_FinishAsyncParse::$_0&&)
Unexecuted instantiation: Unified_cpp_layout_style2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<Gecko_LoadStyleSheetAsync::$_1>(char const*, Gecko_LoadStyleSheetAsync::$_1&&)
Unexecuted instantiation: Unified_cpp_docshell_shistory0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsSHEntryShared::RemoveFromBFCacheAsync()::$_0>(char const*, nsSHEntryShared::RemoveFromBFCacheAsync()::$_0&&)
Unexecuted instantiation: Unified_cpp_tools_profiler0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<NotifyObservers(char const*, nsISupports*)::$_27>(char const*, NotifyObservers(char const*, nsISupports*)::$_27&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<ActivePS::ActivePS(mozilla::BaseAutoLock<PSMutex&> const&, unsigned int, double, unsigned int, char const**, unsigned int)::{lambda()#1}>(char const*, ActivePS::ActivePS(mozilla::BaseAutoLock<PSMutex&> const&, unsigned int, double, unsigned int, char const**, unsigned int)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_tools_profiler0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TriggerPollJSSamplingOnMainThread()::$_28>(char const*, TriggerPollJSSamplingOnMainThread()::$_28&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<ActivePS::~ActivePS()::{lambda()#1}>(char const*, ActivePS::~ActivePS()::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void mozilla::RunOnAllContentParents<mozilla::DataStorage::Put(nsTString<char> const&, nsTString<char> const&, mozilla::DataStorageType)::$_0>(mozilla::DataStorage::Put(nsTString<char> const&, nsTString<char> const&, mozilla::DataStorageType)::$_0)::{lambda()#1}>(char const*, void mozilla::RunOnAllContentParents<mozilla::DataStorage::Put(nsTString<char> const&, nsTString<char> const&, mozilla::DataStorageType)::$_0>(mozilla::DataStorage::Put(nsTString<char> const&, nsTString<char> const&, mozilla::DataStorageType)::$_0)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void mozilla::RunOnAllContentParents<mozilla::DataStorage::Remove(nsTString<char> const&, mozilla::DataStorageType)::$_1>(mozilla::DataStorage::Remove(nsTString<char> const&, mozilla::DataStorageType)::$_1)::{lambda()#1}>(char const*, void mozilla::RunOnAllContentParents<mozilla::DataStorage::Remove(nsTString<char> const&, mozilla::DataStorageType)::$_1>(mozilla::DataStorage::Remove(nsTString<char> const&, mozilla::DataStorageType)::$_1)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void mozilla::RunOnAllContentParents<mozilla::DataStorage::Clear()::$_2>(mozilla::DataStorage::Clear()::$_2)::{lambda()#1}>(char const*, void mozilla::RunOnAllContentParents<mozilla::DataStorage::Clear()::$_2>(mozilla::DataStorage::Clear()::$_2)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<NSSKeyStore::Lock()::$_3>(char const*, NSSKeyStore::Lock()::$_3&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<NSSKeyStore::Unlock()::$_4>(char const*, NSSKeyStore::Unlock()::$_4&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<BackgroundUnlock(RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_5>(char const*, BackgroundUnlock(RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_5&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<OSKeyStore::AsyncUnlock(JSContext*, mozilla::dom::Promise**)::$_6>(char const*, OSKeyStore::AsyncUnlock(JSContext*, mozilla::dom::Promise**)::$_6&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<BackgroundLock(RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_7>(char const*, BackgroundLock(RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_7&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<OSKeyStore::AsyncLock(JSContext*, mozilla::dom::Promise**)::$_8>(char const*, OSKeyStore::AsyncLock(JSContext*, mozilla::dom::Promise**)::$_8&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<BackgroundGenerateSecret(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_9>(char const*, BackgroundGenerateSecret(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_9&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<OSKeyStore::AsyncGenerateSecret(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_10>(char const*, OSKeyStore::AsyncGenerateSecret(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_10&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<BackgroundSecretAvailable(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_11>(char const*, BackgroundSecretAvailable(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_11&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<OSKeyStore::AsyncSecretAvailable(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_12>(char const*, OSKeyStore::AsyncSecretAvailable(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_12&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<BackgroundRecoverSecret(nsTSubstring<char> const&, nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_13>(char const*, BackgroundRecoverSecret(nsTSubstring<char> const&, nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_13&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<OSKeyStore::AsyncRecoverSecret(nsTSubstring<char> const&, nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_14>(char const*, OSKeyStore::AsyncRecoverSecret(nsTSubstring<char> const&, nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_14&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<BackgroundDeleteSecret(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_15>(char const*, BackgroundDeleteSecret(nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_15&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<OSKeyStore::AsyncDeleteSecret(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_16>(char const*, OSKeyStore::AsyncDeleteSecret(nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_16&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<BackgroundEncryptBytes(nsTSubstring<char> const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_17>(char const*, BackgroundEncryptBytes(nsTSubstring<char> const&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_17&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<OSKeyStore::AsyncEncryptBytes(nsTSubstring<char> const&, unsigned int, unsigned char*, JSContext*, mozilla::dom::Promise**)::$_18>(char const*, OSKeyStore::AsyncEncryptBytes(nsTSubstring<char> const&, unsigned int, unsigned char*, JSContext*, mozilla::dom::Promise**)::$_18&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<BackgroundDecryptBytes(nsTSubstring<char> const&, nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_19>(char const*, BackgroundDecryptBytes(nsTSubstring<char> const&, nsTSubstring<char> const&, RefPtr<mozilla::dom::Promise>&, RefPtr<OSKeyStore>)::$_19&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<OSKeyStore::AsyncDecryptBytes(nsTSubstring<char> const&, nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_20>(char const*, OSKeyStore::AsyncDecryptBytes(nsTSubstring<char> const&, nsTSubstring<char> const&, JSContext*, mozilla::dom::Promise**)::$_20&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<BackgroundSdrEncryptStrings(nsTArray<nsTString<char> > const&, RefPtr<mozilla::dom::Promise>&)::$_0>(char const*, BackgroundSdrEncryptStrings(nsTArray<nsTString<char> > const&, RefPtr<mozilla::dom::Promise>&)::$_0&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<SecretDecoderRing::AsyncEncryptStrings(unsigned int, char16_t const**, JSContext*, mozilla::dom::Promise**)::$_1>(char const*, SecretDecoderRing::AsyncEncryptStrings(unsigned int, char16_t const**, JSContext*, mozilla::dom::Promise**)::$_1&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsCertOverrideService, &nsCertOverrideService::Init, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsCertOverrideService, &nsCertOverrideService::Init, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsSiteSecurityService, &nsSiteSecurityService::Init, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsSiteSecurityService, &nsSiteSecurityService::Init, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<CertBlocklist, &CertBlocklist::Init, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<CertBlocklist, &CertBlocklist::Init, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<OSKeyStore, (nsresult (OSKeyStore::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<OSKeyStore, (nsresult (OSKeyStore::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)0>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<EnsureNSSInitializedChromeOrContent()::$_2>(char const*, EnsureNSSInitializedChromeOrContent()::$_2&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsSSLSocketProvider, (nsresult (nsSSLSocketProvider::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsSSLSocketProvider, (nsresult (nsSSLSocketProvider::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsTLSSocketProvider, (nsresult (nsTLSSocketProvider::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsTLSSocketProvider, (nsresult (nsTLSSocketProvider::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<SecretDecoderRing, (nsresult (SecretDecoderRing::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<SecretDecoderRing, (nsresult (SecretDecoderRing::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsPK11TokenDB, (nsresult (nsPK11TokenDB::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsPK11TokenDB, (nsresult (nsPK11TokenDB::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<mozilla::psm::PKCS11ModuleDB, (nsresult (mozilla::psm::PKCS11ModuleDB::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<mozilla::psm::PKCS11ModuleDB, (nsresult (mozilla::psm::PKCS11ModuleDB::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsNSSCertificate, (nsresult (nsNSSCertificate::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsNSSCertificate, (nsresult (nsNSSCertificate::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsNSSCertificateDB, (nsresult (nsNSSCertificateDB::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsNSSCertificateDB, (nsresult (nsNSSCertificateDB::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsNSSCertList, (nsresult (nsNSSCertList::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsNSSCertList, (nsresult (nsNSSCertList::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsCertTree, (nsresult (nsCertTree::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsCertTree, (nsresult (nsCertTree::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsCryptoHash, (nsresult (nsCryptoHash::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsCryptoHash, (nsresult (nsCryptoHash::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsCryptoHMAC, (nsresult (nsCryptoHMAC::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsCryptoHMAC, (nsresult (nsCryptoHMAC::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsNTLMAuthModule, &nsNTLMAuthModule::InitTest, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsNTLMAuthModule, &nsNTLMAuthModule::InitTest, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsKeyObject, (nsresult (nsKeyObject::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsKeyObject, (nsresult (nsKeyObject::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsKeyObjectFactory, (nsresult (nsKeyObjectFactory::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsKeyObjectFactory, (nsresult (nsKeyObjectFactory::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<ContentSignatureVerifier, (nsresult (ContentSignatureVerifier::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<ContentSignatureVerifier, (nsresult (ContentSignatureVerifier::*)())0, (mozilla::psm::ProcessRestriction)0, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<nsRandomGenerator, (nsresult (nsRandomGenerator::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<nsRandomGenerator, (nsresult (nsRandomGenerator::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsresult mozilla::psm::Constructor<mozilla::psm::TransportSecurityInfo, (nsresult (mozilla::psm::TransportSecurityInfo::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}>(char const*, nsresult mozilla::psm::Constructor<mozilla::psm::TransportSecurityInfo, (nsresult (mozilla::psm::TransportSecurityInfo::*)())0, (mozilla::psm::ProcessRestriction)1, (mozilla::psm::ThreadRestriction)1>(nsISupports*, nsID const&, void**)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_ackgroundhangmonitor0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::nsHangDetails::Submit()::$_0>(char const*, mozilla::nsHangDetails::Submit()::$_0&&)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::extensions::StreamFilterParent::RecvSuspend()::$_3::operator()() const::{lambda()#1}&>(char const*, mozilla::extensions::StreamFilterParent::RecvSuspend()::$_3::operator()() const::{lambda()#1}&)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::extensions::StreamFilterParent::RecvResume()::$_4::operator()() const::{lambda()#1}&>(char const*, mozilla::extensions::StreamFilterParent::RecvResume()::$_4::operator()() const::{lambda()#1}&)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::extensions::StreamFilterParent::FinishDisconnect()::$_6::operator()() const::{lambda()#2}&>(char const*, mozilla::extensions::StreamFilterParent::FinishDisconnect()::$_6::operator()() const::{lambda()#2}&)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::extensions::StreamFilterParent::OnStartRequest(nsIRequest*, nsISupports*)::$_7&>(char const*, mozilla::extensions::StreamFilterParent::OnStartRequest(nsIRequest*, nsISupports*)::$_7&)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::extensions::StreamFilterParent::OnStartRequest(nsIRequest*, nsISupports*)::$_8&>(char const*, mozilla::extensions::StreamFilterParent::OnStartRequest(nsIRequest*, nsISupports*)::$_8&)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::extensions::StreamFilterParent::OnStopRequest(nsIRequest*, nsISupports*, nsresult)::$_9&>(char const*, mozilla::extensions::StreamFilterParent::OnStopRequest(nsIRequest*, nsISupports*, nsresult)::$_9&)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::places::History::DispatchNotifyVisited(nsIURI*, nsIDocument*)::$_8>(char const*, mozilla::places::History::DispatchNotifyVisited(nsIURI*, nsIDocument*)::$_8&&)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsNavHistory::RecalculateOriginFrecencyStats(nsIObserver*)::$_10>(char const*, nsNavHistory::RecalculateOriginFrecencyStats(nsIObserver*)::$_10&&)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsNavHistory::RecalculateOriginFrecencyStats(nsIObserver*)::$_10::operator()() const::{lambda()#1}>(char const*, nsNavHistory::RecalculateOriginFrecencyStats(nsIObserver*)::$_10::operator()() const::{lambda()#1}&&)
Unexecuted instantiation: TelemetryIPCAccumulator.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<(anonymous namespace)::DispatchIPCTimerFired()::$_1>(char const*, (anonymous namespace)::DispatchIPCTimerFired()::$_1&&)
Unexecuted instantiation: TelemetryIPCAccumulator.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<(anonymous namespace)::ArmIPCTimer(mozilla::BaseAutoLock<mozilla::AnyStaticMutex> const&)::$_0>(char const*, (anonymous namespace)::ArmIPCTimer(mozilla::BaseAutoLock<mozilla::AnyStaticMutex> const&)::$_0&&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::safebrowsing::Classifier::Reset()::$_0&>(char const*, mozilla::safebrowsing::Classifier::Reset()::$_0&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::safebrowsing::Classifier::AsyncApplyUpdates(nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> > const&, std::__1::function<void (nsresult)> const&)::$_1>(char const*, mozilla::safebrowsing::Classifier::AsyncApplyUpdates(nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> > const&, std::__1::function<void (nsresult)> const&)::$_1&&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::safebrowsing::Classifier::AsyncApplyUpdates(nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> > const&, std::__1::function<void (nsresult)> const&)::$_1::operator()() const::{lambda()#1}>(char const*, mozilla::safebrowsing::Classifier::AsyncApplyUpdates(nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> > const&, std::__1::function<void (nsresult)> const&)::$_1::operator()() const::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_3>(char const*, nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_3&&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_4>(char const*, nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_4&&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_4::operator()() const::{lambda()#1}>(char const*, nsUrlClassifierDBService::AsyncClassifyLocalWithTables(nsIURI*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIURIClassifierCallback*)::$_4::operator()() const::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsUrlClassifierDBService::LookupURI(nsIPrincipal*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIUrlClassifierCallback*, bool, bool*)::$_5>(char const*, nsUrlClassifierDBService::LookupURI(nsIPrincipal*, nsTSubstring<char> const&, nsTArray<nsTString<char> > const&, nsTArray<nsTString<char> > const&, nsIUrlClassifierCallback*, bool, bool*)::$_5&&)
Unexecuted instantiation: Unified_cpp_toolkit_profile0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<nsToolkitProfile::RemoveInternal(bool, bool)::$_0>(char const*, nsToolkitProfile::RemoveInternal(bool, bool)::$_0&&)
Unexecuted instantiation: Faulty.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<mozilla::ipc::Faulty::IsMessageNameBlacklisted(char const*)::$_0>(char const*, mozilla::ipc::Faulty::IsMessageNameBlacklisted(char const*)::$_0&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<testing::LengthInputStream::AsyncLengthWait(nsIInputStreamLengthCallback*, nsIEventTarget*)::{lambda()#1}>(char const*, testing::LengthInputStream::AsyncLengthWait(nsIInputStreamLengthCallback*, nsIEventTarget*)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<testing::AsyncStringStream::MaybeExecCallback(nsIInputStreamCallback*, nsIEventTarget*)::$_0>(char const*, testing::AsyncStringStream::MaybeExecCallback(nsIInputStreamCallback*, nsIEventTarget*)::$_0&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<MozPromise_BasicResolve_Test::TestBody()::$_18&>(char const*, MozPromise_BasicResolve_Test::TestBody()::$_18&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<MozPromise_BasicReject_Test::TestBody()::$_19&>(char const*, MozPromise_BasicReject_Test::TestBody()::$_19&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<MozPromise_BasicResolveOrRejectResolved_Test::TestBody()::$_20&>(char const*, MozPromise_BasicResolveOrRejectResolved_Test::TestBody()::$_20&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<MozPromise_BasicResolveOrRejectRejected_Test::TestBody()::$_21&>(char const*, MozPromise_BasicResolveOrRejectRejected_Test::TestBody()::$_21&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<MozPromise_AsyncResolve_Test::TestBody()::$_22&>(char const*, MozPromise_AsyncResolve_Test::TestBody()::$_22&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<MozPromise_CompletionPromises_Test::TestBody()::$_23&>(char const*, MozPromise_CompletionPromises_Test::TestBody()::$_23&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<MozPromise_PromiseAllResolve_Test::TestBody()::$_24&>(char const*, MozPromise_PromiseAllResolve_Test::TestBody()::$_24&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<MozPromise_PromiseAllReject_Test::TestBody()::$_25&>(char const*, MozPromise_PromiseAllReject_Test::TestBody()::$_25&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<MozPromise_Chaining_Test::TestBody()::$_26&>(char const*, MozPromise_Chaining_Test::TestBody()::$_26&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<MozPromise_HeterogeneousChaining_Test::TestBody()::$_30&>(char const*, MozPromise_HeterogeneousChaining_Test::TestBody()::$_30&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest2.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestStateWatching::WatchManager_Shutdown_Test::TestBody()::$_3>(char const*, TestStateWatching::WatchManager_Shutdown_Test::TestBody()::$_3&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestCopyWithNoMove&>(char const*, TestCopyWithNoMove&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestCopyWithNoMove>(char const*, TestCopyWithNoMove&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestCopyWithDeletedMove&>(char const*, TestCopyWithDeletedMove&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestMove>(char const*, TestMove&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestCopyMove>(char const*, TestCopyMove&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestNewRunnableFunction(bool)::$_19>(char const*, TestNewRunnableFunction(bool)::$_19&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestNewRunnableFunction(bool)::$_20>(char const*, TestNewRunnableFunction(bool)::$_20&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestNewRunnableFunction(bool)::$_21>(char const*, TestNewRunnableFunction(bool)::$_21&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestNewRunnableFunction(bool)::$_22>(char const*, TestNewRunnableFunction(bool)::$_22&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestNewRunnableFunction(bool)::$_23>(char const*, TestNewRunnableFunction(bool)::$_23&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestNewRunnableFunction(bool)::$_24>(char const*, TestNewRunnableFunction(bool)::$_24&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0>(char const*, TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#1}>(char const*, TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#2}>(char const*, TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#3}>(char const*, TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#3}&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#3}::operator()() const::{lambda()#1}>(char const*, TestTaskQueue::TaskQueue_EventOrder_Test::TestBody()::$_0::operator()() const::{lambda()#3}::operator()() const::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<ThreadUtils_NewNamedRunnableFunction_Test::TestBody()::$_1>(char const*, ThreadUtils_NewNamedRunnableFunction_Test::TestBody()::$_1&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#1}>(char const*, void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#2}>(char const*, void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#1}>(char const*, void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#2}>(char const*, void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_None> >(int, int, int, char const*)::{lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#1}>(char const*, void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#2}>(char const*, void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 10u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#1}>(char const*, void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#2}>(char const*, void TestMultiWriterQueueMT<mozilla::MultiWriterQueue<int, 8192u, mozilla::MultiWriterQueueReaderLocking_Mutex> >(int, int, int, char const*)::{lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<DequeWrapperST>(int, int, int, char const*)::{lambda()#1}>(char const*, void TestMultiWriterQueueMT<DequeWrapperST>(int, int, int, char const*)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<DequeWrapperST>(int, int, int, char const*)::{lambda()#2}>(char const*, void TestMultiWriterQueueMT<DequeWrapperST>(int, int, int, char const*)::{lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<DequeWrapperAW>(int, int, int, char const*)::{lambda()#1}>(char const*, void TestMultiWriterQueueMT<DequeWrapperAW>(int, int, int, char const*)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<DequeWrapperAW>(int, int, int, char const*)::{lambda()#2}>(char const*, void TestMultiWriterQueueMT<DequeWrapperAW>(int, int, int, char const*)::{lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<DequeWrapperMW>(int, int, int, char const*)::{lambda()#1}>(char const*, void TestMultiWriterQueueMT<DequeWrapperMW>(int, int, int, char const*)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<DequeWrapperMW>(int, int, int, char const*)::{lambda()#2}>(char const*, void TestMultiWriterQueueMT<DequeWrapperMW>(int, int, int, char const*)::{lambda()#2}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<DequeWrapperMT>(int, int, int, char const*)::{lambda()#1}>(char const*, void TestMultiWriterQueueMT<DequeWrapperMT>(int, int, int, char const*)::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<void TestMultiWriterQueueMT<DequeWrapperMT>(int, int, int, char const*)::{lambda()#2}>(char const*, void TestMultiWriterQueueMT<DequeWrapperMT>(int, int, int, char const*)::{lambda()#2}&&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<MP4DemuxerBinding::CheckTrackSamples(mozilla::MediaTrackDemuxer*)::{lambda()#1}&>(char const*, MP4DemuxerBinding::CheckTrackSamples(mozilla::MediaTrackDemuxer*)::{lambda()#1}&)
Unexecuted instantiation: already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<MP4DemuxerBinding::CheckTrackKeyFrame(mozilla::MediaTrackDemuxer*)::{lambda()#1}&>(char const*, MP4DemuxerBinding::CheckTrackKeyFrame(mozilla::MediaTrackDemuxer*)::{lambda()#1}&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_0>(char const*, GeckoProfiler_DifferentThreads_Test::TestBody()::$_0&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_1>(char const*, GeckoProfiler_DifferentThreads_Test::TestBody()::$_1&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_2>(char const*, GeckoProfiler_DifferentThreads_Test::TestBody()::$_2&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<GeckoProfiler_DifferentThreads_Test::TestBody()::$_3>(char const*, GeckoProfiler_DifferentThreads_Test::TestBody()::$_3&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<GeckoProfiler_StreamJSONForThisProcessThreaded_Test::TestBody()::$_4>(char const*, GeckoProfiler_StreamJSONForThisProcessThreaded_Test::TestBody()::$_4&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<GeckoProfiler_StreamJSONForThisProcessThreaded_Test::TestBody()::$_5>(char const*, GeckoProfiler_StreamJSONForThisProcessThreaded_Test::TestBody()::$_5&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<DoSuspendAndSample(int, nsIThread*)::$_6>(char const*, DoSuspendAndSample(int, nsIThread*)::$_6&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TelemetryTestFixture_NonMainThreadAdd_Test::TestBody()::$_0>(char const*, TelemetryTestFixture_NonMainThreadAdd_Test::TestBody()::$_0&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<testOpenLookupCache()::$_7>(char const*, testOpenLookupCache()::$_7&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<SyncApplyUpdates(RefPtr<mozilla::safebrowsing::Classifier>, nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> >&)::$_0>(char const*, SyncApplyUpdates(RefPtr<mozilla::safebrowsing::Classifier>, nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> >&)::$_0&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<SyncApplyUpdates(RefPtr<mozilla::safebrowsing::Classifier>, nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> >&)::$_6::operator()(nsresult) const::{lambda()#1}>(char const*, SyncApplyUpdates(RefPtr<mozilla::safebrowsing::Classifier>, nsTArray<RefPtr<mozilla::safebrowsing::TableUpdate> >&)::$_6::operator()(nsresult) const::{lambda()#1}&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<TestHasPrefix(nsTString<char> const&, bool, bool)::$_3>(char const*, TestHasPrefix(nsTString<char> const&, bool, bool)::$_3&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<UrlClassifierPerProviderDirectory_LookupCache_Test::TestBody()::$_4>(char const*, UrlClassifierPerProviderDirectory_LookupCache_Test::TestBody()::$_4&&)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:already_AddRefed<mozilla::Runnable> NS_NewRunnableFunction<UrlClassifierPerProviderDirectory_HashStore_Test::TestBody()::$_5>(char const*, UrlClassifierPerProviderDirectory_HashStore_Test::TestBody()::$_5&&)
674
675
namespace mozilla {
676
namespace detail {
677
678
template <RunnableKind Kind>
679
class TimerBehaviour
680
{
681
public:
682
0
  nsITimer* GetTimer() { return nullptr; }
683
26
  void CancelTimer() {}
mozilla::detail::TimerBehaviour<(mozilla::RunnableKind)0>::CancelTimer()
Line
Count
Source
683
26
  void CancelTimer() {}
Unexecuted instantiation: mozilla::detail::TimerBehaviour<(mozilla::RunnableKind)2>::CancelTimer()
Unexecuted instantiation: mozilla::detail::TimerBehaviour<(mozilla::RunnableKind)1>::CancelTimer()
684
685
protected:
686
13
  ~TimerBehaviour() {}
mozilla::detail::TimerBehaviour<(mozilla::RunnableKind)0>::~TimerBehaviour()
Line
Count
Source
686
13
  ~TimerBehaviour() {}
Unexecuted instantiation: mozilla::detail::TimerBehaviour<(mozilla::RunnableKind)2>::~TimerBehaviour()
Unexecuted instantiation: mozilla::detail::TimerBehaviour<(mozilla::RunnableKind)1>::~TimerBehaviour()
687
};
688
689
template <>
690
class TimerBehaviour<RunnableKind::IdleWithTimer>
691
{
692
public:
693
  nsITimer* GetTimer()
694
0
  {
695
0
    if (!mTimer) {
696
0
      mTimer = NS_NewTimer();
697
0
    }
698
0
699
0
    return mTimer;
700
0
  }
701
702
  void CancelTimer()
703
0
  {
704
0
    if (mTimer) {
705
0
      mTimer->Cancel();
706
0
    }
707
0
  }
708
709
protected:
710
  ~TimerBehaviour()
711
0
  {
712
0
    CancelTimer();
713
0
  }
714
private:
715
  nsCOMPtr<nsITimer> mTimer;
716
};
717
718
} // namespace detail
719
} // namespace mozilla
720
721
// An event that can be used to call a method on a class.  The class type must
722
// support reference counting. This event supports Revoke for use
723
// with nsRevocableEventPtr.
724
template<class ClassType,
725
         typename ReturnType = void,
726
         bool Owning = true,
727
         mozilla::RunnableKind Kind = mozilla::RunnableKind::Standard>
728
class nsRunnableMethod
729
  : public mozilla::Conditional<Kind == mozilla::RunnableKind::Standard,
730
                                mozilla::Runnable,
731
                                typename mozilla::Conditional<
732
                                  Kind == mozilla::RunnableKind::Cancelable,
733
                                  mozilla::CancelableRunnable,
734
                                  mozilla::IdleRunnable>::Type>::Type,
735
    protected mozilla::detail::TimerBehaviour<Kind>
736
{
737
  using BaseType = typename mozilla::Conditional<Kind == mozilla::RunnableKind::Standard,
738
                                                 mozilla::Runnable,
739
                                                 typename mozilla::Conditional<
740
                                                   Kind == mozilla::RunnableKind::Cancelable,
741
                                                   mozilla::CancelableRunnable,
742
                                                   mozilla::IdleRunnable>::Type>::Type;
743
public:
744
19
  nsRunnableMethod(const char* aName) : BaseType(aName) {}
nsRunnableMethod<FdWatcher, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Line
Count
Source
744
3
  nsRunnableMethod(const char* aName) : BaseType(aName) {}
Unexecuted instantiation: nsRunnableMethod<nsMemoryReporterManager, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
nsRunnableMethod<nsObserverService, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Line
Count
Source
744
3
  nsRunnableMethod(const char* aName) : BaseType(aName) {}
Unexecuted instantiation: nsRunnableMethod<mozilla::EventTargetWrapper, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::LazyIdleThread, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::LazyIdleThread, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsIBlockThreadedExecutionCallback, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsIThreadPool, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsProcess, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
nsRunnableMethod<nsIThread, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Line
Count
Source
744
3
  nsRunnableMethod(const char* aName) : BaseType(aName) {}
Unexecuted instantiation: nsRunnableMethod<mozilla::Preferences, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsStringBundleBase, nsresult, true, (mozilla::RunnableKind)2>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::BackgroundFileSaver, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::BackgroundFileSaverStreamListener, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::Dashboard, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::LookupHelper, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsAsyncStreamCopier, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsICaptivePortalService, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsInputStreamPump, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::nsPACMan, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::nsServerSocket, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::nsProtocolProxyService, nsresult, false, (mozilla::RunnableKind)1>::nsRunnableMethod(char const*)
nsRunnableMethod<mozilla::net::nsSocketTransportService, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Line
Count
Source
744
7
  nsRunnableMethod(const char* aName) : BaseType(aName) {}
Unexecuted instantiation: nsRunnableMethod<mozilla::net::nsUDPSocket, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsHostResolver, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::DNSRequestChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsCacheService, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::CacheEntry, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::CacheFileChunk, unsigned int, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::CacheFileContextEvictor, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::CacheFileHandle, unsigned int, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::CacheFileIOManager, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::CacheIndex, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::CacheObserver, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::CacheStorageService, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsAboutCache::Channel, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsFileUploadContentStream, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::FTPChannelParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::nsHttpConnectionMgr, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::AltSvcMapping, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::Http2Session, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::HttpBackgroundChannelChild, mozilla::ipc::IPCResult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::HttpBackgroundChannelParent, bool, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::HttpBaseChannel, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::HttpChannelChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::HttpChannelChild, unsigned int, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::HttpBackgroundChannelChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::HttpBaseChannel, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::HttpChannelChild, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::HttpBackgroundChannelChild, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::HttpChannelChild, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::HttpChannelParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsIInterceptedChannel, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::InterceptedHttpChannel, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::nsHttpChannel, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::nsHttpChannel, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::ExtensionJARFileOpener, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::WebSocketChannel, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::WebSocketChannel, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::net::WebSocketChannelChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsWyciwygChannel, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ContentParent, unsigned int, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:nsRunnableMethod<(anonymous namespace)::ParentImpl, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::PContentChild, bool, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::ipc::GeckoChildProcessHost, bool, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::ipc::MessageChannel, void, false, (mozilla::RunnableKind)1>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::ipc::MessageChannel, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::ipc::ProcessLink, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<IPC::Channel, bool, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::ScriptPreloader, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
nsRunnableMethod<mozilla::URLPreloader, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Line
Count
Source
744
3
  nsRunnableMethod(const char* aName) : BaseType(aName) {}
Unexecuted instantiation: nsRunnableMethod<nsJARChannel, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsJARChannel, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::storage::Connection, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::storage::Connection, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::storage::AsyncExecuteStatements, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::VideoFrameConverter, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::GenericReceiveListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::VideoSessionConduit, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsOfflineCacheUpdate, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsHtml5Parser, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::PaintThread, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::AsyncImagePipelineManager, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::CompositorBridgeParentBase, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::AsyncPanZoomController, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::GeckoContentController, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::APZCTreeManager, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::InputQueue, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::OverscrollHandoffChain, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::GestureEventListener, void, true, (mozilla::RunnableKind)1>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::ActiveElementManager, void, true, (mozilla::RunnableKind)1>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::ChromeProcessController, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::IAPZCTreeManager, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::IAPZCTreeManager, bool, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::CompositorBridgeChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::CompositorBridgeParentBase, bool, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::CompositorBridgeParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::CompositorBridgeParent, void, true, (mozilla::RunnableKind)1>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::CompositorManagerParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::CompositorVsyncScheduler, void, true, (mozilla::RunnableKind)1>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::CompositorVsyncScheduler, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::CrossProcessCompositorBridgeParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::ImageBridgeChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::ImageBridgeParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::RemoteContentController, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::LayerTransactionChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::UiCompositorControllerChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layers::UiCompositorControllerParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<GtkVsyncSource::GLXDisplay, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<SoftwareDisplay, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<SoftwareDisplay, void, true, (mozilla::RunnableKind)1>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gfx::VsyncBridgeChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gfx::VsyncBridgeParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gfx::VRDisplayHost, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gfx::impl::VRControllerOpenVR, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gfx::VRManager, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gfx::VRThread, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gfx::VRGPUParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gfx::VRManagerChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gfx::VRManagerParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gfx::VRService, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::wr::RenderThread, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::wr::RenderTextureHostWrapper, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsIWidget, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsGlobalWindowOuter, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsGlobalWindowInner, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsXBLBinding, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::EventSourceImpl, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ScreenOrientation, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsContentSink, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsIDocument, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsIDocument, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsDocument, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsRange, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsAttributeTextNode, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::cache::Context::ThreadsafeHandle, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::cache::Manager::CachePutAllAction, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::cache::ReadStream::Inner, void, true, (mozilla::RunnableKind)1>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::CanvasRenderingContext2D, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::EventListenerService, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLCanvasPrintState, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLCanvasElement, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::BlobCallback, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLEmbedElement, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLImageElement, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLInputElement, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLLinkElement, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLMediaElement::StreamSizeListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLMediaElement::ChannelLoader, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLMediaElement::StreamListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLMediaElement, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::MediaStreamTrack, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::DOMMediaStream, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLObjectElement, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLStyleElement, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::HTMLTrackElement, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ImageDocument, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::TextTrackManager, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<HTMLContentSink, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsHTMLDocument, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsJSChannel, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::BackgroundVideoDecodingPermissionObserver, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::DOMMediaStream::OwnedStreamListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::DOMMediaStream::PlaybackStreamListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaResourceCallback, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::ChannelMediaResource, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::FileBlockCache, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaDecoderStateMachine, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<mozilla::TimedMetadata>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::Canonical<double>::Impl, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractMirror<double>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractMirror<bool>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::Canonical<bool>::Impl, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaFormatReader, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractCanonical<mozilla::media::TimeIntervals>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractCanonical<mozilla::media::TimeUnit>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractCanonical<bool>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<bool>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractCanonical<double>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractMirror<mozilla::media::TimeUnit>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::Canonical<mozilla::media::TimeUnit>::Impl, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<mozilla::MediaResult>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::GetUserMediaWindowListener, bool, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::SourceListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::MediaRecorder, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::MediaRecorder::Session, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaEncoder, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AbstractMirror<mozilla::media::TimeIntervals>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::GetUserMediaWindowListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::MediaStreamTrack::PrincipalHandleListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaResource, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaTimer, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaTimer, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaFormatReader, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaEncoder::EncoderListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::AudioTrackEncoder, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::TrackEncoder, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::VideoTrackEncoder, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaEncoderListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::ChromiumCDMProxy, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gmp::ChromiumCDMChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gmp::ChromiumCDMParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gmp::GMPContentParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::GMPCrashHelper, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gmp::GeckoMediaPluginServiceParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gmp::GMPParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gmp::GMPSyncRunnable, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gmp::GMPRunnable, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gmp::GMPProcessParent, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gmp::GMPServiceParent, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gmp::GMPVideoDecoderChild, mozilla::ipc::IPCResult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::gmp::GMPVideoEncoderChild, mozilla::ipc::IPCResult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::VideoDecoderManagerParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<long>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::DecodedStreamGraphListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaStream, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaSourceDemuxer, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::TrackBuffersManager, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaSourceDecoder, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::camera::PCamerasChild, bool, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaSystemResourceManager, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::AudioDestinationNode, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::MediaDecodeTask, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<WebCore::ReverbConvolver, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::nsFakeSynthServices, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::SpeechDispatcherService, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::SpeechDispatcherCallback, bool, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::NotificationPermissionRequest, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:nsRunnableMethod<mozilla::dom::quota::(anonymous namespace)::Quota, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::quota::QuotaManager, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::LocalStorageCacheBridge, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::StorageDBThread, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::StorageDBParent::CacheParentBridge, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::StorageDBParent::UsageParentBridge, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::StorageDBParent::ObserverSink, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::SVGFEImageElement, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::SVGImageElement, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::SVGStyleElement, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::plugins::PluginInstanceChild, void, false, (mozilla::RunnableKind)1>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::plugins::FunctionBrokerChild, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::plugins::FunctionBrokerParent, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::plugins::PluginProcessParent, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: ActorsParent.cpp:nsRunnableMethod<mozilla::dom::indexedDB::(anonymous namespace)::Database, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: ActorsParent.cpp:nsRunnableMethod<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:nsRunnableMethod<mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::IDBDatabase, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ContentChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: ProcessHangMonitor.cpp:nsRunnableMethod<(anonymous namespace)::HangMonitorChild, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: ProcessHangMonitor.cpp:nsRunnableMethod<(anonymous namespace)::HangMonitorParent, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ContentBridgeChild, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ContentBridgeParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ContentParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::PreallocatedProcessManagerImpl, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ipc::WritableSharedMap, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:nsRunnableMethod<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::U2FHIDTokenManager, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::U2FTokenManager, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsBindingManager, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::XMLStylesheetProcessingInstruction, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsXMLContentSink, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsXMLPrettyPrinter, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::XULDocument, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsIWebBrowserPersistDocumentReceiver, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsIWebBrowserPersistResourceVisitor, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsIWebBrowserPersistWriteCompletion, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsWebBrowserPersist, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsWebBrowserPersist, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::XMLHttpRequestMainThread, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsThread, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsIScriptElement, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ScriptLoader, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:nsRunnableMethod<mozilla::dom::(anonymous namespace)::WaitUntilHandler, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:nsRunnableMethod<mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:nsRunnableMethod<mozilla::dom::(anonymous namespace)::PushErrorReporter, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ServiceWorkerRegistrar, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::WorkerListener, void, true, (mozilla::RunnableKind)1>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ServiceWorkerJob, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ServiceWorkerProxy, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ServiceWorkerRegistration, void, true, (mozilla::RunnableKind)1>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ServiceWorkerRegistrationMainThread, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::WorkerListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ServiceWorkerRegistrationInfo, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::ServiceWorkerRegistrationProxy, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:nsRunnableMethod<mozilla::dom::(anonymous namespace)::Connection, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:nsRunnableMethod<mozilla::dom::(anonymous namespace)::OpenOp, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsISDBCallback, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::PresentationAvailability, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::PresentationConnection, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::PresentationDeviceManager, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::PresentationRequest, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::PresentationControllingInfo, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsIPresentationSessionTransportBuilderListener, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::PresentationTCPSessionTransport, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::presentation::MulticastDNSDeviceProvider, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::CompositorVsyncDispatcher, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::RefreshTimerVsyncDispatcher, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsWindow, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsDeviceContextSpecGTK, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::HTMLEditRules, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::HTMLEditor, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::dom::FontFaceSet, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsRefreshDriver, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::PresShell, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<ZoomConstraintsClient, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsPresContext, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsIDateTimeInputArea, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::layout::VsyncParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsDocShell, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::ChildProfilerController, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::DataStorage, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::psm::PSMContentStreamListener, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::extensions::StreamFilter, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::extensions::StreamFilterParent, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::ipc::IToplevelProtocol, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:nsRunnableMethod<mozilla::places::(anonymous namespace)::VisitedQuery, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::places::Database, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::places::AsyncFetchAndSetIconForPage, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::places::AsyncReplaceFaviconData, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsNavHistory, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsUrlClassifierDBServiceWorker, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsUrlClassifierDBServiceWorker, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsFormFillController, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsNativeAppSupportUnix, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsUpdateProcessor, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsBar, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsBar, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<IdleObject, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<IdleObject, void, true, (mozilla::RunnableKind)3>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<nsFoo, nsresult, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<IdleObject, void, true, (mozilla::RunnableKind)2>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<IdleObjectWithoutSetDeadline, void, true, (mozilla::RunnableKind)2>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<IdleObjectInheritedSetDeadline, void, true, (mozilla::RunnableKind)2>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<TestThreadUtils::ThreadUtilsObject, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<TestThreadUtils::ThreadUtilsObjectNonRefCountedBase, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<CDMStorageTest, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<GMPTestMonitor, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<GMPTestRunner, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<GMPRemoveTest, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<GMPVideoDecoderProxy, nsresult, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<GMPVideoDecoderProxy, void, false, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<int>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<SomeEvent>, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
Unexecuted instantiation: nsRunnableMethod<mozilla::detail::Listener<RefPtr<RefCounter> >, void, true, (mozilla::RunnableKind)0>::nsRunnableMethod(char const*)
745
746
  virtual void Revoke() = 0;
747
748
  // These ReturnTypeEnforcer classes set up a blacklist for return types that
749
  // we know are not safe. The default ReturnTypeEnforcer compiles just fine but
750
  // already_AddRefed will not.
751
  template<typename OtherReturnType>
752
  class ReturnTypeEnforcer
753
  {
754
  public:
755
    typedef int ReturnTypeIsSafe;
756
  };
757
758
  template<class T>
759
  class ReturnTypeEnforcer<already_AddRefed<T>>
760
  {
761
    // No ReturnTypeIsSafe makes this illegal!
762
  };
763
764
  // Make sure this return type is safe.
765
  typedef typename ReturnTypeEnforcer<ReturnType>::ReturnTypeIsSafe check;
766
};
767
768
template<class ClassType, bool Owning>
769
struct nsRunnableMethodReceiver
770
{
771
  RefPtr<ClassType> mObj;
772
19
  explicit nsRunnableMethodReceiver(ClassType* aObj) : mObj(aObj) {}
nsRunnableMethodReceiver<FdWatcher, true>::nsRunnableMethodReceiver(FdWatcher*)
Line
Count
Source
772
3
  explicit nsRunnableMethodReceiver(ClassType* aObj) : mObj(aObj) {}
Unexecuted instantiation: nsRunnableMethodReceiver<nsMemoryReporterManager, true>::nsRunnableMethodReceiver(nsMemoryReporterManager*)
nsRunnableMethodReceiver<nsObserverService, true>::nsRunnableMethodReceiver(nsObserverService*)
Line
Count
Source
772
3
  explicit nsRunnableMethodReceiver(ClassType* aObj) : mObj(aObj) {}
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::EventTargetWrapper, true>::nsRunnableMethodReceiver(mozilla::EventTargetWrapper*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::LazyIdleThread, true>::nsRunnableMethodReceiver(mozilla::LazyIdleThread*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsIBlockThreadedExecutionCallback, true>::nsRunnableMethodReceiver(nsIBlockThreadedExecutionCallback*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsIThreadPool, true>::nsRunnableMethodReceiver(nsIThreadPool*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsProcess, true>::nsRunnableMethodReceiver(nsProcess*)
nsRunnableMethodReceiver<nsIThread, true>::nsRunnableMethodReceiver(nsIThread*)
Line
Count
Source
772
3
  explicit nsRunnableMethodReceiver(ClassType* aObj) : mObj(aObj) {}
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Preferences, true>::nsRunnableMethodReceiver(mozilla::Preferences*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsStringBundleBase, true>::nsRunnableMethodReceiver(nsStringBundleBase*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::BackgroundFileSaver, true>::nsRunnableMethodReceiver(mozilla::net::BackgroundFileSaver*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::BackgroundFileSaverStreamListener, true>::nsRunnableMethodReceiver(mozilla::net::BackgroundFileSaverStreamListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::Dashboard, true>::nsRunnableMethodReceiver(mozilla::net::Dashboard*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::LookupHelper, true>::nsRunnableMethodReceiver(mozilla::net::LookupHelper*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsAsyncStreamCopier, true>::nsRunnableMethodReceiver(nsAsyncStreamCopier*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsICaptivePortalService, true>::nsRunnableMethodReceiver(nsICaptivePortalService*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsInputStreamPump, true>::nsRunnableMethodReceiver(nsInputStreamPump*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsPACMan, true>::nsRunnableMethodReceiver(mozilla::net::nsPACMan*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsServerSocket, true>::nsRunnableMethodReceiver(mozilla::net::nsServerSocket*)
nsRunnableMethodReceiver<mozilla::net::nsSocketTransportService, true>::nsRunnableMethodReceiver(mozilla::net::nsSocketTransportService*)
Line
Count
Source
772
7
  explicit nsRunnableMethodReceiver(ClassType* aObj) : mObj(aObj) {}
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsUDPSocket, true>::nsRunnableMethodReceiver(mozilla::net::nsUDPSocket*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsHostResolver, true>::nsRunnableMethodReceiver(nsHostResolver*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::DNSRequestChild, true>::nsRunnableMethodReceiver(mozilla::net::DNSRequestChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsCacheService, true>::nsRunnableMethodReceiver(nsCacheService*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheEntry, true>::nsRunnableMethodReceiver(mozilla::net::CacheEntry*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileContextEvictor, true>::nsRunnableMethodReceiver(mozilla::net::CacheFileContextEvictor*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileIOManager, true>::nsRunnableMethodReceiver(mozilla::net::CacheFileIOManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheIndex, true>::nsRunnableMethodReceiver(mozilla::net::CacheIndex*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheObserver, true>::nsRunnableMethodReceiver(mozilla::net::CacheObserver*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheStorageService, true>::nsRunnableMethodReceiver(mozilla::net::CacheStorageService*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsAboutCache::Channel, true>::nsRunnableMethodReceiver(nsAboutCache::Channel*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsFileUploadContentStream, true>::nsRunnableMethodReceiver(nsFileUploadContentStream*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::FTPChannelParent, true>::nsRunnableMethodReceiver(mozilla::net::FTPChannelParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsHttpConnectionMgr, true>::nsRunnableMethodReceiver(mozilla::net::nsHttpConnectionMgr*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::AltSvcMapping, true>::nsRunnableMethodReceiver(mozilla::net::AltSvcMapping*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::Http2Session, true>::nsRunnableMethodReceiver(mozilla::net::Http2Session*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpBackgroundChannelChild, true>::nsRunnableMethodReceiver(mozilla::net::HttpBackgroundChannelChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpBackgroundChannelParent, true>::nsRunnableMethodReceiver(mozilla::net::HttpBackgroundChannelParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpBaseChannel, true>::nsRunnableMethodReceiver(mozilla::net::HttpBaseChannel*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpChannelChild, true>::nsRunnableMethodReceiver(mozilla::net::HttpChannelChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpChannelParent, true>::nsRunnableMethodReceiver(mozilla::net::HttpChannelParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsIInterceptedChannel, true>::nsRunnableMethodReceiver(nsIInterceptedChannel*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::InterceptedHttpChannel, true>::nsRunnableMethodReceiver(mozilla::net::InterceptedHttpChannel*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsHttpChannel, true>::nsRunnableMethodReceiver(mozilla::net::nsHttpChannel*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::ExtensionJARFileOpener, true>::nsRunnableMethodReceiver(mozilla::net::ExtensionJARFileOpener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::WebSocketChannel, true>::nsRunnableMethodReceiver(mozilla::net::WebSocketChannel*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::WebSocketChannelChild, true>::nsRunnableMethodReceiver(mozilla::net::WebSocketChannelChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsWyciwygChannel, true>::nsRunnableMethodReceiver(nsWyciwygChannel*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentChild, true>::nsRunnableMethodReceiver(mozilla::dom::ContentChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ScriptPreloader, true>::nsRunnableMethodReceiver(mozilla::ScriptPreloader*)
nsRunnableMethodReceiver<mozilla::URLPreloader, true>::nsRunnableMethodReceiver(mozilla::URLPreloader*)
Line
Count
Source
772
3
  explicit nsRunnableMethodReceiver(ClassType* aObj) : mObj(aObj) {}
Unexecuted instantiation: nsRunnableMethodReceiver<nsJARChannel, true>::nsRunnableMethodReceiver(nsJARChannel*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::storage::Connection, true>::nsRunnableMethodReceiver(mozilla::storage::Connection*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::storage::AsyncExecuteStatements, true>::nsRunnableMethodReceiver(mozilla::storage::AsyncExecuteStatements*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VideoFrameConverter, true>::nsRunnableMethodReceiver(mozilla::VideoFrameConverter*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::GenericReceiveListener, true>::nsRunnableMethodReceiver(mozilla::GenericReceiveListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VideoSessionConduit, true>::nsRunnableMethodReceiver(mozilla::VideoSessionConduit*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsOfflineCacheUpdate, true>::nsRunnableMethodReceiver(nsOfflineCacheUpdate*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsHtml5Parser, true>::nsRunnableMethodReceiver(nsHtml5Parser*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::PaintThread, true>::nsRunnableMethodReceiver(mozilla::layers::PaintThread*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::AsyncImagePipelineManager, true>::nsRunnableMethodReceiver(mozilla::layers::AsyncImagePipelineManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorBridgeParentBase, true>::nsRunnableMethodReceiver(mozilla::layers::CompositorBridgeParentBase*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::AsyncPanZoomController, true>::nsRunnableMethodReceiver(mozilla::layers::AsyncPanZoomController*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::GeckoContentController, true>::nsRunnableMethodReceiver(mozilla::layers::GeckoContentController*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::APZCTreeManager, true>::nsRunnableMethodReceiver(mozilla::layers::APZCTreeManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::InputQueue, true>::nsRunnableMethodReceiver(mozilla::layers::InputQueue*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::OverscrollHandoffChain const, true>::nsRunnableMethodReceiver(mozilla::layers::OverscrollHandoffChain const*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::GestureEventListener, true>::nsRunnableMethodReceiver(mozilla::layers::GestureEventListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ActiveElementManager, true>::nsRunnableMethodReceiver(mozilla::layers::ActiveElementManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ChromeProcessController, true>::nsRunnableMethodReceiver(mozilla::layers::ChromeProcessController*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::IAPZCTreeManager, true>::nsRunnableMethodReceiver(mozilla::layers::IAPZCTreeManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorBridgeChild, true>::nsRunnableMethodReceiver(mozilla::layers::CompositorBridgeChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorBridgeParent, true>::nsRunnableMethodReceiver(mozilla::layers::CompositorBridgeParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorManagerParent, true>::nsRunnableMethodReceiver(mozilla::layers::CompositorManagerParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorVsyncScheduler, true>::nsRunnableMethodReceiver(mozilla::layers::CompositorVsyncScheduler*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CrossProcessCompositorBridgeParent, true>::nsRunnableMethodReceiver(mozilla::layers::CrossProcessCompositorBridgeParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ImageBridgeChild, true>::nsRunnableMethodReceiver(mozilla::layers::ImageBridgeChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ImageBridgeParent, true>::nsRunnableMethodReceiver(mozilla::layers::ImageBridgeParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::RemoteContentController, true>::nsRunnableMethodReceiver(mozilla::layers::RemoteContentController*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::LayerTransactionChild, true>::nsRunnableMethodReceiver(mozilla::layers::LayerTransactionChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::UiCompositorControllerChild, true>::nsRunnableMethodReceiver(mozilla::layers::UiCompositorControllerChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::UiCompositorControllerParent, true>::nsRunnableMethodReceiver(mozilla::layers::UiCompositorControllerParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<GtkVsyncSource::GLXDisplay, true>::nsRunnableMethodReceiver(GtkVsyncSource::GLXDisplay*)
Unexecuted instantiation: nsRunnableMethodReceiver<SoftwareDisplay, true>::nsRunnableMethodReceiver(SoftwareDisplay*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VsyncBridgeChild, true>::nsRunnableMethodReceiver(mozilla::gfx::VsyncBridgeChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VsyncBridgeParent, true>::nsRunnableMethodReceiver(mozilla::gfx::VsyncBridgeParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRDisplayHost, true>::nsRunnableMethodReceiver(mozilla::gfx::VRDisplayHost*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::impl::VRControllerOpenVR, true>::nsRunnableMethodReceiver(mozilla::gfx::impl::VRControllerOpenVR*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRManager, true>::nsRunnableMethodReceiver(mozilla::gfx::VRManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRThread, true>::nsRunnableMethodReceiver(mozilla::gfx::VRThread*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRGPUParent, true>::nsRunnableMethodReceiver(mozilla::gfx::VRGPUParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRManagerChild, true>::nsRunnableMethodReceiver(mozilla::gfx::VRManagerChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRManagerParent, true>::nsRunnableMethodReceiver(mozilla::gfx::VRManagerParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRService, true>::nsRunnableMethodReceiver(mozilla::gfx::VRService*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::wr::RenderThread, true>::nsRunnableMethodReceiver(mozilla::wr::RenderThread*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::wr::RenderTextureHostWrapper, true>::nsRunnableMethodReceiver(mozilla::wr::RenderTextureHostWrapper*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWidget, true>::nsRunnableMethodReceiver(nsIWidget*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsGlobalWindowOuter, true>::nsRunnableMethodReceiver(nsGlobalWindowOuter*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsGlobalWindowInner, true>::nsRunnableMethodReceiver(nsGlobalWindowInner*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsXBLBinding, true>::nsRunnableMethodReceiver(nsXBLBinding*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::EventSourceImpl, true>::nsRunnableMethodReceiver(mozilla::dom::EventSourceImpl*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ScreenOrientation, true>::nsRunnableMethodReceiver(mozilla::dom::ScreenOrientation*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsIDocument, true>::nsRunnableMethodReceiver(nsIDocument*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsDocument, true>::nsRunnableMethodReceiver(nsDocument*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsRange, true>::nsRunnableMethodReceiver(nsRange*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsAttributeTextNode, true>::nsRunnableMethodReceiver(nsAttributeTextNode*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::cache::Context::ThreadsafeHandle, true>::nsRunnableMethodReceiver(mozilla::dom::cache::Context::ThreadsafeHandle*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::cache::ReadStream::Inner, true>::nsRunnableMethodReceiver(mozilla::dom::cache::ReadStream::Inner*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::CanvasRenderingContext2D, true>::nsRunnableMethodReceiver(mozilla::dom::CanvasRenderingContext2D*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::EventListenerService, true>::nsRunnableMethodReceiver(mozilla::EventListenerService*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLCanvasPrintState, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLCanvasPrintState*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLCanvasElement, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLCanvasElement*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::BlobCallback, true>::nsRunnableMethodReceiver(mozilla::dom::BlobCallback*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLEmbedElement, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLEmbedElement*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLImageElement, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLImageElement*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLInputElement, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLInputElement*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLLinkElement, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLLinkElement*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement::StreamSizeListener, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLMediaElement::StreamSizeListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement::ChannelLoader, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLMediaElement::ChannelLoader*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement::StreamListener, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLMediaElement::StreamListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLMediaElement*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaStreamTrack, true>::nsRunnableMethodReceiver(mozilla::dom::MediaStreamTrack*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DOMMediaStream, true>::nsRunnableMethodReceiver(mozilla::DOMMediaStream*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher, true>::nsRunnableMethodReceiver(mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLObjectElement, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLObjectElement*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLStyleElement, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLStyleElement*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLTrackElement, true>::nsRunnableMethodReceiver(mozilla::dom::HTMLTrackElement*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ImageDocument, true>::nsRunnableMethodReceiver(mozilla::dom::ImageDocument*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::TextTrackManager, true>::nsRunnableMethodReceiver(mozilla::dom::TextTrackManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<HTMLContentSink, true>::nsRunnableMethodReceiver(HTMLContentSink*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsHTMLDocument, true>::nsRunnableMethodReceiver(nsHTMLDocument*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsJSChannel, true>::nsRunnableMethodReceiver(nsJSChannel*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::BackgroundVideoDecodingPermissionObserver const, true>::nsRunnableMethodReceiver(mozilla::BackgroundVideoDecodingPermissionObserver const*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DOMMediaStream::OwnedStreamListener, true>::nsRunnableMethodReceiver(mozilla::DOMMediaStream::OwnedStreamListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DOMMediaStream::PlaybackStreamListener, true>::nsRunnableMethodReceiver(mozilla::DOMMediaStream::PlaybackStreamListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaResourceCallback, true>::nsRunnableMethodReceiver(mozilla::MediaResourceCallback*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ChannelMediaResource, true>::nsRunnableMethodReceiver(mozilla::ChannelMediaResource*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::FileBlockCache, true>::nsRunnableMethodReceiver(mozilla::FileBlockCache*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaDecoderStateMachine, true>::nsRunnableMethodReceiver(mozilla::MediaDecoderStateMachine*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::TimedMetadata>, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<mozilla::TimedMetadata>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<double>::Impl, true>::nsRunnableMethodReceiver(mozilla::Canonical<double>::Impl*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<double>, true>::nsRunnableMethodReceiver(mozilla::AbstractMirror<double>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<bool>, true>::nsRunnableMethodReceiver(mozilla::AbstractMirror<bool>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>, true>::nsRunnableMethodReceiver(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >, true>::nsRunnableMethodReceiver(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher, true>::nsRunnableMethodReceiver(mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<bool>::Impl, true>::nsRunnableMethodReceiver(mozilla::Canonical<bool>::Impl*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl, true>::nsRunnableMethodReceiver(mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl, true>::nsRunnableMethodReceiver(mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaFormatReader, true>::nsRunnableMethodReceiver(mozilla::MediaFormatReader*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >, true>::nsRunnableMethodReceiver(mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::media::TimeIntervals>, true>::nsRunnableMethodReceiver(mozilla::AbstractCanonical<mozilla::media::TimeIntervals>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::media::TimeUnit>, true>::nsRunnableMethodReceiver(mozilla::AbstractCanonical<mozilla::media::TimeUnit>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<bool>, true>::nsRunnableMethodReceiver(mozilla::AbstractCanonical<bool>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<bool>, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<bool>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl, true>::nsRunnableMethodReceiver(mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >, true>::nsRunnableMethodReceiver(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>, true>::nsRunnableMethodReceiver(mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<double>, true>::nsRunnableMethodReceiver(mozilla::AbstractCanonical<double>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >, true>::nsRunnableMethodReceiver(mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::media::TimeUnit>, true>::nsRunnableMethodReceiver(mozilla::AbstractMirror<mozilla::media::TimeUnit>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher, true>::nsRunnableMethodReceiver(mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::media::TimeUnit>::Impl, true>::nsRunnableMethodReceiver(mozilla::Canonical<mozilla::media::TimeUnit>::Impl*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::MediaResult>, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<mozilla::MediaResult>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::GetUserMediaWindowListener, true>::nsRunnableMethodReceiver(mozilla::GetUserMediaWindowListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::SourceListener, true>::nsRunnableMethodReceiver(mozilla::SourceListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaRecorder, true>::nsRunnableMethodReceiver(mozilla::dom::MediaRecorder*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaRecorder::Session, true>::nsRunnableMethodReceiver(mozilla::dom::MediaRecorder::Session*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaEncoder, true>::nsRunnableMethodReceiver(mozilla::MediaEncoder*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::media::TimeIntervals>, true>::nsRunnableMethodReceiver(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl, true>::nsRunnableMethodReceiver(mozilla::Canonical<mozilla::media::TimeIntervals>::Impl*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaStreamTrack::PrincipalHandleListener, true>::nsRunnableMethodReceiver(mozilla::dom::MediaStreamTrack::PrincipalHandleListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaTimer, true>::nsRunnableMethodReceiver(mozilla::MediaTimer*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher, true>::nsRunnableMethodReceiver(mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher, true>::nsRunnableMethodReceiver(mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaEncoder::EncoderListener, true>::nsRunnableMethodReceiver(mozilla::MediaEncoder::EncoderListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AudioTrackEncoder, true>::nsRunnableMethodReceiver(mozilla::AudioTrackEncoder*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VideoTrackEncoder, true>::nsRunnableMethodReceiver(mozilla::VideoTrackEncoder*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaEncoderListener, true>::nsRunnableMethodReceiver(mozilla::MediaEncoderListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ChromiumCDMProxy, true>::nsRunnableMethodReceiver(mozilla::ChromiumCDMProxy*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::ChromiumCDMChild, true>::nsRunnableMethodReceiver(mozilla::gmp::ChromiumCDMChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::ChromiumCDMParent, true>::nsRunnableMethodReceiver(mozilla::gmp::ChromiumCDMParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPContentParent, true>::nsRunnableMethodReceiver(mozilla::gmp::GMPContentParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GeckoMediaPluginServiceParent, true>::nsRunnableMethodReceiver(mozilla::gmp::GeckoMediaPluginServiceParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPParent, true>::nsRunnableMethodReceiver(mozilla::gmp::GMPParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPSyncRunnable, true>::nsRunnableMethodReceiver(mozilla::gmp::GMPSyncRunnable*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPRunnable, true>::nsRunnableMethodReceiver(mozilla::gmp::GMPRunnable*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPVideoDecoderChild, true>::nsRunnableMethodReceiver(mozilla::gmp::GMPVideoDecoderChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPVideoEncoderChild, true>::nsRunnableMethodReceiver(mozilla::gmp::GMPVideoEncoderChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::VideoDecoderManagerParent, true>::nsRunnableMethodReceiver(mozilla::dom::VideoDecoderManagerParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<long>, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<long>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DecodedStreamGraphListener, true>::nsRunnableMethodReceiver(mozilla::DecodedStreamGraphListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaStream, true>::nsRunnableMethodReceiver(mozilla::MediaStream*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaSourceDemuxer, true>::nsRunnableMethodReceiver(mozilla::MediaSourceDemuxer*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::TrackBuffersManager, true>::nsRunnableMethodReceiver(mozilla::TrackBuffersManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaSourceDecoder, true>::nsRunnableMethodReceiver(mozilla::MediaSourceDecoder*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher, true>::nsRunnableMethodReceiver(mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::camera::CamerasChild, true>::nsRunnableMethodReceiver(mozilla::camera::CamerasChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaSystemResourceManager, true>::nsRunnableMethodReceiver(mozilla::MediaSystemResourceManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::AudioDestinationNode, true>::nsRunnableMethodReceiver(mozilla::dom::AudioDestinationNode*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaDecodeTask, true>::nsRunnableMethodReceiver(mozilla::MediaDecodeTask*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::nsFakeSynthServices, true>::nsRunnableMethodReceiver(mozilla::dom::nsFakeSynthServices*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SpeechDispatcherService, true>::nsRunnableMethodReceiver(mozilla::dom::SpeechDispatcherService*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SpeechDispatcherCallback, true>::nsRunnableMethodReceiver(mozilla::dom::SpeechDispatcherCallback*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::NotificationPermissionRequest, true>::nsRunnableMethodReceiver(mozilla::dom::NotificationPermissionRequest*)
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:nsRunnableMethodReceiver<mozilla::dom::quota::(anonymous namespace)::Quota, true>::nsRunnableMethodReceiver(mozilla::dom::quota::(anonymous namespace)::Quota*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::quota::QuotaManager, true>::nsRunnableMethodReceiver(mozilla::dom::quota::QuotaManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBParent::ObserverSink, true>::nsRunnableMethodReceiver(mozilla::dom::StorageDBParent::ObserverSink*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SVGFEImageElement, true>::nsRunnableMethodReceiver(mozilla::dom::SVGFEImageElement*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SVGImageElement, true>::nsRunnableMethodReceiver(mozilla::dom::SVGImageElement*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SVGStyleElement, true>::nsRunnableMethodReceiver(mozilla::dom::SVGStyleElement*)
Unexecuted instantiation: ActorsParent.cpp:nsRunnableMethodReceiver<mozilla::dom::indexedDB::(anonymous namespace)::Database, true>::nsRunnableMethodReceiver(mozilla::dom::indexedDB::(anonymous namespace)::Database*)
Unexecuted instantiation: ActorsParent.cpp:nsRunnableMethodReceiver<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp, true>::nsRunnableMethodReceiver(mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::IDBDatabase, true>::nsRunnableMethodReceiver(mozilla::dom::IDBDatabase*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentBridgeChild, true>::nsRunnableMethodReceiver(mozilla::dom::ContentBridgeChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentBridgeParent, true>::nsRunnableMethodReceiver(mozilla::dom::ContentBridgeParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentParent, true>::nsRunnableMethodReceiver(mozilla::dom::ContentParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::PreallocatedProcessManagerImpl, true>::nsRunnableMethodReceiver(mozilla::PreallocatedProcessManagerImpl*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ipc::WritableSharedMap, true>::nsRunnableMethodReceiver(mozilla::dom::ipc::WritableSharedMap*)
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable, true>::nsRunnableMethodReceiver(mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::U2FHIDTokenManager, true>::nsRunnableMethodReceiver(mozilla::dom::U2FHIDTokenManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::U2FTokenManager, true>::nsRunnableMethodReceiver(mozilla::dom::U2FTokenManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsBindingManager, true>::nsRunnableMethodReceiver(nsBindingManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::XMLStylesheetProcessingInstruction, true>::nsRunnableMethodReceiver(mozilla::dom::XMLStylesheetProcessingInstruction*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsXMLContentSink, true>::nsRunnableMethodReceiver(nsXMLContentSink*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsXMLPrettyPrinter, true>::nsRunnableMethodReceiver(nsXMLPrettyPrinter*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::XULDocument, true>::nsRunnableMethodReceiver(mozilla::dom::XULDocument*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWebBrowserPersistDocumentReceiver, true>::nsRunnableMethodReceiver(nsIWebBrowserPersistDocumentReceiver*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWebBrowserPersistResourceVisitor, true>::nsRunnableMethodReceiver(nsIWebBrowserPersistResourceVisitor*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWebBrowserPersistWriteCompletion, true>::nsRunnableMethodReceiver(nsIWebBrowserPersistWriteCompletion*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsWebBrowserPersist, true>::nsRunnableMethodReceiver(nsWebBrowserPersist*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::XMLHttpRequestMainThread, true>::nsRunnableMethodReceiver(mozilla::dom::XMLHttpRequestMainThread*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::WorkletThread, true>::nsRunnableMethodReceiver(mozilla::dom::WorkletThread*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsIScriptElement, true>::nsRunnableMethodReceiver(nsIScriptElement*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ScriptLoader, true>::nsRunnableMethodReceiver(mozilla::dom::ScriptLoader*)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::WaitUntilHandler, true>::nsRunnableMethodReceiver(mozilla::dom::(anonymous namespace)::WaitUntilHandler*)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback, true>::nsRunnableMethodReceiver(mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback*)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::PushErrorReporter, true>::nsRunnableMethodReceiver(mozilla::dom::(anonymous namespace)::PushErrorReporter*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrar, true>::nsRunnableMethodReceiver(mozilla::dom::ServiceWorkerRegistrar*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::WorkerListener, true>::nsRunnableMethodReceiver(mozilla::dom::WorkerListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerJob, true>::nsRunnableMethodReceiver(mozilla::dom::ServiceWorkerJob*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerProxy, true>::nsRunnableMethodReceiver(mozilla::dom::ServiceWorkerProxy*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistration, true>::nsRunnableMethodReceiver(mozilla::dom::ServiceWorkerRegistration*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrationMainThread, true>::nsRunnableMethodReceiver(mozilla::dom::ServiceWorkerRegistrationMainThread*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrationInfo, true>::nsRunnableMethodReceiver(mozilla::dom::ServiceWorkerRegistrationInfo*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrationProxy, true>::nsRunnableMethodReceiver(mozilla::dom::ServiceWorkerRegistrationProxy*)
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::Connection, true>::nsRunnableMethodReceiver(mozilla::dom::(anonymous namespace)::Connection*)
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::OpenOp, true>::nsRunnableMethodReceiver(mozilla::dom::(anonymous namespace)::OpenOp*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsISDBCallback, true>::nsRunnableMethodReceiver(nsISDBCallback*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationAvailability, true>::nsRunnableMethodReceiver(mozilla::dom::PresentationAvailability*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationConnection, true>::nsRunnableMethodReceiver(mozilla::dom::PresentationConnection*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationDeviceManager, true>::nsRunnableMethodReceiver(mozilla::dom::PresentationDeviceManager*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationRequest, true>::nsRunnableMethodReceiver(mozilla::dom::PresentationRequest*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationControllingInfo, true>::nsRunnableMethodReceiver(mozilla::dom::PresentationControllingInfo*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsIPresentationSessionTransportBuilderListener, true>::nsRunnableMethodReceiver(nsIPresentationSessionTransportBuilderListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationTCPSessionTransport, true>::nsRunnableMethodReceiver(mozilla::dom::PresentationTCPSessionTransport*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::presentation::MulticastDNSDeviceProvider, true>::nsRunnableMethodReceiver(mozilla::dom::presentation::MulticastDNSDeviceProvider*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::CompositorVsyncDispatcher, true>::nsRunnableMethodReceiver(mozilla::CompositorVsyncDispatcher*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::RefreshTimerVsyncDispatcher, true>::nsRunnableMethodReceiver(mozilla::RefreshTimerVsyncDispatcher*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsWindow, true>::nsRunnableMethodReceiver(nsWindow*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsDeviceContextSpecGTK, true>::nsRunnableMethodReceiver(nsDeviceContextSpecGTK*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::HTMLEditRules, true>::nsRunnableMethodReceiver(mozilla::HTMLEditRules*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::HTMLEditor, true>::nsRunnableMethodReceiver(mozilla::HTMLEditor*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::FontFaceSet, true>::nsRunnableMethodReceiver(mozilla::dom::FontFaceSet*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver, true>::nsRunnableMethodReceiver(mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsRefreshDriver, true>::nsRunnableMethodReceiver(nsRefreshDriver*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::PresShell, true>::nsRunnableMethodReceiver(mozilla::PresShell*)
Unexecuted instantiation: nsRunnableMethodReceiver<ZoomConstraintsClient, true>::nsRunnableMethodReceiver(ZoomConstraintsClient*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsPresContext, true>::nsRunnableMethodReceiver(nsPresContext*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsIDateTimeInputArea, true>::nsRunnableMethodReceiver(nsIDateTimeInputArea*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layout::VsyncParent, true>::nsRunnableMethodReceiver(mozilla::layout::VsyncParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsDocShell, true>::nsRunnableMethodReceiver(nsDocShell*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ChildProfilerController, true>::nsRunnableMethodReceiver(mozilla::ChildProfilerController*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DataStorage, true>::nsRunnableMethodReceiver(mozilla::DataStorage*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::psm::PSMContentStreamListener, true>::nsRunnableMethodReceiver(mozilla::psm::PSMContentStreamListener*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::extensions::StreamFilter, true>::nsRunnableMethodReceiver(mozilla::extensions::StreamFilter*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::extensions::StreamFilterParent, true>::nsRunnableMethodReceiver(mozilla::extensions::StreamFilterParent*)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:nsRunnableMethodReceiver<mozilla::places::(anonymous namespace)::VisitedQuery, true>::nsRunnableMethodReceiver(mozilla::places::(anonymous namespace)::VisitedQuery*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::places::Database, true>::nsRunnableMethodReceiver(mozilla::places::Database*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::places::AsyncFetchAndSetIconForPage, true>::nsRunnableMethodReceiver(mozilla::places::AsyncFetchAndSetIconForPage*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::places::AsyncReplaceFaviconData, true>::nsRunnableMethodReceiver(mozilla::places::AsyncReplaceFaviconData*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsNavHistory, true>::nsRunnableMethodReceiver(nsNavHistory*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsUrlClassifierDBServiceWorker, true>::nsRunnableMethodReceiver(nsUrlClassifierDBServiceWorker*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsFormFillController, true>::nsRunnableMethodReceiver(nsFormFillController*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsNativeAppSupportUnix, true>::nsRunnableMethodReceiver(nsNativeAppSupportUnix*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsUpdateProcessor, true>::nsRunnableMethodReceiver(nsUpdateProcessor*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher, true>::nsRunnableMethodReceiver(mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsBar, true>::nsRunnableMethodReceiver(nsBar*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsBar const, true>::nsRunnableMethodReceiver(nsBar const*)
Unexecuted instantiation: nsRunnableMethodReceiver<IdleObject, true>::nsRunnableMethodReceiver(IdleObject*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsFoo, true>::nsRunnableMethodReceiver(nsFoo*)
Unexecuted instantiation: nsRunnableMethodReceiver<IdleObjectWithoutSetDeadline, true>::nsRunnableMethodReceiver(IdleObjectWithoutSetDeadline*)
Unexecuted instantiation: nsRunnableMethodReceiver<IdleObjectInheritedSetDeadline, true>::nsRunnableMethodReceiver(IdleObjectInheritedSetDeadline*)
Unexecuted instantiation: nsRunnableMethodReceiver<TestThreadUtils::ThreadUtilsObject, true>::nsRunnableMethodReceiver(TestThreadUtils::ThreadUtilsObject*)
Unexecuted instantiation: nsRunnableMethodReceiver<CDMStorageTest, true>::nsRunnableMethodReceiver(CDMStorageTest*)
Unexecuted instantiation: nsRunnableMethodReceiver<GMPTestRunner, true>::nsRunnableMethodReceiver(GMPTestRunner*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<int>, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<int>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<SomeEvent>, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<SomeEvent>*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<RefPtr<RefCounter> >, true>::nsRunnableMethodReceiver(mozilla::detail::Listener<RefPtr<RefCounter> >*)
773
13
  ~nsRunnableMethodReceiver() { Revoke(); }
nsRunnableMethodReceiver<FdWatcher, true>::~nsRunnableMethodReceiver()
Line
Count
Source
773
3
  ~nsRunnableMethodReceiver() { Revoke(); }
Unexecuted instantiation: nsRunnableMethodReceiver<nsMemoryReporterManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsObserverService, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::EventTargetWrapper, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::LazyIdleThread, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIBlockThreadedExecutionCallback, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIThreadPool, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsProcess, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIThread, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Preferences, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsStringBundleBase, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::BackgroundFileSaver, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::BackgroundFileSaverStreamListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::Dashboard, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::LookupHelper, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsAsyncStreamCopier, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsICaptivePortalService, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsInputStreamPump, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsPACMan, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsServerSocket, true>::~nsRunnableMethodReceiver()
nsRunnableMethodReceiver<mozilla::net::nsSocketTransportService, true>::~nsRunnableMethodReceiver()
Line
Count
Source
773
7
  ~nsRunnableMethodReceiver() { Revoke(); }
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsUDPSocket, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsHostResolver, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::DNSRequestChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsCacheService, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheEntry, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileContextEvictor, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileIOManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheIndex, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheObserver, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheStorageService, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsAboutCache::Channel, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsFileUploadContentStream, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::FTPChannelParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsHttpConnectionMgr, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::AltSvcMapping, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::Http2Session, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpBackgroundChannelChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpBackgroundChannelParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpBaseChannel, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpChannelChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpChannelParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIInterceptedChannel, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::InterceptedHttpChannel, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsHttpChannel, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::ExtensionJARFileOpener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::WebSocketChannel, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::WebSocketChannelChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsWyciwygChannel, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ScriptPreloader, true>::~nsRunnableMethodReceiver()
nsRunnableMethodReceiver<mozilla::URLPreloader, true>::~nsRunnableMethodReceiver()
Line
Count
Source
773
3
  ~nsRunnableMethodReceiver() { Revoke(); }
Unexecuted instantiation: nsRunnableMethodReceiver<nsJARChannel, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::storage::Connection, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::storage::AsyncExecuteStatements, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VideoFrameConverter, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::GenericReceiveListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VideoSessionConduit, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsOfflineCacheUpdate, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsHtml5Parser, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::PaintThread, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::AsyncImagePipelineManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorBridgeParentBase, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::AsyncPanZoomController, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::GeckoContentController, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::APZCTreeManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::InputQueue, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::OverscrollHandoffChain const, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::GestureEventListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ActiveElementManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ChromeProcessController, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::IAPZCTreeManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorBridgeChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorBridgeParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorManagerParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorVsyncScheduler, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CrossProcessCompositorBridgeParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ImageBridgeChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ImageBridgeParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::RemoteContentController, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::LayerTransactionChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::UiCompositorControllerChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::UiCompositorControllerParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<GtkVsyncSource::GLXDisplay, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<SoftwareDisplay, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VsyncBridgeChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VsyncBridgeParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRDisplayHost, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::impl::VRControllerOpenVR, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRThread, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRGPUParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRManagerChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRManagerParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRService, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::wr::RenderThread, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::wr::RenderTextureHostWrapper, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWidget, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsGlobalWindowOuter, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsGlobalWindowInner, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsXBLBinding, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::EventSourceImpl, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ScreenOrientation, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIDocument, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsDocument, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsRange, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsAttributeTextNode, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::cache::Context::ThreadsafeHandle, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::cache::ReadStream::Inner, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::CanvasRenderingContext2D, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::EventListenerService, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLCanvasPrintState, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLCanvasElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::BlobCallback, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLEmbedElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLImageElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLInputElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLLinkElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement::StreamSizeListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement::ChannelLoader, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement::StreamListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaStreamTrack, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DOMMediaStream, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLObjectElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLStyleElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLTrackElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ImageDocument, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::TextTrackManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<HTMLContentSink, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsHTMLDocument, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsJSChannel, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::BackgroundVideoDecodingPermissionObserver const, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DOMMediaStream::OwnedStreamListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DOMMediaStream::PlaybackStreamListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaResourceCallback, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ChannelMediaResource, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::FileBlockCache, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaDecoderStateMachine, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::TimedMetadata>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<double>::Impl, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<double>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<bool>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<bool>::Impl, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaFormatReader, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::media::TimeIntervals>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::media::TimeUnit>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<bool>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<bool>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<double>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::media::TimeUnit>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::media::TimeUnit>::Impl, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::MediaResult>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::GetUserMediaWindowListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::SourceListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaRecorder, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaRecorder::Session, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaEncoder, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::media::TimeIntervals>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaStreamTrack::PrincipalHandleListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaTimer, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaEncoder::EncoderListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AudioTrackEncoder, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VideoTrackEncoder, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaEncoderListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ChromiumCDMProxy, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::ChromiumCDMChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::ChromiumCDMParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPContentParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GeckoMediaPluginServiceParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPSyncRunnable, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPRunnable, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPVideoDecoderChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPVideoEncoderChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::VideoDecoderManagerParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<long>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DecodedStreamGraphListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaStream, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaSourceDemuxer, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::TrackBuffersManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaSourceDecoder, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::camera::CamerasChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaSystemResourceManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::AudioDestinationNode, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaDecodeTask, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::nsFakeSynthServices, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SpeechDispatcherService, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SpeechDispatcherCallback, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::NotificationPermissionRequest, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:nsRunnableMethodReceiver<mozilla::dom::quota::(anonymous namespace)::Quota, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::quota::QuotaManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBParent::ObserverSink, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SVGFEImageElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SVGImageElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SVGStyleElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: ActorsParent.cpp:nsRunnableMethodReceiver<mozilla::dom::indexedDB::(anonymous namespace)::Database, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: ActorsParent.cpp:nsRunnableMethodReceiver<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::IDBDatabase, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentBridgeChild, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentBridgeParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::PreallocatedProcessManagerImpl, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ipc::WritableSharedMap, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::U2FHIDTokenManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::U2FTokenManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsBindingManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::XMLStylesheetProcessingInstruction, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsXMLContentSink, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsXMLPrettyPrinter, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::XULDocument, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWebBrowserPersistDocumentReceiver, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWebBrowserPersistResourceVisitor, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWebBrowserPersistWriteCompletion, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsWebBrowserPersist, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::XMLHttpRequestMainThread, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::WorkletThread, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIScriptElement, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ScriptLoader, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::WaitUntilHandler, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::PushErrorReporter, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrar, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::WorkerListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerJob, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerProxy, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistration, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrationMainThread, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrationInfo, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrationProxy, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::Connection, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::OpenOp, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsISDBCallback, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationAvailability, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationConnection, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationDeviceManager, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationRequest, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationControllingInfo, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIPresentationSessionTransportBuilderListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationTCPSessionTransport, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::presentation::MulticastDNSDeviceProvider, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::CompositorVsyncDispatcher, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::RefreshTimerVsyncDispatcher, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsWindow, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsDeviceContextSpecGTK, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::HTMLEditRules, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::HTMLEditor, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::FontFaceSet, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsRefreshDriver, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::PresShell, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<ZoomConstraintsClient, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsPresContext, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIDateTimeInputArea, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layout::VsyncParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsDocShell, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ChildProfilerController, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DataStorage, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::psm::PSMContentStreamListener, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::extensions::StreamFilter, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::extensions::StreamFilterParent, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: Unified_cpp_components_places0.cpp:nsRunnableMethodReceiver<mozilla::places::(anonymous namespace)::VisitedQuery, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::places::Database, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::places::AsyncFetchAndSetIconForPage, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::places::AsyncReplaceFaviconData, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsNavHistory, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsUrlClassifierDBServiceWorker, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsFormFillController, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsNativeAppSupportUnix, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsUpdateProcessor, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsBar, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsBar const, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<IdleObject, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<nsFoo, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<IdleObjectWithoutSetDeadline, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<IdleObjectInheritedSetDeadline, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<TestThreadUtils::ThreadUtilsObject, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<CDMStorageTest, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<GMPTestRunner, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<int>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<SomeEvent>, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >, true>::~nsRunnableMethodReceiver()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<RefPtr<RefCounter> >, true>::~nsRunnableMethodReceiver()
774
26
  ClassType* Get() const { return mObj.get(); }
nsRunnableMethodReceiver<FdWatcher, true>::Get() const
Line
Count
Source
774
6
  ClassType* Get() const { return mObj.get(); }
Unexecuted instantiation: nsRunnableMethodReceiver<nsMemoryReporterManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsObserverService, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::EventTargetWrapper, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::LazyIdleThread, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIBlockThreadedExecutionCallback, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIThreadPool, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsProcess, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIThread, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<bool>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Preferences, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsStringBundleBase, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::BackgroundFileSaver, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::BackgroundFileSaverStreamListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::Dashboard, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::LookupHelper, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsAsyncStreamCopier, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsICaptivePortalService, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsInputStreamPump, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsPACMan, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsServerSocket, true>::Get() const
nsRunnableMethodReceiver<mozilla::net::nsSocketTransportService, true>::Get() const
Line
Count
Source
774
14
  ClassType* Get() const { return mObj.get(); }
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsUDPSocket, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsHostResolver, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::DNSRequestChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsCacheService, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheEntry, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileContextEvictor, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileIOManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheIndex, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheObserver, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheStorageService, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsAboutCache::Channel, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsFileUploadContentStream, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::FTPChannelParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsHttpConnectionMgr, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::AltSvcMapping, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::Http2Session, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpBackgroundChannelChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpBackgroundChannelParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpBaseChannel, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpChannelChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpChannelParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIInterceptedChannel, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::InterceptedHttpChannel, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsHttpChannel, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::ExtensionJARFileOpener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::WebSocketChannel, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::WebSocketChannelChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsWyciwygChannel, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ScriptPreloader, true>::Get() const
nsRunnableMethodReceiver<mozilla::URLPreloader, true>::Get() const
Line
Count
Source
774
6
  ClassType* Get() const { return mObj.get(); }
Unexecuted instantiation: nsRunnableMethodReceiver<nsJARChannel, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::storage::Connection, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::storage::AsyncExecuteStatements, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VideoFrameConverter, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::GenericReceiveListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VideoSessionConduit, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsOfflineCacheUpdate, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsHtml5Parser, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::PaintThread, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::AsyncImagePipelineManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorBridgeParentBase, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::AsyncPanZoomController, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::GeckoContentController, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::APZCTreeManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::InputQueue, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::OverscrollHandoffChain const, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::GestureEventListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ActiveElementManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ChromeProcessController, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::IAPZCTreeManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorBridgeChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorBridgeParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorManagerParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorVsyncScheduler, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CrossProcessCompositorBridgeParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ImageBridgeChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ImageBridgeParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::RemoteContentController, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::LayerTransactionChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::UiCompositorControllerChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::UiCompositorControllerParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<GtkVsyncSource::GLXDisplay, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<SoftwareDisplay, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VsyncBridgeChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VsyncBridgeParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRDisplayHost, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::impl::VRControllerOpenVR, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRThread, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRGPUParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRManagerChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRManagerParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRService, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::wr::RenderThread, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::wr::RenderTextureHostWrapper, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWidget, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsGlobalWindowOuter, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsGlobalWindowInner, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsXBLBinding, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::EventSourceImpl, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ScreenOrientation, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIDocument, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsDocument, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::TimedMetadata>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsRange, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsAttributeTextNode, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::cache::Context::ThreadsafeHandle, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::cache::ReadStream::Inner, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::CanvasRenderingContext2D, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::EventListenerService, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLCanvasPrintState, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLCanvasElement, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::BlobCallback, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLEmbedElement, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLImageElement, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLInputElement, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLLinkElement, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement::StreamSizeListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement::ChannelLoader, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement::StreamListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaStreamTrack, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DOMMediaStream, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLObjectElement, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLStyleElement, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLTrackElement, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ImageDocument, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::TextTrackManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<HTMLContentSink, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsHTMLDocument, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsJSChannel, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::BackgroundVideoDecodingPermissionObserver const, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DOMMediaStream::OwnedStreamListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DOMMediaStream::PlaybackStreamListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaResourceCallback, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ChannelMediaResource, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaDecoderStateMachine, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::FileBlockCache, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<double>::Impl, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<double>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<bool>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<bool>::Impl, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaFormatReader, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::media::TimeIntervals>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::media::TimeUnit>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<bool>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<double>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::media::TimeUnit>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::media::TimeUnit>::Impl, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::MediaResult>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::GetUserMediaWindowListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::SourceListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaRecorder, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaRecorder::Session, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaEncoder, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::media::TimeIntervals>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaStreamTrack::PrincipalHandleListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaTimer, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaEncoder::EncoderListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AudioTrackEncoder, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VideoTrackEncoder, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaEncoderListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ChromiumCDMProxy, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::ChromiumCDMChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::ChromiumCDMParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPContentParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GeckoMediaPluginServiceParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPSyncRunnable, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPRunnable, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPVideoDecoderChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPVideoEncoderChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::VideoDecoderManagerParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<long>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DecodedStreamGraphListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaStream, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaSourceDemuxer, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::TrackBuffersManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaSourceDecoder, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::camera::CamerasChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaSystemResourceManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::AudioDestinationNode, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaDecodeTask, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::nsFakeSynthServices, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SpeechDispatcherService, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SpeechDispatcherCallback, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::NotificationPermissionRequest, true>::Get() const
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:nsRunnableMethodReceiver<mozilla::dom::quota::(anonymous namespace)::Quota, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::quota::QuotaManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBParent::ObserverSink, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SVGFEImageElement, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SVGImageElement, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SVGStyleElement, true>::Get() const
Unexecuted instantiation: ActorsParent.cpp:nsRunnableMethodReceiver<mozilla::dom::indexedDB::(anonymous namespace)::Database, true>::Get() const
Unexecuted instantiation: ActorsParent.cpp:nsRunnableMethodReceiver<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::IDBDatabase, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentBridgeChild, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentBridgeParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::PreallocatedProcessManagerImpl, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ipc::WritableSharedMap, true>::Get() const
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::U2FHIDTokenManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::U2FTokenManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsBindingManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::XMLStylesheetProcessingInstruction, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsXMLContentSink, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsXMLPrettyPrinter, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::XULDocument, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWebBrowserPersistDocumentReceiver, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWebBrowserPersistResourceVisitor, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWebBrowserPersistWriteCompletion, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsWebBrowserPersist, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::XMLHttpRequestMainThread, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::WorkletThread, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIScriptElement, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ScriptLoader, true>::Get() const
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::WaitUntilHandler, true>::Get() const
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback, true>::Get() const
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::PushErrorReporter, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrar, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::WorkerListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerJob, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerProxy, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistration, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrationMainThread, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrationInfo, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrationProxy, true>::Get() const
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::Connection, true>::Get() const
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::OpenOp, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsISDBCallback, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationAvailability, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationConnection, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationDeviceManager, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationRequest, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationControllingInfo, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIPresentationSessionTransportBuilderListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationTCPSessionTransport, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::presentation::MulticastDNSDeviceProvider, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::CompositorVsyncDispatcher, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::RefreshTimerVsyncDispatcher, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsWindow, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsDeviceContextSpecGTK, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::HTMLEditRules, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::HTMLEditor, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::FontFaceSet, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsRefreshDriver, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::PresShell, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<ZoomConstraintsClient, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsPresContext, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIDateTimeInputArea, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layout::VsyncParent, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsDocShell, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ChildProfilerController, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DataStorage, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::psm::PSMContentStreamListener, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::extensions::StreamFilter, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::extensions::StreamFilterParent, true>::Get() const
Unexecuted instantiation: Unified_cpp_components_places0.cpp:nsRunnableMethodReceiver<mozilla::places::(anonymous namespace)::VisitedQuery, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::places::Database, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::places::AsyncFetchAndSetIconForPage, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::places::AsyncReplaceFaviconData, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsNavHistory, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsUrlClassifierDBServiceWorker, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsFormFillController, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsNativeAppSupportUnix, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsUpdateProcessor, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsBar, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsBar const, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<IdleObject, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsFoo, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<IdleObjectWithoutSetDeadline, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<IdleObjectInheritedSetDeadline, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<TestThreadUtils::ThreadUtilsObject, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<CDMStorageTest, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<GMPTestRunner, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<int>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<SomeEvent>, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >, true>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<RefPtr<RefCounter> >, true>::Get() const
775
26
  void Revoke() { mObj = nullptr; }
nsRunnableMethodReceiver<FdWatcher, true>::Revoke()
Line
Count
Source
775
6
  void Revoke() { mObj = nullptr; }
Unexecuted instantiation: nsRunnableMethodReceiver<nsMemoryReporterManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsObserverService, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::EventTargetWrapper, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::LazyIdleThread, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIBlockThreadedExecutionCallback, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIThreadPool, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsProcess, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIThread, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<bool>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Preferences, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsStringBundleBase, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::BackgroundFileSaver, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::BackgroundFileSaverStreamListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::Dashboard, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::LookupHelper, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsAsyncStreamCopier, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsICaptivePortalService, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsInputStreamPump, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsPACMan, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsServerSocket, true>::Revoke()
nsRunnableMethodReceiver<mozilla::net::nsSocketTransportService, true>::Revoke()
Line
Count
Source
775
14
  void Revoke() { mObj = nullptr; }
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsUDPSocket, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsHostResolver, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::DNSRequestChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsCacheService, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheEntry, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileContextEvictor, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileIOManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheIndex, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheObserver, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheStorageService, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsAboutCache::Channel, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsFileUploadContentStream, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::FTPChannelParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsHttpConnectionMgr, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::AltSvcMapping, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::Http2Session, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpBackgroundChannelChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpBackgroundChannelParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpBaseChannel, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpChannelChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpChannelParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIInterceptedChannel, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::InterceptedHttpChannel, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsHttpChannel, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::ExtensionJARFileOpener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::WebSocketChannel, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::WebSocketChannelChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsWyciwygChannel, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ScriptPreloader, true>::Revoke()
nsRunnableMethodReceiver<mozilla::URLPreloader, true>::Revoke()
Line
Count
Source
775
6
  void Revoke() { mObj = nullptr; }
Unexecuted instantiation: nsRunnableMethodReceiver<nsJARChannel, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::storage::Connection, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::storage::AsyncExecuteStatements, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VideoFrameConverter, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::GenericReceiveListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VideoSessionConduit, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsOfflineCacheUpdate, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsHtml5Parser, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::PaintThread, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::AsyncImagePipelineManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorBridgeParentBase, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::AsyncPanZoomController, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::GeckoContentController, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::APZCTreeManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::InputQueue, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::OverscrollHandoffChain const, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::GestureEventListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ActiveElementManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ChromeProcessController, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::IAPZCTreeManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorBridgeChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorBridgeParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorManagerParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CompositorVsyncScheduler, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::CrossProcessCompositorBridgeParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ImageBridgeChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::ImageBridgeParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::RemoteContentController, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::LayerTransactionChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::UiCompositorControllerChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layers::UiCompositorControllerParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<GtkVsyncSource::GLXDisplay, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<SoftwareDisplay, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VsyncBridgeChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VsyncBridgeParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRDisplayHost, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::impl::VRControllerOpenVR, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRThread, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRGPUParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRManagerChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRManagerParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gfx::VRService, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::wr::RenderThread, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::wr::RenderTextureHostWrapper, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWidget, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsGlobalWindowOuter, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsGlobalWindowInner, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsXBLBinding, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::EventSourceImpl, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ScreenOrientation, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIDocument, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsDocument, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::TimedMetadata>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsRange, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsAttributeTextNode, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::cache::Context::ThreadsafeHandle, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::cache::ReadStream::Inner, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::CanvasRenderingContext2D, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::EventListenerService, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLCanvasPrintState, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLCanvasElement, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::BlobCallback, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLEmbedElement, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLImageElement, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLInputElement, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLLinkElement, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement::StreamSizeListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement::ChannelLoader, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement::StreamListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLMediaElement, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaStreamTrack, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DOMMediaStream, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLObjectElement, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLStyleElement, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::HTMLTrackElement, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ImageDocument, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::TextTrackManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<HTMLContentSink, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsHTMLDocument, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsJSChannel, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::BackgroundVideoDecodingPermissionObserver const, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DOMMediaStream::OwnedStreamListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DOMMediaStream::PlaybackStreamListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaResourceCallback, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ChannelMediaResource, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaDecoderStateMachine, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::FileBlockCache, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<double>::Impl, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<double>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<bool>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<bool>::Impl, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaFormatReader, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::media::TimeIntervals>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::media::TimeUnit>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<bool>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<double>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::media::TimeUnit>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::media::TimeUnit>::Impl, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::MediaResult>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::GetUserMediaWindowListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::SourceListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaRecorder, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaRecorder::Session, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaEncoder, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AbstractMirror<mozilla::media::TimeIntervals>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::MediaStreamTrack::PrincipalHandleListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaTimer, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaEncoder::EncoderListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::AudioTrackEncoder, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VideoTrackEncoder, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaEncoderListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ChromiumCDMProxy, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::ChromiumCDMChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::ChromiumCDMParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPContentParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GeckoMediaPluginServiceParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPSyncRunnable, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPRunnable, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPVideoDecoderChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPVideoEncoderChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::VideoDecoderManagerParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<long>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DecodedStreamGraphListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaStream, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaSourceDemuxer, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::TrackBuffersManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaSourceDecoder, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::camera::CamerasChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaSystemResourceManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::AudioDestinationNode, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaDecodeTask, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::nsFakeSynthServices, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SpeechDispatcherService, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SpeechDispatcherCallback, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::NotificationPermissionRequest, true>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:nsRunnableMethodReceiver<mozilla::dom::quota::(anonymous namespace)::Quota, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::quota::QuotaManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBParent::ObserverSink, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SVGFEImageElement, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SVGImageElement, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::SVGStyleElement, true>::Revoke()
Unexecuted instantiation: ActorsParent.cpp:nsRunnableMethodReceiver<mozilla::dom::indexedDB::(anonymous namespace)::Database, true>::Revoke()
Unexecuted instantiation: ActorsParent.cpp:nsRunnableMethodReceiver<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::IDBDatabase, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentBridgeChild, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentBridgeParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::PreallocatedProcessManagerImpl, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ipc::WritableSharedMap, true>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::U2FHIDTokenManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::U2FTokenManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsBindingManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::XMLStylesheetProcessingInstruction, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsXMLContentSink, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsXMLPrettyPrinter, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::XULDocument, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWebBrowserPersistDocumentReceiver, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWebBrowserPersistResourceVisitor, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIWebBrowserPersistWriteCompletion, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsWebBrowserPersist, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::XMLHttpRequestMainThread, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::WorkletThread, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIScriptElement, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ScriptLoader, true>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::WaitUntilHandler, true>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback, true>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::PushErrorReporter, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrar, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::WorkerListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerJob, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerProxy, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistration, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrationMainThread, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrationInfo, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ServiceWorkerRegistrationProxy, true>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::Connection, true>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:nsRunnableMethodReceiver<mozilla::dom::(anonymous namespace)::OpenOp, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsISDBCallback, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationAvailability, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationConnection, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationDeviceManager, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationRequest, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationControllingInfo, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIPresentationSessionTransportBuilderListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::PresentationTCPSessionTransport, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::presentation::MulticastDNSDeviceProvider, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::CompositorVsyncDispatcher, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::RefreshTimerVsyncDispatcher, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsWindow, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsDeviceContextSpecGTK, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::HTMLEditRules, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::HTMLEditor, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::FontFaceSet, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsRefreshDriver, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::PresShell, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<ZoomConstraintsClient, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsPresContext, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIDateTimeInputArea, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::layout::VsyncParent, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsDocShell, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ChildProfilerController, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::DataStorage, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::psm::PSMContentStreamListener, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::extensions::StreamFilter, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::extensions::StreamFilterParent, true>::Revoke()
Unexecuted instantiation: Unified_cpp_components_places0.cpp:nsRunnableMethodReceiver<mozilla::places::(anonymous namespace)::VisitedQuery, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::places::Database, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::places::AsyncFetchAndSetIconForPage, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::places::AsyncReplaceFaviconData, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsNavHistory, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsUrlClassifierDBServiceWorker, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsFormFillController, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsNativeAppSupportUnix, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsUpdateProcessor, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsBar, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsBar const, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<IdleObject, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsFoo, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<IdleObjectWithoutSetDeadline, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<IdleObjectInheritedSetDeadline, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<TestThreadUtils::ThreadUtilsObject, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<CDMStorageTest, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<GMPTestRunner, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<int>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<SomeEvent>, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >, true>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::detail::Listener<RefPtr<RefCounter> >, true>::Revoke()
776
};
777
778
template<class ClassType>
779
struct nsRunnableMethodReceiver<ClassType, false>
780
{
781
  ClassType* MOZ_NON_OWNING_REF mObj;
782
0
  explicit nsRunnableMethodReceiver(ClassType* aObj) : mObj(aObj) {}
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::LazyIdleThread, false>::nsRunnableMethodReceiver(mozilla::LazyIdleThread*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsProtocolProxyService, false>::nsRunnableMethodReceiver(mozilla::net::nsProtocolProxyService*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileChunk, false>::nsRunnableMethodReceiver(mozilla::net::CacheFileChunk*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileHandle, false>::nsRunnableMethodReceiver(mozilla::net::CacheFileHandle*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpChannelChild, false>::nsRunnableMethodReceiver(mozilla::net::HttpChannelChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentParent, false>::nsRunnableMethodReceiver(mozilla::dom::ContentParent*)
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:nsRunnableMethodReceiver<(anonymous namespace)::ParentImpl, false>::nsRunnableMethodReceiver((anonymous namespace)::ParentImpl*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ipc::GeckoChildProcessHost, false>::nsRunnableMethodReceiver(mozilla::ipc::GeckoChildProcessHost*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ipc::MessageChannel, false>::nsRunnableMethodReceiver(mozilla::ipc::MessageChannel*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ipc::ProcessLink, false>::nsRunnableMethodReceiver(mozilla::ipc::ProcessLink*)
Unexecuted instantiation: nsRunnableMethodReceiver<IPC::Channel, false>::nsRunnableMethodReceiver(IPC::Channel*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsContentSink, false>::nsRunnableMethodReceiver(nsContentSink*)
Unexecuted instantiation: nsRunnableMethodReceiver<nsIDocument, false>::nsRunnableMethodReceiver(nsIDocument*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::cache::Manager::CachePutAllAction, false>::nsRunnableMethodReceiver(mozilla::dom::cache::Manager::CachePutAllAction*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaResource, false>::nsRunnableMethodReceiver(mozilla::MediaResource*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaTimer, false>::nsRunnableMethodReceiver(mozilla::MediaTimer*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::GMPCrashHelper, false>::nsRunnableMethodReceiver(mozilla::GMPCrashHelper*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPProcessParent, false>::nsRunnableMethodReceiver(mozilla::gmp::GMPProcessParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPServiceParent, false>::nsRunnableMethodReceiver(mozilla::gmp::GMPServiceParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<WebCore::ReverbConvolver, false>::nsRunnableMethodReceiver(WebCore::ReverbConvolver*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::LocalStorageCacheBridge, false>::nsRunnableMethodReceiver(mozilla::dom::LocalStorageCacheBridge*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBThread, false>::nsRunnableMethodReceiver(mozilla::dom::StorageDBThread*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBParent::CacheParentBridge, false>::nsRunnableMethodReceiver(mozilla::dom::StorageDBParent::CacheParentBridge*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBParent::UsageParentBridge, false>::nsRunnableMethodReceiver(mozilla::dom::StorageDBParent::UsageParentBridge*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::plugins::PluginInstanceChild, false>::nsRunnableMethodReceiver(mozilla::plugins::PluginInstanceChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::plugins::FunctionBrokerChild, false>::nsRunnableMethodReceiver(mozilla::plugins::FunctionBrokerChild*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::plugins::FunctionBrokerParent, false>::nsRunnableMethodReceiver(mozilla::plugins::FunctionBrokerParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::plugins::PluginProcessParent, false>::nsRunnableMethodReceiver(mozilla::plugins::PluginProcessParent*)
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:nsRunnableMethodReceiver<mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper, false>::nsRunnableMethodReceiver(mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper*)
Unexecuted instantiation: ProcessHangMonitor.cpp:nsRunnableMethodReceiver<(anonymous namespace)::HangMonitorChild, false>::nsRunnableMethodReceiver((anonymous namespace)::HangMonitorChild*)
Unexecuted instantiation: ProcessHangMonitor.cpp:nsRunnableMethodReceiver<(anonymous namespace)::HangMonitorParent, false>::nsRunnableMethodReceiver((anonymous namespace)::HangMonitorParent*)
Unexecuted instantiation: nsRunnableMethodReceiver<GMPTestMonitor, false>::nsRunnableMethodReceiver(GMPTestMonitor*)
Unexecuted instantiation: nsRunnableMethodReceiver<GMPRemoveTest, false>::nsRunnableMethodReceiver(GMPRemoveTest*)
Unexecuted instantiation: nsRunnableMethodReceiver<GMPVideoDecoderProxy, false>::nsRunnableMethodReceiver(GMPVideoDecoderProxy*)
783
0
  ClassType* Get() const { return mObj; }
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::LazyIdleThread, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsProtocolProxyService, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileChunk, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileHandle, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpChannelChild, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentParent, false>::Get() const
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:nsRunnableMethodReceiver<(anonymous namespace)::ParentImpl, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ipc::GeckoChildProcessHost, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ipc::MessageChannel, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ipc::ProcessLink, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<IPC::Channel, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsContentSink, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<nsIDocument, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::cache::Manager::CachePutAllAction, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaResource, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaTimer, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::GMPCrashHelper, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPProcessParent, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPServiceParent, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<WebCore::ReverbConvolver, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::LocalStorageCacheBridge, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBThread, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBParent::CacheParentBridge, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBParent::UsageParentBridge, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::plugins::PluginInstanceChild, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::plugins::FunctionBrokerChild, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::plugins::FunctionBrokerParent, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::plugins::PluginProcessParent, false>::Get() const
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:nsRunnableMethodReceiver<mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper, false>::Get() const
Unexecuted instantiation: ProcessHangMonitor.cpp:nsRunnableMethodReceiver<(anonymous namespace)::HangMonitorChild, false>::Get() const
Unexecuted instantiation: ProcessHangMonitor.cpp:nsRunnableMethodReceiver<(anonymous namespace)::HangMonitorParent, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<GMPTestMonitor, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<GMPRemoveTest, false>::Get() const
Unexecuted instantiation: nsRunnableMethodReceiver<GMPVideoDecoderProxy, false>::Get() const
784
0
  void Revoke() { mObj = nullptr; }
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::LazyIdleThread, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::nsProtocolProxyService, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileChunk, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::CacheFileHandle, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::net::HttpChannelChild, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::ContentParent, false>::Revoke()
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:nsRunnableMethodReceiver<(anonymous namespace)::ParentImpl, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ipc::GeckoChildProcessHost, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ipc::MessageChannel, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::ipc::ProcessLink, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<IPC::Channel, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsContentSink, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<nsIDocument, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::cache::Manager::CachePutAllAction, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaResource, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::MediaTimer, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::GMPCrashHelper, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPProcessParent, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::gmp::GMPServiceParent, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<WebCore::ReverbConvolver, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::LocalStorageCacheBridge, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBThread, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBParent::CacheParentBridge, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::dom::StorageDBParent::UsageParentBridge, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::plugins::PluginInstanceChild, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::plugins::FunctionBrokerChild, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::plugins::FunctionBrokerParent, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<mozilla::plugins::PluginProcessParent, false>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:nsRunnableMethodReceiver<mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper, false>::Revoke()
Unexecuted instantiation: ProcessHangMonitor.cpp:nsRunnableMethodReceiver<(anonymous namespace)::HangMonitorChild, false>::Revoke()
Unexecuted instantiation: ProcessHangMonitor.cpp:nsRunnableMethodReceiver<(anonymous namespace)::HangMonitorParent, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<GMPTestMonitor, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<GMPRemoveTest, false>::Revoke()
Unexecuted instantiation: nsRunnableMethodReceiver<GMPVideoDecoderProxy, false>::Revoke()
785
};
786
787
static inline constexpr bool
788
IsIdle(mozilla::RunnableKind aKind)
789
0
{
790
0
  return aKind == mozilla::RunnableKind::Idle ||
791
0
         aKind == mozilla::RunnableKind::IdleWithTimer;
792
0
}
Unexecuted instantiation: SandboxBrokerPolicyFactory.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: SandboxCrash.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: SandboxPrefBridge.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: SandboxLaunch.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: SandboxReporter.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_certverifier0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_security_apps0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_base0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_base1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_base2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_ds0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_ds1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_io0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_io1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_components0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_threads1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_threads2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: xptdata.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_chrome0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_build0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_modules_libpref0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: hnjstdio.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_intl_locale0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_intl_strres0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_unicharutil_util0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_intl_l10n0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_base0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_base1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_base2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_base3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_base4.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsCookieService.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_cookie0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsHostResolver.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_dns0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_socket0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_converters0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_cache0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_cache1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: AppCacheStorage.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: CacheStorage.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_cache20.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_cache21.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_protocol_about0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_protocol_data0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_protocol_file0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_protocol_ftp0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsGIOProtocolHandler.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsHttpChannelAuthProvider.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsHttpHandler.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_protocol_http1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_protocol_http2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_protocol_res0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_protocol_viewsource0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_protocol_websocket0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_protocol_wyciwyg0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsNotifyAddrListener_Linux.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_ipc0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: DataChannel.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_wifi0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsNetModule.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsHttpNegotiateAuth.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_ipc_chromium0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_ipc_chromium1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_ipc_chromium2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: BackgroundChildImpl.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: BackgroundParentImpl.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_ipc_glue1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols10.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols11.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols12.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols13.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols14.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols15.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols16.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols17.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols18.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols19.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols20.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols21.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols22.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols23.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols24.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols25.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols26.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols27.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols28.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols29.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols30.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols31.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols4.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols5.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols6.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols7.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols8.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedProtocols9.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: IPCMessageTypeName.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: TestShellChild.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: TestShellParent.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: XPCShellEnvironment.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_js_ipc0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Hal.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_hal0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: XrayWrapper.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpconnect_wrappers0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: mozJSComponentLoader.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_js_xpconnect_loader0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_js_xpconnect_src0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_js_xpconnect_src1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_modules_libjar0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_libjar_zipwriter0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: mozStorageBindingParams.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: mozStorageConnection.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_storage0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_storage1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: mozStorageModule.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_extensions_cookie0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_permissions0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_src_common0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_src_mediapipeline0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_src_peerconnection0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nr_socket_prsock.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nr_timer.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nricectx.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nriceresolver.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nriceresolverfake.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: stun_socket_filter.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: test_nr_socket.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: transportflow.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: transportlayer.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_media_mtransport_ipc0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_uriloader_base0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsOSHelperAppService.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_uriloader_exthandler0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_uriloader_prefetch0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: BasePrincipal.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_caps0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_parser_htmlparser0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_parser_html0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_parser_html1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_parser_html2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: InlineTranslator.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_ycbcr0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsDeviceContext.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: GLContextProviderGLX.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: SharedSurfaceGLX.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_gl0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_gl1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: ImageContainer.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: PersistentBufferProvider.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: BasicImageLayer.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: TextureClientX11.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: X11BasicCompositor.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: X11TextureSourceBasic.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: X11TextureHost.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: ShadowLayerUtilsX11.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: X11TextureSourceOGL.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: WebRenderTextureHost.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: gfxFT2FontBase.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: gfxFT2Utils.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: gfxFcPlatformFontList.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: gfxGdkNativeRenderer.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: gfxPlatform.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: gfxPlatformGtk.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: gfxPrefs.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_thebes0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_thebes1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: GPUParent.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_ipc0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: VRDisplayHost.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: VRDisplayLocal.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: gfxVRExternal.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: gfxVROpenVR.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: gfxVRPuppet.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_vr0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_vr1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_vr_service0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_config0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_webrender_bindings0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_image2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsImageModule.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_image_decoders0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_image_decoders_icon0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsPNGEncoder.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_abort0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_animation0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: DOMIntersectionObserver.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsContentUtils.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsDOMWindowUtils.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsFrameMessageManager.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsGlobalWindowInner.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsGlobalWindowOuter.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsImageLoadingContent.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsObjectLoadingContent.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsPluginArray.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_base0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_base1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_base2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_base3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_base4.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_base5.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_base6.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_base7.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_base8.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_base9.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: RegisterBindings.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: RegisterWorkerBindings.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: RegisterWorkerDebuggerBindings.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: RegisterWorkletBindings.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: ResolveSystemBinding.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnionTypes.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings10.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings11.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings12.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings13.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings14.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings15.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings16.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings17.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings18.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings19.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings20.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings21.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings22.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings23.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings4.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings5.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings6.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings7.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings8.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UnifiedBindings9.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: StructuredClone.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_bindings0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: BatteryManager.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: BrowserElementParent.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_cache0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_cache1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: ImageUtils.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_canvas0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_canvas1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_canvas2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_canvas3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_canvas4.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_canvas5.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_canvas6.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_webgpu0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_webgpu1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_clients_api0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_clients_manager0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_commandhandler0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_credentialmanagement0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_crypto0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_encoding0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: EventStateManager.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_events0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_events1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_events2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_events3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_fetch0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_file0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_file1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_file_ipc0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_file_uri0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_filehandle0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_filesystem0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_filesystem_compat0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_flex0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_gamepad0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: PositionError.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsGeolocation.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_grid0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: AutoplayPermissionManager.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: AutoplayPermissionRequest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: PluginDocument.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_html0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_html1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_html2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_html3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_html4.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_html5.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_html_input0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_jsurl0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: AsmJSCache.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_mathml0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: CubebUtils.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: DecoderTraits.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media10.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media11.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media7.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media8.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media9.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_doctor0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_eme0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_encoder0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_flac0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_gmp0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_gmp2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_media_imagecapture0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: RemoteVideoDecoder.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: VideoDecoderChild.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: VideoDecoderManagerChild.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: VideoDecoderManagerParent.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: VideoDecoderParent.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_mediacapabilities0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_mediasink0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_mp30.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_ogg0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_platforms0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_agnostic_eme0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_agnostic_gmp0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_media_platforms_omx0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: FFVPXRuntimeLinker.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_ffmpeg_ffvpx0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_platforms_ffmpeg0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_ffmpeg_libav530.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_ffmpeg_libav540.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_ffmpeg_libav550.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_ffmpeg_ffmpeg570.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_ffmpeg_ffmpeg580.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_systemservices0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_wave0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: AudioNodeEngineSSE2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_webaudio0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_webaudio1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_webaudio2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_webaudio_blink0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_webm0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: MediaEngineWebRTC.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_webrtc0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_webspeech_synth0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_synth_speechd0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_recognition0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: MP4Demuxer.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_mp40.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: MediaModule.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_midi0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_midi1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_notification0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_offline0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_power0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_push0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_security0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_svg5.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_network0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_permission0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsNPAPIPlugin.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsPluginHost.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_plugins_base0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: PluginInstanceChild.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_plugins_ipc0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_plugins_ipc1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: ActorsParent.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_indexedDB1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_system0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: ContentChild.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: ProcessHangMonitor.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_ipc0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_ipc1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_workers1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_audiochannel0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_broadcastchannel0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_messagechannel0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_promise0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_smil0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_smil1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_url0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_webauthn0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_xbl0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_xbl1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_xml0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_xslt_base0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_xslt_xml0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_xslt_xpath0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_xslt_xpath1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_xslt_xpath2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_xslt_xslt0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_xslt_xslt1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_vr0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_u2f0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_console0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_performance0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_webbrowserpersist0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_xhr0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_worklet0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_script0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_payments0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_websocket0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_prio0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_presentation1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_provider0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_view0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsBaseDragService.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsBaseWidget.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsShmImage.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_widget0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_widget1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_widget2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_widget_headless0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsWindow.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_editor_libeditor0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_editor_libeditor1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_editor_libeditor2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_editor_spellchecker0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_editor_composer0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsLayoutStylesheetCache.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_style0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_style1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_style2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_style3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_style4.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsRefreshDriver.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_base0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_base1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_base2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsPluginFrame.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_xul_grid0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: VsyncChild.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: VsyncParent.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_inspector0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_printing0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_build0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_base_timeline0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_docshell_shistory0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsDocShellModule.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpfe_appshell0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: AccessibleWrap.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: ApplicationAccessibleWrap.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: AtkSocketAccessible.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: DOMtoATK.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: DocAccessibleWrap.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Platform.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: RootAccessibleWrap.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: UtilInterface.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiHyperlink.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiInterfaceAction.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiInterfaceComponent.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiInterfaceDocument.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiInterfaceEditableText.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiInterfaceHyperlinkImpl.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiInterfaceHypertext.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiInterfaceImage.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiInterfaceSelection.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiInterfaceTable.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiInterfaceTableCell.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiInterfaceText.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsMaiInterfaceValue.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_accessible_aom0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_accessible_base0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_accessible_base1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_accessible_generic0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_accessible_html0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_accessible_ipc0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: DocAccessibleChild.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: ProxyAccessible.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_accessible_xpcom0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_accessible_xul0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_tools_profiler0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_hunspell_glue0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_spellcheck_src0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_security_manager_ssl1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_components_alerts0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_antitracking0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_ackgroundhangmonitor0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_components_browser0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_clearsitedata0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: DownloadPlatform.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_extensions0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: FinalizationWitnessService.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_components_find0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_mediasniffer0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: NativeOSFileInternals.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_perfmonitoring0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_reputationservice0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_resistfingerprinting0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_sessionstore0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_components_startup0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsBrowserStatusFilter.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: TelemetryScalar.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: TelemetryIPCAccumulator.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsTypeAheadFind.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: VariableLengthPrefixSet.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsUrlClassifierPrefixSet.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsUrlClassifierStreamUpdater.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_windowwatcher0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_autocomplete0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_printingui_ipc0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsFormFillController.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsTerminator.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsToolkitCompsModule.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_mozapps_extensions0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_toolkit_profile0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_toolkit_recordreplay0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: ProfileReset.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsAppRunner.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsEmbedFunctions.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_toolkit_xre0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_pref_autoconfig_src0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsJSInspector.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: HeapSnapshot.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: HeapSnapshotTempFileHelperParent.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: IdentityCryptoService.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_startupcache0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: JSDebugger.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Faulty.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: MessageManagerFuzzer.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: ProtocolFuzzer.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nsGNOMEShellService.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest2.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_netwerk_test0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_storage_test_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: mediaconduit_unittests.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: mediapipeline_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: sdp_unittests.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: videoconduit_unittests.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_apz_test_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_tests_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_gfx_tests_gtest1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: TestDownscalingFilterNoSkia.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_image_test_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_image_test_gtest1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: TestDecoders.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_base_test_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_media_doctor_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_mediasource_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_dom_media_gtest1.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: TestParser.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_security_test_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: csp_fuzzer.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: content_parent_ipc_libfuzz.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_test_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_style_test_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_layout_base_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_tests_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_places_tests_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_tests0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_geckoview_gtest0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: Unified_cpp_startupcache_test0.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: TestSyncRunnable.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: buffered_stun_socket_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: ice_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: multi_tcp_socket_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: nrappkit_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: proxy_tunnel_socket_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: rlogconnector_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: runnable_utils_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: sctp_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: simpletokenbucket_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: sockettransportservice_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: test_nr_socket_ice_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: test_nr_socket_unittest.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: transport_unittests.cpp:IsIdle(mozilla::RunnableKind)
Unexecuted instantiation: turn_unittest.cpp:IsIdle(mozilla::RunnableKind)
793
794
template<typename PtrType, typename Method, bool Owning, mozilla::RunnableKind Kind>
795
struct nsRunnableMethodTraits;
796
797
template<typename PtrType, class C, typename R, bool Owning, mozilla::RunnableKind Kind, typename... As>
798
struct nsRunnableMethodTraits<PtrType, R(C::*)(As...), Owning, Kind>
799
{
800
  typedef typename mozilla::RemoveRawOrSmartPointer<PtrType>::Type class_type;
801
  static_assert(mozilla::IsBaseOf<C, class_type>::value,
802
                "Stored class must inherit from method's class");
803
  typedef R return_type;
804
  typedef nsRunnableMethod<C, R, Owning, Kind> base_type;
805
  static const bool can_cancel = Kind == mozilla::RunnableKind::Cancelable;
806
};
807
808
template<typename PtrType, class C, typename R, bool Owning, mozilla::RunnableKind Kind, typename... As>
809
struct nsRunnableMethodTraits<PtrType, R(C::*)(As...) const, Owning, Kind>
810
{
811
  typedef const typename mozilla::RemoveRawOrSmartPointer<PtrType>::Type class_type;
812
  static_assert(mozilla::IsBaseOf<C, class_type>::value,
813
                "Stored class must inherit from method's class");
814
  typedef R return_type;
815
  typedef nsRunnableMethod<C, R, Owning, Kind> base_type;
816
  static const bool can_cancel = Kind == mozilla::RunnableKind::Cancelable;
817
};
818
819
#ifdef NS_HAVE_STDCALL
820
template<typename PtrType, class C, typename R, bool Owning, mozilla::RunnableKind Kind, typename... As>
821
struct nsRunnableMethodTraits<PtrType, R(__stdcall C::*)(As...), Owning, Kind>
822
{
823
  typedef typename mozilla::RemoveRawOrSmartPointer<PtrType>::Type class_type;
824
  static_assert(mozilla::IsBaseOf<C, class_type>::value,
825
                "Stored class must inherit from method's class");
826
  typedef R return_type;
827
  typedef nsRunnableMethod<C, R, Owning, Kind> base_type;
828
  static const bool can_cancel = Kind == mozilla::RunnableKind::Cancelable;
829
};
830
831
template<typename PtrType, class C, typename R, bool Owning, mozilla::RunnableKind Kind>
832
struct nsRunnableMethodTraits<PtrType, R(NS_STDCALL C::*)(), Owning, Kind>
833
{
834
  typedef typename mozilla::RemoveRawOrSmartPointer<PtrType>::Type class_type;
835
  static_assert(mozilla::IsBaseOf<C, class_type>::value,
836
                "Stored class must inherit from method's class");
837
  typedef R return_type;
838
  typedef nsRunnableMethod<C, R, Owning, Kind> base_type;
839
  static const bool can_cancel = Kind == mozilla::RunnableKind::Cancelable;
840
};
841
842
template<typename PtrType, class C, typename R, bool Owning, mozilla::RunnableKind Kind, typename... As>
843
struct nsRunnableMethodTraits<PtrType, R(__stdcall C::*)(As...) const, Owning, Kind>
844
{
845
  typedef const typename mozilla::RemoveRawOrSmartPointer<PtrType>::Type class_type;
846
  static_assert(mozilla::IsBaseOf<C, class_type>::value,
847
                "Stored class must inherit from method's class");
848
  typedef R return_type;
849
  typedef nsRunnableMethod<C, R, Owning, Kind> base_type;
850
  static const bool can_cancel = Kind == mozilla::RunnableKind::Cancelable;
851
};
852
853
template<typename PtrType, class C, typename R, bool Owning, mozilla::RunnableKind Kind>
854
struct nsRunnableMethodTraits<PtrType, R(NS_STDCALL C::*)() const, Owning, Kind>
855
{
856
  typedef const typename mozilla::RemoveRawOrSmartPointer<PtrType>::Type class_type;
857
  static_assert(mozilla::IsBaseOf<C, class_type>::value,
858
                "Stored class must inherit from method's class");
859
  typedef R return_type;
860
  typedef nsRunnableMethod<C, R, Owning, Kind> base_type;
861
  static const bool can_cancel = Kind == mozilla::RunnableKind::Cancelable;
862
};
863
#endif
864
865
866
// IsParameterStorageClass<T>::value is true if T is a parameter-storage class
867
// that will be recognized by NS_New[NonOwning]RunnableMethodWithArg[s] to
868
// force a specific storage&passing strategy (instead of inferring one,
869
// see ParameterStorage).
870
// When creating a new storage class, add a specialization for it to be
871
// recognized.
872
template<typename T>
873
struct IsParameterStorageClass : public mozilla::FalseType {};
874
875
// StoreXPassByY structs used to inform nsRunnableMethodArguments how to
876
// store arguments, and how to pass them to the target method.
877
878
template<typename T>
879
struct StoreCopyPassByValue
880
{
881
  typedef typename mozilla::Decay<T>::Type stored_type;
882
  typedef stored_type passed_type;
883
  stored_type m;
884
  template <typename A>
885
0
  MOZ_IMPLICIT StoreCopyPassByValue(A&& a) : m(std::forward<A>(a)) {}
Unexecuted instantiation: StoreCopyPassByValue<TestThreadUtils::Spy>::StoreCopyPassByValue<TestThreadUtils::Spy&>(TestThreadUtils::Spy&)
Unexecuted instantiation: StoreCopyPassByValue<TestThreadUtils::Spy>::StoreCopyPassByValue<TestThreadUtils::Spy>(TestThreadUtils::Spy&&)
886
0
  passed_type PassAsParameter() { return m; }
887
};
888
template<typename S>
889
struct IsParameterStorageClass<StoreCopyPassByValue<S>>
890
  : public mozilla::TrueType {};
891
892
template<typename T>
893
struct StoreCopyPassByConstLRef
894
{
895
  typedef typename mozilla::Decay<T>::Type stored_type;
896
  typedef const stored_type& passed_type;
897
  stored_type m;
898
  template <typename A>
899
0
  MOZ_IMPLICIT StoreCopyPassByConstLRef(A&& a) : m(std::forward<A>(a)) {}
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> >::StoreCopyPassByConstLRef<nsTString<char>&>(nsTString<char>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsresult>::StoreCopyPassByConstLRef<nsresult&>(nsresult&)
Unexecuted instantiation: StoreCopyPassByConstLRef<bool>::StoreCopyPassByConstLRef<bool&>(bool&)
Unexecuted instantiation: StoreCopyPassByConstLRef<double>::StoreCopyPassByConstLRef<double&>(double&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char16_t> >::StoreCopyPassByConstLRef<nsTSubstring<char16_t> const&>(nsTSubstring<char16_t> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> const>::StoreCopyPassByConstLRef<nsTString<char> const&>(nsTString<char> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned int const>::StoreCopyPassByConstLRef<unsigned int const&>(unsigned int const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned long const>::StoreCopyPassByConstLRef<unsigned long const&>(unsigned long const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsresult const>::StoreCopyPassByConstLRef<nsresult const&>(nsresult const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const>::StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const&>(mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::TimeStamp const>::StoreCopyPassByConstLRef<mozilla::TimeStamp const&>(mozilla::TimeStamp const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>::StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const&>(mozilla::net::ResourceTimingStruct const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<long const>::StoreCopyPassByConstLRef<long const&>(long const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> const>::StoreCopyPassByConstLRef<nsTSubstring<char> const&>(nsTSubstring<char> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsresult>::StoreCopyPassByConstLRef<nsresult const&>(nsresult const&)
Unexecuted instantiation: 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> > > > >::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> > > >&>(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: StoreCopyPassByConstLRef<mozilla::ipc::Side>::StoreCopyPassByConstLRef<mozilla::ipc::Side&>(mozilla::ipc::Side&)
Unexecuted instantiation: StoreCopyPassByConstLRef<bool>::StoreCopyPassByConstLRef<bool>(bool&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned long>::StoreCopyPassByConstLRef<unsigned long>(unsigned long&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> const>::StoreCopyPassByConstLRef<nsTLiteralString<char> const&>(nsTLiteralString<char> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<int>::StoreCopyPassByConstLRef<bool&>(bool&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>::StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch&>(mozilla::layers::LayersObserverEpoch&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::LayersId>::StoreCopyPassByConstLRef<mozilla::layers::LayersId&>(mozilla::layers::LayersId&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&>(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::layers::ZoomConstraints> >::StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::layers::ZoomConstraints> const&>(mozilla::Maybe<mozilla::layers::ZoomConstraints> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>::StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid const&>(mozilla::layers::ScrollableLayerGuid const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::FocusTarget>::StoreCopyPassByConstLRef<mozilla::layers::FocusTarget const&>(mozilla::layers::FocusTarget const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>::StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>(mozilla::layers::ScrollableLayerGuid&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned short>::StoreCopyPassByConstLRef<unsigned short&>(unsigned short&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >::StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&>(mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>::StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType&>(mozilla::layers::GeckoContentController::TapType&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::FrameMetrics>::StoreCopyPassByConstLRef<mozilla::layers::FrameMetrics&>(mozilla::layers::FrameMetrics&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned int>::StoreCopyPassByConstLRef<mozilla::layers::ZoomToRectBehavior>(mozilla::layers::ZoomToRectBehavior&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >::StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&>(mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned long>::StoreCopyPassByConstLRef<unsigned long&>(unsigned long&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >::StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&>(mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >::StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&>(mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::PinchGestureInput::PinchGestureType>::StoreCopyPassByConstLRef<mozilla::PinchGestureInput::PinchGestureType&>(mozilla::PinchGestureInput::PinchGestureType&)
Unexecuted instantiation: StoreCopyPassByConstLRef<int>::StoreCopyPassByConstLRef<int&>(int&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>::StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange&>(mozilla::layers::GeckoContentController::APZStateChange&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char16_t> >::StoreCopyPassByConstLRef<nsTString<char16_t> const&>(nsTString<char16_t> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned long>::StoreCopyPassByConstLRef<unsigned long const&>(unsigned long const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap>::StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap const&>(mozilla::layers::KeyboardMap const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned int>::StoreCopyPassByConstLRef<unsigned int const&>(unsigned int const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >::StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&>(mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<bool>::StoreCopyPassByConstLRef<bool const&>(bool const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<float>::StoreCopyPassByConstLRef<float const&>(float const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics>::StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics const&>(mozilla::layers::AsyncDragMetrics const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> >::StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&>(mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned int>::StoreCopyPassByConstLRef<unsigned int&>(unsigned int&)
Unexecuted instantiation: StoreCopyPassByConstLRef<base::FileDescriptor>::StoreCopyPassByConstLRef<base::FileDescriptor&>(base::FileDescriptor&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> >::StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> const&>(nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::TimeStamp>::StoreCopyPassByConstLRef<mozilla::TimeStamp&>(mozilla::TimeStamp&)
Unexecuted instantiation: StoreCopyPassByConstLRef<float>::StoreCopyPassByConstLRef<float&>(float&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >::StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&>(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>::StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor const&>(mozilla::layers::SurfaceDescriptor const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise>::StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise const&>(mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<double>::StoreCopyPassByConstLRef<double>(double&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::TimeStamp>::StoreCopyPassByConstLRef<mozilla::TimeStamp>(mozilla::TimeStamp&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned int>::StoreCopyPassByConstLRef<unsigned int>(unsigned int&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::wr::MemoryReport>::StoreCopyPassByConstLRef<mozilla::wr::MemoryReport&>(mozilla::wr::MemoryReport&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::wr::WrWindowId>::StoreCopyPassByConstLRef<mozilla::wr::WrWindowId&>(mozilla::wr::WrWindowId&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned int>::StoreCopyPassByConstLRef<int&>(int&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >::StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsIWidget::TouchPointerState>::StoreCopyPassByConstLRef<nsIWidget::TouchPointerState>(nsIWidget::TouchPointerState&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&>(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> >::StoreCopyPassByConstLRef<nsTString<char> >(nsTString<char>&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char16_t> const>::StoreCopyPassByConstLRef<nsTString<char16_t> const&>(nsTString<char16_t> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>::StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>(mozilla::MediaSegment::Type&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::MediaDecoder::PlayState>::StoreCopyPassByConstLRef<mozilla::MediaDecoder::PlayState&>(mozilla::MediaDecoder::PlayState&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> >::StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal>&>(nsMainThreadPtrHandle<nsIPrincipal>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::media::TimeUnit> >::StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::media::TimeUnit>&>(mozilla::Maybe<mozilla::media::TimeUnit>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::media::TimeUnit>::StoreCopyPassByConstLRef<mozilla::media::TimeUnit&>(mozilla::media::TimeUnit&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::VideoDecodeMode>::StoreCopyPassByConstLRef<mozilla::VideoDecodeMode&>(mozilla::VideoDecodeMode&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::media::TimeIntervals>::StoreCopyPassByConstLRef<mozilla::media::TimeIntervals&>(mozilla::media::TimeIntervals&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::TrackInfo::TrackType>::StoreCopyPassByConstLRef<mozilla::TrackInfo::TrackType&>(mozilla::TrackInfo::TrackType&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> >::StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> const&>(nsMainThreadPtrHandle<nsIPrincipal> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> >::StoreCopyPassByConstLRef<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>&>(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<long>::StoreCopyPassByConstLRef<long&>(long&)
Unexecuted instantiation: StoreCopyPassByConstLRef<long>::StoreCopyPassByConstLRef<long>(long&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>::StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>(NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> >::StoreCopyPassByConstLRef<nsTString<char> const&>(nsTString<char> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTArray<unsigned char> >::StoreCopyPassByConstLRef<nsTArray<unsigned char> >(nsTArray<unsigned char>&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::MediaKeyMessageType>::StoreCopyPassByConstLRef<mozilla::dom::MediaKeyMessageType>(mozilla::dom::MediaKeyMessageType&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::MediaKeyStatus>::StoreCopyPassByConstLRef<mozilla::dom::MediaKeyStatus>(mozilla::dom::MediaKeyStatus&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned int const>::StoreCopyPassByConstLRef<unsigned int>(unsigned int&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned int const>::StoreCopyPassByConstLRef<unsigned int&>(unsigned int&)
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&)>::StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&)>(bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&))
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> const>::StoreCopyPassByConstLRef<nsTString<char> >(nsTString<char>&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&)>::StoreCopyPassByConstLRef<bool (mozilla::gmp::ChromiumCDMChild::*&)(unsigned int, nsTString<char> const&)>(bool (mozilla::gmp::ChromiumCDMChild::*&)(unsigned int, nsTString<char> const&))
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&)>::StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&)>(bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&))
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&)>::StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&)>(bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&))
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTArray<unsigned char> const>::StoreCopyPassByConstLRef<nsTArray<unsigned char>&>(nsTArray<unsigned char>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&)>::StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&)>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&))
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const>::StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation>&>(nsTArray<mozilla::gmp::CDMKeyInformation>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&)>::StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&)>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&))
Unexecuted instantiation: StoreCopyPassByConstLRef<double const>::StoreCopyPassByConstLRef<double&>(double&)
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&)>::StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, double const&)>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, double const&))
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&)>::StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&)>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&))
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> >::StoreCopyPassByConstLRef<NS_ConvertUTF16toUTF8>(NS_ConvertUTF16toUTF8&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::OriginAttributesPattern>::StoreCopyPassByConstLRef<mozilla::OriginAttributesPattern const&>(mozilla::OriginAttributesPattern const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>::StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine&>(mozilla::camera::CaptureEngine&)
Unexecuted instantiation: StoreCopyPassByConstLRef<int>::StoreCopyPassByConstLRef<int const&>(int const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability>::StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability&>(mozilla::camera::VideoCaptureCapability&)
Unexecuted instantiation: StoreCopyPassByConstLRef<SPDNotificationType>::StoreCopyPassByConstLRef<SPDNotificationType&>(SPDNotificationType&)
Unexecuted instantiation: StoreCopyPassByConstLRef<SPDNotificationType>::StoreCopyPassByConstLRef<SPDNotificationType>(SPDNotificationType&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> >::StoreCopyPassByConstLRef<nsTSubstring<char> const&>(nsTSubstring<char> const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> >::StoreCopyPassByConstLRef<char const*&>(char const*&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::plugins::NPRemoteWindow>::StoreCopyPassByConstLRef<mozilla::plugins::NPRemoteWindow const&>(mozilla::plugins::NPRemoteWindow const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<gfxSurfaceType>::StoreCopyPassByConstLRef<gfxSurfaceType const&>(gfxSurfaceType const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> >::StoreCopyPassByConstLRef<nsTAutoStringN<char, 64ul>&>(nsTAutoStringN<char, 64ul>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >::StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent>&>(mozilla::dom::IdType<mozilla::dom::TabParent>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>::StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch const&>(mozilla::layers::LayersObserverEpoch const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::ContentParent::ShutDownMethod>::StoreCopyPassByConstLRef<mozilla::dom::ContentParent::ShutDownMethod>(mozilla::dom::ContentParent::ShutDownMethod&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char16_t> >::StoreCopyPassByConstLRef<nsTAutoStringN<char16_t, 64ul>&>(nsTAutoStringN<char16_t, 64ul>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>::StoreCopyPassByConstLRef<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::ServiceWorkerRegistrationDescriptor>::StoreCopyPassByConstLRef<mozilla::dom::ServiceWorkerRegistrationDescriptor const&>(mozilla::dom::ServiceWorkerRegistrationDescriptor const&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char16_t> >::StoreCopyPassByConstLRef<nsTString<char16_t>&>(nsTString<char16_t>&)
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> >::StoreCopyPassByConstLRef<char const (&) [10]>(char const (&) [10])
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::PresentationTCPSessionTransport::ReadyState>::StoreCopyPassByConstLRef<mozilla::dom::PresentationTCPSessionTransport::ReadyState>(mozilla::dom::PresentationTCPSessionTransport::ReadyState&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap>::StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap&>(mozilla::layers::KeyboardMap&)
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>::StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid&>(mozilla::layers::ScrollableLayerGuid&)
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned int>::StoreCopyPassByConstLRef<int>(int&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<int>::StoreCopyPassByConstLRef<int>(int&&)
Unexecuted instantiation: StoreCopyPassByConstLRef<int>::StoreCopyPassByConstLRef<short&>(short&)
Unexecuted instantiation: StoreCopyPassByConstLRef<TestThreadUtils::Spy>::StoreCopyPassByConstLRef<TestThreadUtils::Spy&>(TestThreadUtils::Spy&)
Unexecuted instantiation: StoreCopyPassByConstLRef<TestThreadUtils::Spy>::StoreCopyPassByConstLRef<TestThreadUtils::Spy>(TestThreadUtils::Spy&&)
900
0
  passed_type PassAsParameter() { return m; }
Unexecuted instantiation: StoreCopyPassByConstLRef<bool>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<nsresult>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<double>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char16_t> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<nsresult const>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned long const>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned int const>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char> const>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::TimeStamp const>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<long const>::PassAsParameter()
Unexecuted instantiation: 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> > > > >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::ipc::Side>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned long>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::LayersId>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<int>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::layers::ZoomConstraints> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::FocusTarget>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned short>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::FrameMetrics>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<unsigned int>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::PinchGestureInput::PinchGestureType>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<float>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<base::FileDescriptor>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::TimeStamp>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::wr::MemoryReport>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::wr::WrWindowId>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<nsIWidget::TouchPointerState>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTString<char16_t> const>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::MediaDecoder::PlayState>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::media::TimeUnit> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::media::TimeUnit>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::VideoDecodeMode>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::media::TimeIntervals>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::TrackInfo::TrackType>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<long>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::MediaKeyMessageType>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTArray<unsigned char> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::MediaKeyStatus>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&)>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&)>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&)>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&)>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&)>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTArray<unsigned char> const>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&)>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&)>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<double const>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&)>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::OriginAttributesPattern>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<SPDNotificationType>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<gfxSurfaceType>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::plugins::NPRemoteWindow>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::ContentParent::ShutDownMethod>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::ServiceWorkerRegistrationDescriptor>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<mozilla::dom::PresentationTCPSessionTransport::ReadyState>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByConstLRef<TestThreadUtils::Spy>::PassAsParameter()
901
};
902
template<typename S>
903
struct IsParameterStorageClass<StoreCopyPassByConstLRef<S>>
904
  : public mozilla::TrueType {};
905
906
template<typename T>
907
struct StoreCopyPassByLRef
908
{
909
  typedef typename mozilla::Decay<T>::Type stored_type;
910
  typedef stored_type& passed_type;
911
  stored_type m;
912
  template <typename A>
913
0
  MOZ_IMPLICIT StoreCopyPassByLRef(A&& a) : m(std::forward<A>(a)) {}
914
0
  passed_type PassAsParameter() { return m; }
915
};
916
template<typename S>
917
struct IsParameterStorageClass<StoreCopyPassByLRef<S>>
918
  : public mozilla::TrueType {};
919
920
template<typename T>
921
struct StoreCopyPassByRRef
922
{
923
  typedef typename mozilla::Decay<T>::Type stored_type;
924
  typedef stored_type&& passed_type;
925
  stored_type m;
926
  template <typename A>
927
0
  MOZ_IMPLICIT StoreCopyPassByRRef(A&& a) : m(std::forward<A>(a)) {}
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> >(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&)
Unexecuted instantiation: StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> >::StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid>&>(nsTArray<mozilla::layers::ScrollableLayerGuid>&)
Unexecuted instantiation: StoreCopyPassByRRef<nsTArray<unsigned int> >::StoreCopyPassByRRef<nsTArray<unsigned int> >(nsTArray<unsigned int>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> >(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> >(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> >(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild> >(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> >(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild> >(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> >(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> >(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> >(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > >::StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > >(mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::TimedMetadata>::StoreCopyPassByRRef<mozilla::TimedMetadata>(mozilla::TimedMetadata&&)
Unexecuted instantiation: StoreCopyPassByRRef<already_AddRefed<mozilla::layers::KnowsCompositor> >::StoreCopyPassByRRef<already_AddRefed<mozilla::layers::KnowsCompositor> >(already_AddRefed<mozilla::layers::KnowsCompositor>&&)
Unexecuted instantiation: StoreCopyPassByRRef<bool>::StoreCopyPassByRRef<bool>(bool&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaPlaybackEvent::EventType>::StoreCopyPassByRRef<mozilla::MediaPlaybackEvent::EventType&>(mozilla::MediaPlaybackEvent::EventType&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaDecoderOwner::NextFrameStatus>::StoreCopyPassByRRef<mozilla::MediaDecoderOwner::NextFrameStatus&>(mozilla::MediaDecoderOwner::NextFrameStatus&)
Unexecuted instantiation: StoreCopyPassByRRef<RefPtr<mozilla::AudioData> >::StoreCopyPassByRRef<RefPtr<mozilla::AudioData>&>(RefPtr<mozilla::AudioData>&)
Unexecuted instantiation: StoreCopyPassByRRef<RefPtr<mozilla::VideoData> >::StoreCopyPassByRRef<RefPtr<mozilla::VideoData>&>(RefPtr<mozilla::VideoData>&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility>::StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility>(mozilla::MediaDecoderEventVisibility&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > > >::StoreCopyPassByRRef<mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > > >(mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> > >::StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> > >(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaPlaybackEvent>::StoreCopyPassByRRef<mozilla::MediaPlaybackEvent&>(mozilla::MediaPlaybackEvent&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::SeekTarget>::StoreCopyPassByRRef<mozilla::SeekTarget const&>(mozilla::SeekTarget const&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaResult>::StoreCopyPassByRRef<mozilla::MediaResult const&>(mozilla::MediaResult const&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility>::StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility&>(mozilla::MediaDecoderEventVisibility&)
Unexecuted instantiation: StoreCopyPassByRRef<nsAutoPtr<mozilla::MediaInfo> >::StoreCopyPassByRRef<nsAutoPtr<mozilla::MediaInfo> >(nsAutoPtr<mozilla::MediaInfo>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::DecoderDoctorEvent>::StoreCopyPassByRRef<mozilla::DecoderDoctorEvent&>(mozilla::DecoderDoctorEvent&)
Unexecuted instantiation: StoreCopyPassByRRef<nsTString<char16_t> >::StoreCopyPassByRRef<nsTString<char16_t>&>(nsTString<char16_t>&)
Unexecuted instantiation: StoreCopyPassByRRef<nsTArray<unsigned char> >::StoreCopyPassByRRef<nsTArray<unsigned char>&>(nsTArray<unsigned char>&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::media::TimeUnit>::StoreCopyPassByRRef<mozilla::media::TimeUnit const&>(mozilla::media::TimeUnit const&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::SeekTarget>::StoreCopyPassByRRef<mozilla::SeekTarget>(mozilla::SeekTarget&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaData::Type>::StoreCopyPassByRRef<mozilla::MediaData::Type&>(mozilla::MediaData::Type&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::AudioSegment>::StoreCopyPassByRRef<mozilla::AudioSegment>(mozilla::AudioSegment&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::VideoSegment>::StoreCopyPassByRRef<mozilla::VideoSegment>(mozilla::VideoSegment&&)
Unexecuted instantiation: StoreCopyPassByRRef<NS_ConvertUTF8toUTF16>::StoreCopyPassByRRef<NS_ConvertUTF8toUTF16>(NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> >(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&)
Unexecuted instantiation: StoreCopyPassByRRef<long>::StoreCopyPassByRRef<long&>(long&)
Unexecuted instantiation: StoreCopyPassByRRef<bool>::StoreCopyPassByRRef<bool&>(bool&)
Unexecuted instantiation: StoreCopyPassByRRef<RefPtr<mozilla::TrackBuffersManager> >::StoreCopyPassByRRef<RefPtr<mozilla::TrackBuffersManager>&>(RefPtr<mozilla::TrackBuffersManager>&)
Unexecuted instantiation: StoreCopyPassByRRef<int>::StoreCopyPassByRRef<int&>(int&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::SourceBufferAttributes>::StoreCopyPassByRRef<mozilla::SourceBufferAttributes const&>(mozilla::SourceBufferAttributes const&)
Unexecuted instantiation: StoreCopyPassByRRef<already_AddRefed<mozilla::MediaByteBuffer> >::StoreCopyPassByRRef<already_AddRefed<mozilla::MediaByteBuffer> >(already_AddRefed<mozilla::MediaByteBuffer>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::media::Interval<mozilla::media::TimeUnit> >::StoreCopyPassByRRef<mozilla::media::Interval<mozilla::media::TimeUnit> >(mozilla::media::Interval<mozilla::media::TimeUnit>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::TrackInfo::TrackType>::StoreCopyPassByRRef<mozilla::TrackInfo::TrackType const&>(mozilla::TrackInfo::TrackType const&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> >(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent> >(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent> >(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> >(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> > >::StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> > >(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > >::StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > >(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&)
Unexecuted instantiation: StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> >::StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> const&>(nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProfilerChild> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProfilerChild> >(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> >(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> >::StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> >(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&)
Unexecuted instantiation: StoreCopyPassByRRef<nsTArray<unsigned char> >::StoreCopyPassByRRef<nsTArray<unsigned char> >(nsTArray<unsigned char>&&)
Unexecuted instantiation: StoreCopyPassByRRef<int>::StoreCopyPassByRRef<int>(int&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&)
Unexecuted instantiation: StoreCopyPassByRRef<TestThreadUtils::Spy>::StoreCopyPassByRRef<TestThreadUtils::Spy&>(TestThreadUtils::Spy&)
Unexecuted instantiation: StoreCopyPassByRRef<TestThreadUtils::Spy>::StoreCopyPassByRRef<TestThreadUtils::Spy>(TestThreadUtils::Spy&&)
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> > >::StoreCopyPassByRRef<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> > >(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&)
Unexecuted instantiation: StoreCopyPassByRRef<SomeEvent>::StoreCopyPassByRRef<SomeEvent&>(SomeEvent&)
Unexecuted instantiation: StoreCopyPassByRRef<RefPtr<RefCounter> >::StoreCopyPassByRRef<RefPtr<RefCounter>&>(RefPtr<RefCounter>&)
928
0
  passed_type PassAsParameter() { return std::move(m); }
Unexecuted instantiation: StoreCopyPassByRRef<bool>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<nsTArray<unsigned int> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::TimedMetadata>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<already_AddRefed<mozilla::layers::KnowsCompositor> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaPlaybackEvent::EventType>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaDecoderOwner::NextFrameStatus>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<RefPtr<mozilla::AudioData> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<RefPtr<mozilla::VideoData> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> > >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > > >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaPlaybackEvent>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::SeekTarget>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaResult>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<nsAutoPtr<mozilla::MediaInfo> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::DecoderDoctorEvent>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<nsTArray<unsigned char> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<nsTString<char16_t> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::media::TimeUnit>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::MediaData::Type>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::AudioSegment>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::VideoSegment>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<NS_ConvertUTF8toUTF16>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<long>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<RefPtr<mozilla::TrackBuffersManager> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<int>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<already_AddRefed<mozilla::MediaByteBuffer> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::SourceBufferAttributes>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::media::Interval<mozilla::media::TimeUnit> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::TrackInfo::TrackType>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> > >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProfilerChild> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<TestThreadUtils::Spy>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> > >::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<SomeEvent>::PassAsParameter()
Unexecuted instantiation: StoreCopyPassByRRef<RefPtr<RefCounter> >::PassAsParameter()
929
};
930
template<typename S>
931
struct IsParameterStorageClass<StoreCopyPassByRRef<S>>
932
  : public mozilla::TrueType {};
933
934
template<typename T>
935
struct StoreRefPassByLRef
936
{
937
  typedef T& stored_type;
938
  typedef T& passed_type;
939
  stored_type m;
940
  template <typename A>
941
0
  MOZ_IMPLICIT StoreRefPassByLRef(A& a) : m(a) {}
Unexecuted instantiation: StoreRefPassByLRef<int>::StoreRefPassByLRef<int>(int&)
Unexecuted instantiation: StoreRefPassByLRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::StoreRefPassByLRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&)
Unexecuted instantiation: StoreRefPassByLRef<TestThreadUtils::Spy>::StoreRefPassByLRef<TestThreadUtils::Spy>(TestThreadUtils::Spy&)
Unexecuted instantiation: StoreRefPassByLRef<GMPTestMonitor>::StoreRefPassByLRef<GMPTestMonitor>(GMPTestMonitor&)
942
0
  passed_type PassAsParameter() { return m; }
Unexecuted instantiation: StoreRefPassByLRef<int>::PassAsParameter()
Unexecuted instantiation: StoreRefPassByLRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::PassAsParameter()
Unexecuted instantiation: StoreRefPassByLRef<TestThreadUtils::Spy>::PassAsParameter()
Unexecuted instantiation: StoreRefPassByLRef<GMPTestMonitor>::PassAsParameter()
943
};
944
template<typename S>
945
struct IsParameterStorageClass<StoreRefPassByLRef<S>>
946
  : public mozilla::TrueType {};
947
948
template<typename T>
949
struct StoreConstRefPassByConstLRef
950
{
951
  typedef const T& stored_type;
952
  typedef const T& passed_type;
953
  stored_type m;
954
  template <typename A>
955
0
  MOZ_IMPLICIT StoreConstRefPassByConstLRef(const A& a) : m(a) {}
Unexecuted instantiation: StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo>::StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo>(mozilla::ipc::PrincipalInfo const&)
Unexecuted instantiation: StoreConstRefPassByConstLRef<nsTArray<unsigned char> >::StoreConstRefPassByConstLRef<nsTArray<unsigned char> >(nsTArray<unsigned char> const&)
Unexecuted instantiation: StoreConstRefPassByConstLRef<GMPVideoCodec>::StoreConstRefPassByConstLRef<GMPVideoCodec>(GMPVideoCodec const&)
956
0
  passed_type PassAsParameter() { return m; }
Unexecuted instantiation: StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo>::PassAsParameter()
Unexecuted instantiation: StoreConstRefPassByConstLRef<GMPVideoCodec>::PassAsParameter()
Unexecuted instantiation: StoreConstRefPassByConstLRef<nsTArray<unsigned char> >::PassAsParameter()
957
};
958
template<typename S>
959
struct IsParameterStorageClass<StoreConstRefPassByConstLRef<S>>
960
  : public mozilla::TrueType {};
961
962
template<typename T>
963
struct StoreRefPtrPassByPtr
964
{
965
  typedef RefPtr<T> stored_type;
966
  typedef T* passed_type;
967
  stored_type m;
968
  template <typename A>
969
0
  MOZ_IMPLICIT StoreRefPtrPassByPtr(A&& a) : m(std::forward<A>(a)) {}
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::ConnectionData>::StoreRefPtrPassByPtr<mozilla::net::ConnectionData*>(mozilla::net::ConnectionData*&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::LookupArgument>::StoreRefPtrPassByPtr<RefPtr<mozilla::net::LookupArgument>&>(RefPtr<mozilla::net::LookupArgument>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::SocketData>::StoreRefPtrPassByPtr<RefPtr<mozilla::net::SocketData>&>(RefPtr<mozilla::net::SocketData>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::HttpData>::StoreRefPtrPassByPtr<RefPtr<mozilla::net::HttpData>&>(RefPtr<mozilla::net::HttpData>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::WebSocketRequest>::StoreRefPtrPassByPtr<RefPtr<mozilla::net::WebSocketRequest>&>(RefPtr<mozilla::net::WebSocketRequest>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::DnsData>::StoreRefPtrPassByPtr<RefPtr<mozilla::net::DnsData>&>(RefPtr<mozilla::net::DnsData>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::RcwnData>::StoreRefPtrPassByPtr<RefPtr<mozilla::net::RcwnData>&>(RefPtr<mozilla::net::RcwnData>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::ConnectionData>::StoreRefPtrPassByPtr<RefPtr<mozilla::net::ConnectionData>&>(RefPtr<mozilla::net::ConnectionData>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<nsILoadContextInfo>::StoreRefPtrPassByPtr<nsILoadContextInfo*&>(nsILoadContextInfo*&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::HttpChannelChild>::StoreRefPtrPassByPtr<RefPtr<mozilla::net::HttpChannelChild> >(RefPtr<mozilla::net::HttpChannelChild>&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::HttpChannelChild>::StoreRefPtrPassByPtr<RefPtr<mozilla::net::HttpChannelChild>&>(RefPtr<mozilla::net::HttpChannelChild>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<nsJARInputThunk>::StoreRefPtrPassByPtr<RefPtr<nsJARInputThunk>&>(RefPtr<nsJARInputThunk>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozIStorageError>::StoreRefPtrPassByPtr<mozIStorageError*&>(mozIStorageError*&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::storage::ResultSet>::StoreRefPtrPassByPtr<already_AddRefed<mozilla::storage::ResultSet> >(already_AddRefed<mozilla::storage::ResultSet>&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::layers::Image>::StoreRefPtrPassByPtr<mozilla::layers::Image*>(mozilla::layers::Image*&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::layers::APZCTreeManager>::StoreRefPtrPassByPtr<RefPtr<mozilla::layers::APZCTreeManager> >(RefPtr<mozilla::layers::APZCTreeManager>&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController>::StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController*>(mozilla::layers::AsyncPanZoomController*&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const>::StoreRefPtrPassByPtr<RefPtr<mozilla::layers::AsyncPanZoomController const>&>(RefPtr<mozilla::layers::AsyncPanZoomController const>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::layers::OverscrollHandoffChain const>::StoreRefPtrPassByPtr<RefPtr<mozilla::layers::OverscrollHandoffChain const>&>(RefPtr<mozilla::layers::OverscrollHandoffChain const>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::Element>::StoreRefPtrPassByPtr<nsCOMPtr<mozilla::dom::Element>&>(nsCOMPtr<mozilla::dom::Element>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::VREventObserver>::StoreRefPtrPassByPtr<mozilla::dom::VREventObserver*&>(mozilla::dom::VREventObserver*&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>::StoreRefPtrPassByPtr<RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&>(RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::wr::RenderTextureHost>::StoreRefPtrPassByPtr<RefPtr<mozilla::wr::RenderTextureHost>&>(RefPtr<mozilla::wr::RenderTextureHost>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<nsIObserver>::StoreRefPtrPassByPtr<nsIObserver*&>(nsIObserver*&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::Blob>::StoreRefPtrPassByPtr<decltype(nullptr)>(decltype(nullptr)&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::HTMLMediaElement>::StoreRefPtrPassByPtr<mozilla::dom::HTMLMediaElement*&>(mozilla::dom::HTMLMediaElement*&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack>::StoreRefPtrPassByPtr<RefPtr<mozilla::dom::MediaStreamTrack>&>(RefPtr<mozilla::dom::MediaStreamTrack>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::MediaStream>::StoreRefPtrPassByPtr<mozilla::MediaStream*&>(mozilla::MediaStream*&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >::StoreRefPtrPassByPtr<mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*>(mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >::StoreRefPtrPassByPtr<mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*>(mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >::StoreRefPtrPassByPtr<mozilla::Mirror<mozilla::media::TimeUnit>::Impl*>(mozilla::Mirror<mozilla::media::TimeUnit>::Impl*&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> >::StoreRefPtrPassByPtr<mozilla::Mirror<bool>::Impl*>(mozilla::Mirror<bool>::Impl*&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::CDMProxy>::StoreRefPtrPassByPtr<mozilla::CDMProxy*&>(mozilla::CDMProxy*&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> >::StoreRefPtrPassByPtr<mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*>(mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> >::StoreRefPtrPassByPtr<mozilla::Mirror<double>::Impl*>(mozilla::Mirror<double>::Impl*&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > >::StoreRefPtrPassByPtr<mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*>(mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::MediaDecoder>::StoreRefPtrPassByPtr<mozilla::MediaDecoder*&>(mozilla::MediaDecoder*&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::SourceListener>::StoreRefPtrPassByPtr<RefPtr<mozilla::SourceListener>&>(RefPtr<mozilla::SourceListener>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>::StoreRefPtrPassByPtr<RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>&>(RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::MediaEncoder::EncoderListener>::StoreRefPtrPassByPtr<RefPtr<mozilla::MediaEncoder::EncoderListener>&>(RefPtr<mozilla::MediaEncoder::EncoderListener>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::gmp::GMPParent>::StoreRefPtrPassByPtr<RefPtr<mozilla::gmp::GMPParent>&>(RefPtr<mozilla::gmp::GMPParent>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::SourceBufferTask>::StoreRefPtrPassByPtr<mozilla::SourceBufferTask*&>(mozilla::SourceBufferTask*&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::MediaRawData>::StoreRefPtrPassByPtr<mozilla::MediaRawData*&>(mozilla::MediaRawData*&)
Unexecuted instantiation: StoreRefPtrPassByPtr<nsAtom>::StoreRefPtrPassByPtr<nsAtom*&>(nsAtom*&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::Element>::StoreRefPtrPassByPtr<mozilla::dom::Element*&>(mozilla::dom::Element*&)
Unexecuted instantiation: StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>::StoreRefPtrPassByPtr<nsCOMPtr<nsIWebBrowserPersistDocument>&>(nsCOMPtr<nsIWebBrowserPersistDocument>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<nsIOutputStream>::StoreRefPtrPassByPtr<nsCOMPtr<nsIOutputStream>&>(nsCOMPtr<nsIOutputStream>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::SDBRequest>::StoreRefPtrPassByPtr<mozilla::dom::SDBRequest*>(mozilla::dom::SDBRequest*&&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::Promise>::StoreRefPtrPassByPtr<RefPtr<mozilla::dom::Promise>&>(RefPtr<mozilla::dom::Promise>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<nsIPresentationSessionTransport>::StoreRefPtrPassByPtr<nsCOMPtr<nsIPresentationSessionTransport>&>(nsCOMPtr<nsIPresentationSessionTransport>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::HTMLInputElement>::StoreRefPtrPassByPtr<RefPtr<mozilla::dom::HTMLInputElement>&>(RefPtr<mozilla::dom::HTMLInputElement>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<nsFoo>::StoreRefPtrPassByPtr<RefPtr<nsFoo>&>(RefPtr<nsFoo>&)
Unexecuted instantiation: StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports>::StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports*>(TestThreadUtils::SpyWithISupports*&&)
970
0
  passed_type PassAsParameter() { return m.get(); }
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::ConnectionData>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::LookupArgument>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::SocketData>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::HttpData>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::WebSocketRequest>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::DnsData>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::RcwnData>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<nsILoadContextInfo>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::net::HttpChannelChild>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<nsJARInputThunk>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozIStorageError>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::storage::ResultSet>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::layers::Image>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::layers::APZCTreeManager>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::layers::OverscrollHandoffChain const>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::Element>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::VREventObserver>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::wr::RenderTextureHost>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<nsIObserver>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::Blob>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::HTMLMediaElement>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::MediaStream>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> >::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::CDMProxy>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> >::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> >::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > >::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::MediaDecoder>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::SourceListener>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::MediaEncoder::EncoderListener>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::gmp::GMPParent>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::SourceBufferTask>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::MediaRawData>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<nsAtom>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<nsIOutputStream>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::SDBRequest>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::Promise>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<nsIPresentationSessionTransport>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<mozilla::dom::HTMLInputElement>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<nsFoo>::PassAsParameter()
Unexecuted instantiation: StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports>::PassAsParameter()
971
};
972
template<typename S>
973
struct IsParameterStorageClass<StoreRefPtrPassByPtr<S>>
974
  : public mozilla::TrueType {};
975
976
template<typename T>
977
struct StorePtrPassByPtr
978
{
979
  typedef T* stored_type;
980
  typedef T* passed_type;
981
  stored_type m;
982
  template <typename A>
983
0
  MOZ_IMPLICIT StorePtrPassByPtr(A a) : m(a) {}
Unexecuted instantiation: StorePtrPassByPtr<mozilla::ipc::MessageChannel>::StorePtrPassByPtr<mozilla::ipc::MessageChannel*>(mozilla::ipc::MessageChannel*)
Unexecuted instantiation: StorePtrPassByPtr<IPC::Message>::StorePtrPassByPtr<IPC::Message*>(IPC::Message*)
Unexecuted instantiation: StorePtrPassByPtr<vr::IVRSystem>::StorePtrPassByPtr<vr::IVRSystem*>(vr::IVRSystem*)
Unexecuted instantiation: StorePtrPassByPtr<mozilla::MediaStreamGraph>::StorePtrPassByPtr<mozilla::MediaStreamGraph*>(mozilla::MediaStreamGraph*)
Unexecuted instantiation: StorePtrPassByPtr<bool>::StorePtrPassByPtr<bool*>(bool*)
Unexecuted instantiation: StorePtrPassByPtr<mozilla::Monitor>::StorePtrPassByPtr<mozilla::Monitor*>(mozilla::Monitor*)
Unexecuted instantiation: StorePtrPassByPtr<nsTString<char> >::StorePtrPassByPtr<nsTString<char>*>(nsTString<char>*)
Unexecuted instantiation: StorePtrPassByPtr<char>::StorePtrPassByPtr<char*>(char*)
Unexecuted instantiation: StorePtrPassByPtr<int>::StorePtrPassByPtr<int*>(int*)
Unexecuted instantiation: StorePtrPassByPtr<TestThreadUtils::Spy>::StorePtrPassByPtr<TestThreadUtils::Spy*>(TestThreadUtils::Spy*)
Unexecuted instantiation: StorePtrPassByPtr<GMPVideoHost*>::StorePtrPassByPtr<GMPVideoHost**>(GMPVideoHost**)
Unexecuted instantiation: StorePtrPassByPtr<GMPVideoDecoderProxy*>::StorePtrPassByPtr<GMPVideoDecoderProxy**>(GMPVideoDecoderProxy**)
Unexecuted instantiation: StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>::StorePtrPassByPtr<GMPRemoveTest*>(GMPRemoveTest*)
984
0
  passed_type PassAsParameter() { return m; }
Unexecuted instantiation: StorePtrPassByPtr<mozilla::ipc::MessageChannel>::PassAsParameter()
Unexecuted instantiation: StorePtrPassByPtr<IPC::Message>::PassAsParameter()
Unexecuted instantiation: StorePtrPassByPtr<vr::IVRSystem>::PassAsParameter()
Unexecuted instantiation: StorePtrPassByPtr<mozilla::MediaStreamGraph>::PassAsParameter()
Unexecuted instantiation: StorePtrPassByPtr<mozilla::Monitor>::PassAsParameter()
Unexecuted instantiation: StorePtrPassByPtr<bool>::PassAsParameter()
Unexecuted instantiation: StorePtrPassByPtr<nsTString<char> >::PassAsParameter()
Unexecuted instantiation: StorePtrPassByPtr<char>::PassAsParameter()
Unexecuted instantiation: StorePtrPassByPtr<int>::PassAsParameter()
Unexecuted instantiation: StorePtrPassByPtr<TestThreadUtils::Spy>::PassAsParameter()
Unexecuted instantiation: StorePtrPassByPtr<GMPVideoDecoderProxy*>::PassAsParameter()
Unexecuted instantiation: StorePtrPassByPtr<GMPVideoHost*>::PassAsParameter()
Unexecuted instantiation: StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>::PassAsParameter()
985
};
986
template<typename S>
987
struct IsParameterStorageClass<StorePtrPassByPtr<S>>
988
  : public mozilla::TrueType {};
989
990
template<typename T>
991
struct StoreConstPtrPassByConstPtr
992
{
993
  typedef const T* stored_type;
994
  typedef const T* passed_type;
995
  stored_type m;
996
  template <typename A>
997
0
  MOZ_IMPLICIT StoreConstPtrPassByConstPtr(A a) : m(a) {}
Unexecuted instantiation: StoreConstPtrPassByConstPtr<char>::StoreConstPtrPassByConstPtr<decltype(nullptr)>(decltype(nullptr))
Unexecuted instantiation: StoreConstPtrPassByConstPtr<char>::StoreConstPtrPassByConstPtr<char const*>(char const*)
Unexecuted instantiation: StoreConstPtrPassByConstPtr<int>::StoreConstPtrPassByConstPtr<int*>(int*)
Unexecuted instantiation: StoreConstPtrPassByConstPtr<TestThreadUtils::Spy>::StoreConstPtrPassByConstPtr<TestThreadUtils::Spy*>(TestThreadUtils::Spy*)
998
0
  passed_type PassAsParameter() { return m; }
Unexecuted instantiation: StoreConstPtrPassByConstPtr<char>::PassAsParameter()
Unexecuted instantiation: StoreConstPtrPassByConstPtr<int>::PassAsParameter()
Unexecuted instantiation: StoreConstPtrPassByConstPtr<TestThreadUtils::Spy>::PassAsParameter()
999
};
1000
template<typename S>
1001
struct IsParameterStorageClass<StoreConstPtrPassByConstPtr<S>>
1002
  : public mozilla::TrueType {};
1003
1004
template<typename T>
1005
struct StoreCopyPassByConstPtr
1006
{
1007
  typedef T stored_type;
1008
  typedef const T* passed_type;
1009
  stored_type m;
1010
  template <typename A>
1011
0
  MOZ_IMPLICIT StoreCopyPassByConstPtr(A&& a) : m(std::forward<A>(a)) {}
1012
0
  passed_type PassAsParameter() { return &m; }
1013
};
1014
template<typename S>
1015
struct IsParameterStorageClass<StoreCopyPassByConstPtr<S>>
1016
  : public mozilla::TrueType {};
1017
1018
template<typename T>
1019
struct StoreCopyPassByPtr
1020
{
1021
  typedef T stored_type;
1022
  typedef T* passed_type;
1023
  stored_type m;
1024
  template <typename A>
1025
0
  MOZ_IMPLICIT StoreCopyPassByPtr(A&& a) : m(std::forward<A>(a)) {}
1026
0
  passed_type PassAsParameter() { return &m; }
1027
};
1028
template<typename S>
1029
struct IsParameterStorageClass<StoreCopyPassByPtr<S>>
1030
  : public mozilla::TrueType {};
1031
1032
namespace detail {
1033
1034
template<typename>
1035
struct SFINAE1True : mozilla::TrueType
1036
{};
1037
1038
template<class T>
1039
static auto HasRefCountMethodsTest(int)
1040
    -> SFINAE1True<decltype(mozilla::DeclVal<T>().AddRef(),
1041
                            mozilla::DeclVal<T>().Release())>;
1042
template<class>
1043
static auto HasRefCountMethodsTest(long) -> mozilla::FalseType;
1044
1045
template<class T>
1046
struct HasRefCountMethods : decltype(HasRefCountMethodsTest<T>(0))
1047
{};
1048
1049
template<typename TWithoutPointer>
1050
struct NonnsISupportsPointerStorageClass
1051
  : mozilla::Conditional<mozilla::IsConst<TWithoutPointer>::value,
1052
                         StoreConstPtrPassByConstPtr<
1053
                           typename mozilla::RemoveConst<TWithoutPointer>::Type>,
1054
                         StorePtrPassByPtr<TWithoutPointer>>
1055
{};
1056
1057
template<typename TWithoutPointer>
1058
struct PointerStorageClass
1059
  : mozilla::Conditional<HasRefCountMethods<TWithoutPointer>::value,
1060
                         StoreRefPtrPassByPtr<TWithoutPointer>,
1061
                         typename NonnsISupportsPointerStorageClass<
1062
                           TWithoutPointer
1063
                         >::Type>
1064
{};
1065
1066
template<typename TWithoutRef>
1067
struct LValueReferenceStorageClass
1068
  : mozilla::Conditional<mozilla::IsConst<TWithoutRef>::value,
1069
                         StoreConstRefPassByConstLRef<
1070
                           typename mozilla::RemoveConst<TWithoutRef>::Type>,
1071
                         StoreRefPassByLRef<TWithoutRef>>
1072
{};
1073
1074
template<typename T>
1075
struct SmartPointerStorageClass
1076
  : mozilla::Conditional<mozilla::IsRefcountedSmartPointer<T>::value,
1077
                         StoreRefPtrPassByPtr<
1078
                           typename mozilla::RemoveSmartPointer<T>::Type>,
1079
                         StoreCopyPassByConstLRef<T>>
1080
{};
1081
1082
template<typename T>
1083
struct NonLValueReferenceStorageClass
1084
  : mozilla::Conditional<mozilla::IsRvalueReference<T>::value,
1085
                         StoreCopyPassByRRef<
1086
                           typename mozilla::RemoveReference<T>::Type>,
1087
                         typename SmartPointerStorageClass<T>::Type>
1088
{};
1089
1090
template<typename T>
1091
struct NonPointerStorageClass
1092
  : mozilla::Conditional<mozilla::IsLvalueReference<T>::value,
1093
                         typename LValueReferenceStorageClass<
1094
                           typename mozilla::RemoveReference<T>::Type
1095
                         >::Type,
1096
                         typename NonLValueReferenceStorageClass<T>::Type>
1097
{};
1098
1099
template<typename T>
1100
struct NonParameterStorageClass
1101
  : mozilla::Conditional<mozilla::IsPointer<T>::value,
1102
                         typename PointerStorageClass<
1103
                           typename mozilla::RemovePointer<T>::Type
1104
                         >::Type,
1105
                         typename NonPointerStorageClass<T>::Type>
1106
{};
1107
1108
// Choose storage&passing strategy based on preferred storage type:
1109
// - If IsParameterStorageClass<T>::value is true, use as-is.
1110
// - RC*       -> StoreRefPtrPassByPtr<RC>       : Store RefPtr<RC>, pass RC*
1111
//   ^^ RC quacks like a ref-counted type (i.e., has AddRef and Release methods)
1112
// - const T*  -> StoreConstPtrPassByConstPtr<T> : Store const T*, pass const T*
1113
// - T*        -> StorePtrPassByPtr<T>           : Store T*, pass T*.
1114
// - const T&  -> StoreConstRefPassByConstLRef<T>: Store const T&, pass const T&.
1115
// - T&        -> StoreRefPassByLRef<T>          : Store T&, pass T&.
1116
// - T&&       -> StoreCopyPassByRRef<T>         : Store T, pass std::move(T).
1117
// - RefPtr<T>, nsCOMPtr<T>
1118
//             -> StoreRefPtrPassByPtr<T>        : Store RefPtr<T>, pass T*
1119
// - Other T   -> StoreCopyPassByConstLRef<T>    : Store T, pass const T&.
1120
// Other available explicit options:
1121
// -              StoreCopyPassByValue<T>        : Store T, pass T.
1122
// -              StoreCopyPassByLRef<T>         : Store T, pass T& (of copy!)
1123
// -              StoreCopyPassByConstPtr<T>     : Store T, pass const T*
1124
// -              StoreCopyPassByPtr<T>          : Store T, pass T* (of copy!)
1125
// Or create your own class with PassAsParameter() method, optional
1126
// clean-up in destructor, and with associated IsParameterStorageClass<>.
1127
template<typename T>
1128
struct ParameterStorage
1129
  : mozilla::Conditional<IsParameterStorageClass<T>::value,
1130
                         T,
1131
                         typename NonParameterStorageClass<T>::Type>
1132
{};
1133
1134
template<class T>
1135
static auto
1136
HasSetDeadlineTest(int) -> SFINAE1True<decltype(
1137
  mozilla::DeclVal<T>().SetDeadline(mozilla::DeclVal<mozilla::TimeStamp>()))>;
1138
1139
template<class T>
1140
static auto
1141
HasSetDeadlineTest(long) -> mozilla::FalseType;
1142
1143
template<class T>
1144
struct HasSetDeadline : decltype(HasSetDeadlineTest<T>(0))
1145
{};
1146
1147
template <class T>
1148
typename mozilla::EnableIf<::detail::HasSetDeadline<T>::value>::Type
1149
SetDeadlineImpl(T* aObj, mozilla::TimeStamp aTimeStamp)
1150
0
{
1151
0
  aObj->SetDeadline(aTimeStamp);
1152
0
}
Unexecuted instantiation: _ZN6detail15SetDeadlineImplI10IdleObjectEEN7mozilla8EnableIfIXgssr6detail14HasSetDeadlineIT_EE5valueEvE4TypeEPS4_NS2_9TimeStampE
Unexecuted instantiation: _ZN6detail15SetDeadlineImplI30IdleObjectInheritedSetDeadlineEEN7mozilla8EnableIfIXgssr6detail14HasSetDeadlineIT_EE5valueEvE4TypeEPS4_NS2_9TimeStampE
1153
1154
template <class T>
1155
typename mozilla::EnableIf<!::detail::HasSetDeadline<T>::value>::Type
1156
SetDeadlineImpl(T* aObj, mozilla::TimeStamp aTimeStamp)
1157
0
{
1158
0
}
Unexecuted instantiation: _ZN6detail15SetDeadlineImplI18nsStringBundleBaseEEN7mozilla8EnableIfIXntgssr6detail14HasSetDeadlineIT_EE5valueEvE4TypeEPS4_NS2_9TimeStampE
Unexecuted instantiation: _ZN6detail15SetDeadlineImplI28IdleObjectWithoutSetDeadlineEEN7mozilla8EnableIfIXntgssr6detail14HasSetDeadlineIT_EE5valueEvE4TypeEPS4_NS2_9TimeStampE
1159
} /* namespace detail */
1160
1161
namespace mozilla {
1162
namespace detail {
1163
1164
// struct used to store arguments and later apply them to a method.
1165
template <typename... Ts>
1166
struct RunnableMethodArguments final
1167
{
1168
  Tuple<typename ::detail::ParameterStorage<Ts>::Type...> mArguments;
1169
  template <typename... As>
1170
  explicit RunnableMethodArguments(As&&... aArguments)
1171
    : mArguments(std::forward<As>(aArguments)...)
1172
19
  {}
mozilla::detail::RunnableMethodArguments<>::RunnableMethodArguments<>()
Line
Count
Source
1172
19
  {}
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::ConnectionData> >::RunnableMethodArguments<mozilla::net::ConnectionData*>(mozilla::net::ConnectionData*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::LookupArgument> >::RunnableMethodArguments<RefPtr<mozilla::net::LookupArgument>&>(RefPtr<mozilla::net::LookupArgument>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::SocketData> >::RunnableMethodArguments<RefPtr<mozilla::net::SocketData>&>(RefPtr<mozilla::net::SocketData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::HttpData> >::RunnableMethodArguments<RefPtr<mozilla::net::HttpData>&>(RefPtr<mozilla::net::HttpData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::WebSocketRequest> >::RunnableMethodArguments<RefPtr<mozilla::net::WebSocketRequest>&>(RefPtr<mozilla::net::WebSocketRequest>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::DnsData> >::RunnableMethodArguments<RefPtr<mozilla::net::DnsData>&>(RefPtr<mozilla::net::DnsData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::RcwnData> >::RunnableMethodArguments<RefPtr<mozilla::net::RcwnData>&>(RefPtr<mozilla::net::RcwnData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::ConnectionData> >::RunnableMethodArguments<RefPtr<mozilla::net::ConnectionData>&>(RefPtr<mozilla::net::ConnectionData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool, bool, nsresult, nsTString<char> >::RunnableMethodArguments<bool&, bool&, nsresult&, nsTString<char>&>(bool&, bool&, nsresult&, nsTString<char>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<double>::RunnableMethodArguments<double&>(double&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsCOMPtr<nsILoadContextInfo>, bool, nsTString<char16_t> >::RunnableMethodArguments<nsILoadContextInfo*&, bool&, nsTSubstring<char16_t> const&>(nsILoadContextInfo*&, bool&, nsTSubstring<char16_t> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char> >::RunnableMethodArguments<nsTString<char>&>(nsTString<char>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const>::RunnableMethodArguments<nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&>(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::TimeStamp const, mozilla::net::nsHttpHeaderArray const>::RunnableMethodArguments<nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&>(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<long const, long const>::RunnableMethodArguments<long const&, long const&>(long const&, long const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsresult const>::RunnableMethodArguments<nsresult const&>(nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::net::nsHttpHeaderArray const>::RunnableMethodArguments<nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&>(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool>::RunnableMethodArguments<bool&>(bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char> const, nsTString<char> const, nsTString<char> const>::RunnableMethodArguments<nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&>(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsresult>::RunnableMethodArguments<nsresult&>(nsresult&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char> const, nsTString<char> const, nsTString<char> const>::RunnableMethodArguments<nsTString<char> const&, nsTString<char> const&, nsTString<char> const&>(nsTString<char> const&, nsTString<char> const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsresult>::RunnableMethodArguments<nsresult const&>(nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::HttpChannelChild> >::RunnableMethodArguments<RefPtr<mozilla::net::HttpChannelChild> >(RefPtr<mozilla::net::HttpChannelChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::HttpChannelChild> >::RunnableMethodArguments<RefPtr<mozilla::net::HttpChannelChild>&>(RefPtr<mozilla::net::HttpChannelChild>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> >(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<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> > > > >::RunnableMethodArguments<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> > > >&>(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::RunnableMethodArguments<mozilla::ipc::MessageChannel*, mozilla::ipc::Side>::RunnableMethodArguments<mozilla::ipc::MessageChannel*, mozilla::ipc::Side&>(mozilla::ipc::MessageChannel*&&, mozilla::ipc::Side&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<IPC::Message*>::RunnableMethodArguments<IPC::Message*&>(IPC::Message*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<nsJARInputThunk>, bool>::RunnableMethodArguments<RefPtr<nsJARInputThunk>&, bool>(RefPtr<nsJARInputThunk>&, bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsresult, bool>::RunnableMethodArguments<nsresult&, bool>(nsresult&, bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned long>::RunnableMethodArguments<unsigned long>(unsigned long&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsCOMPtr<mozIStorageError> >::RunnableMethodArguments<mozIStorageError*&>(mozIStorageError*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::storage::ResultSet> >::RunnableMethodArguments<already_AddRefed<mozilla::storage::ResultSet> >(already_AddRefed<mozilla::storage::ResultSet>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char> const>::RunnableMethodArguments<nsTLiteralString<char> const&>(nsTLiteralString<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::layers::Image>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool>::RunnableMethodArguments<mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, bool&>(mozilla::layers::Image*&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, int>::RunnableMethodArguments<mozilla::layers::LayersId&, mozilla::layers::LayersObserverEpoch&, bool&>(mozilla::layers::LayersId&, mozilla::layers::LayersObserverEpoch&, bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::RunnableMethodArguments<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&>(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::Maybe<mozilla::layers::ZoomConstraints> >::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&>(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget>::RunnableMethodArguments<mozilla::layers::LayersId&, mozilla::layers::LayersId&, mozilla::layers::FocusTarget const&>(mozilla::layers::LayersId&, mozilla::layers::LayersId&, mozilla::layers::FocusTarget const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> >::RunnableMethodArguments<mozilla::layers::LayersId&, RefPtr<mozilla::layers::APZCTreeManager> >(mozilla::layers::LayersId&, RefPtr<mozilla::layers::APZCTreeManager>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::AsyncPanZoomController*>::RunnableMethodArguments<mozilla::layers::AsyncPanZoomController*>(mozilla::layers::AsyncPanZoomController*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>, RefPtr<mozilla::layers::OverscrollHandoffChain const>, RefPtr<mozilla::layers::AsyncPanZoomController const> >::RunnableMethodArguments<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, RefPtr<mozilla::layers::OverscrollHandoffChain const>&, RefPtr<mozilla::layers::AsyncPanZoomController const>&>(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, RefPtr<mozilla::layers::OverscrollHandoffChain const>&, RefPtr<mozilla::layers::AsyncPanZoomController const>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::RunnableMethodArguments<mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, mozilla::layers::ScrollableLayerGuid, unsigned long>(mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, mozilla::layers::ScrollableLayerGuid&&, unsigned long&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::FrameMetrics, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::RunnableMethodArguments<mozilla::layers::FrameMetrics&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&>(mozilla::layers::FrameMetrics&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool>::RunnableMethodArguments<bool>(bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsCOMPtr<mozilla::dom::Element> >::RunnableMethodArguments<nsCOMPtr<mozilla::dom::Element>&>(nsCOMPtr<mozilla::dom::Element>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&, mozilla::layers::ZoomToRectBehavior>(mozilla::layers::ScrollableLayerGuid&&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&, mozilla::layers::ZoomToRectBehavior&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::RunnableMethodArguments<mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&>(mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short>::RunnableMethodArguments<mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&>(mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int>::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&>(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned long, nsTString<char16_t> >::RunnableMethodArguments<unsigned long const&, nsTString<char16_t> const&>(unsigned long const&, nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned long>::RunnableMethodArguments<unsigned long const&>(unsigned long const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid>::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid const&>(mozilla::layers::ScrollableLayerGuid const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::KeyboardMap>::RunnableMethodArguments<mozilla::layers::KeyboardMap const&>(mozilla::layers::KeyboardMap const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&>(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned long, bool>::RunnableMethodArguments<unsigned long const&, bool const&>(unsigned long const&, bool const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::RunnableMethodArguments<unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid>&>(unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<float>::RunnableMethodArguments<float const&>(float const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned long, StoreCopyPassByRRef<nsTArray<unsigned int> > >::RunnableMethodArguments<unsigned long const&, nsTArray<unsigned int> >(unsigned long const&, nsTArray<unsigned int>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics>::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&>(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> >::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&>(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool>::RunnableMethodArguments<bool const&>(bool const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int>::RunnableMethodArguments<base::FileDescriptor&, base::FileDescriptor&, mozilla::layers::LayersId&, unsigned int&>(base::FileDescriptor&, base::FileDescriptor&, mozilla::layers::LayersId&, unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned long, unsigned int>::RunnableMethodArguments<unsigned long&, unsigned int&>(unsigned long&, unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int, int>::RunnableMethodArguments<int&, int&>(int&, int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned long, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::RunnableMethodArguments<unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&>(unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> >(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::TimeStamp>::RunnableMethodArguments<mozilla::TimeStamp&>(mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> >(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> >(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<float, float, bool>::RunnableMethodArguments<float&, float&, bool&>(float&, float&, bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild> >(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> >(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int>::RunnableMethodArguments<int&>(int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild> >(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> >(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::RunnableMethodArguments<mozilla::layers::SurfaceDescriptor const&, unsigned long&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&>(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::RunnableMethodArguments<vr::IVRSystem*, unsigned int, double, double, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::RunnableMethodArguments<vr::IVRSystem*&, unsigned int&, double&, double, unsigned long&, mozilla::gfx::VRManagerPromise const&>(vr::IVRSystem*&, unsigned int&, double&, double&&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::RunnableMethodArguments<mozilla::gfx::VRManagerPromise const&>(mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<vr::IVRSystem*, unsigned int, double, double, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::RunnableMethodArguments<vr::IVRSystem*&, unsigned int&, double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&>(vr::IVRSystem*&, unsigned int&, double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::TimeStamp>::RunnableMethodArguments<mozilla::TimeStamp>(mozilla::TimeStamp&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> >(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int>::RunnableMethodArguments<unsigned int&>(unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int, RefPtr<mozilla::dom::VREventObserver> >::RunnableMethodArguments<unsigned int, mozilla::dom::VREventObserver*&>(unsigned int&&, mozilla::dom::VREventObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> >(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >::RunnableMethodArguments<mozilla::wr::MemoryReport&, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&>(mozilla::wr::MemoryReport&, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::wr::WrWindowId>::RunnableMethodArguments<mozilla::wr::WrWindowId&>(mozilla::wr::WrWindowId&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&>::RunnableMethodArguments<mozilla::wr::WrWindowId&, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > >(mozilla::wr::WrWindowId&, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::wr::RenderTextureHost*>::RunnableMethodArguments<RefPtr<mozilla::wr::RenderTextureHost>&>(RefPtr<mozilla::wr::RenderTextureHost>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int, int, unsigned int, nsTString<char16_t>, nsTString<char16_t>, nsIObserver*>::RunnableMethodArguments<int&, int&, int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&>(int&, int&, int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, int, int, nsIObserver*>::RunnableMethodArguments<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, int&, int&, nsIObserver*&>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, int&, int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*>::RunnableMethodArguments<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*&>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*>::RunnableMethodArguments<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int&, double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, unsigned int&, double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*>::RunnableMethodArguments<unsigned int&, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double&, unsigned int&, nsIObserver*&>(unsigned int&, nsIWidget::TouchPointerState&&, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, double&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*>::RunnableMethodArguments<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool&, nsIObserver*&>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, bool&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsIObserver*>::RunnableMethodArguments<nsIObserver*&>(nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::dom::Blob*, char const*>::RunnableMethodArguments<decltype(nullptr), decltype(nullptr)>(decltype(nullptr)&&, decltype(nullptr)&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::RunnableMethodArguments<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&>(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::dom::HTMLMediaElement*>::RunnableMethodArguments<mozilla::dom::HTMLMediaElement*&>(mozilla::dom::HTMLMediaElement*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char> >::RunnableMethodArguments<nsTString<char> >(nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack> >::RunnableMethodArguments<RefPtr<mozilla::dom::MediaStreamTrack>&>(RefPtr<mozilla::dom::MediaStreamTrack>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char16_t> const>::RunnableMethodArguments<nsTString<char16_t> const&>(nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, RefPtr<mozilla::MediaStream>, int>::RunnableMethodArguments<mozilla::MediaStreamGraph*&, int&, mozilla::MediaSegment::Type, mozilla::MediaStream*&, int&>(mozilla::MediaStreamGraph*&, int&, mozilla::MediaSegment::Type&&, mozilla::MediaStream*&, int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::dom::MediaStreamTrack> >::RunnableMethodArguments<RefPtr<mozilla::dom::MediaStreamTrack>&>(RefPtr<mozilla::dom::MediaStreamTrack>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::MediaStreamGraph*, RefPtr<mozilla::MediaStream>, int, int>::RunnableMethodArguments<mozilla::MediaStreamGraph*&, mozilla::MediaStream*&, int&, int&>(mozilla::MediaStreamGraph*&, mozilla::MediaStream*&, int&, int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::TimedMetadata&&>::RunnableMethodArguments<mozilla::TimedMetadata>(mozilla::TimedMetadata&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::MediaDecoder::PlayState>::RunnableMethodArguments<mozilla::MediaDecoder::PlayState&>(mozilla::MediaDecoder::PlayState&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsMainThreadPtrHandle<nsIPrincipal> >::RunnableMethodArguments<nsMainThreadPtrHandle<nsIPrincipal>&>(nsMainThreadPtrHandle<nsIPrincipal>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<already_AddRefed<mozilla::layers::KnowsCompositor>&&>::RunnableMethodArguments<already_AddRefed<mozilla::layers::KnowsCompositor> >(already_AddRefed<mozilla::layers::KnowsCompositor>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::RunnableMethodArguments<mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*>(mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::RunnableMethodArguments<mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*>(mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::RunnableMethodArguments<mozilla::Mirror<mozilla::media::TimeUnit>::Impl*>(mozilla::Mirror<mozilla::media::TimeUnit>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::RunnableMethodArguments<mozilla::Mirror<bool>::Impl*>(mozilla::Mirror<bool>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::CDMProxy> >::RunnableMethodArguments<mozilla::CDMProxy*&>(mozilla::CDMProxy*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool&&>::RunnableMethodArguments<bool>(bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::MediaPlaybackEvent::EventType&&>::RunnableMethodArguments<mozilla::MediaPlaybackEvent::EventType&>(mozilla::MediaPlaybackEvent::EventType&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::MediaDecoderOwner::NextFrameStatus&&>::RunnableMethodArguments<mozilla::MediaDecoderOwner::NextFrameStatus&>(mozilla::MediaDecoderOwner::NextFrameStatus&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::AudioData>&&>::RunnableMethodArguments<RefPtr<mozilla::AudioData>&>(RefPtr<mozilla::AudioData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::VideoData>&&>::RunnableMethodArguments<RefPtr<mozilla::VideoData>&>(RefPtr<mozilla::VideoData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::Maybe<mozilla::media::TimeUnit> >::RunnableMethodArguments<mozilla::Maybe<mozilla::media::TimeUnit>&>(mozilla::Maybe<mozilla::media::TimeUnit>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&>::RunnableMethodArguments<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>(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::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::RunnableMethodArguments<mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*>(mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::RunnableMethodArguments<mozilla::Mirror<double>::Impl*>(mozilla::Mirror<double>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::RunnableMethodArguments<mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*>(mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::media::TimeUnit>::RunnableMethodArguments<mozilla::media::TimeUnit&>(mozilla::media::TimeUnit&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::MediaDecoder> >::RunnableMethodArguments<mozilla::MediaDecoder*&>(mozilla::MediaDecoder*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::MediaPlaybackEvent&&>::RunnableMethodArguments<mozilla::MediaPlaybackEvent&>(mozilla::MediaPlaybackEvent&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::VideoDecodeMode>::RunnableMethodArguments<mozilla::VideoDecodeMode&>(mozilla::VideoDecodeMode&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::SeekTarget> >::RunnableMethodArguments<mozilla::SeekTarget const&>(mozilla::SeekTarget const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::MediaResult&&>::RunnableMethodArguments<mozilla::MediaResult const&>(mozilla::MediaResult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&>::RunnableMethodArguments<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility&>(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::DecoderDoctorEvent&&>::RunnableMethodArguments<mozilla::DecoderDoctorEvent&>(mozilla::DecoderDoctorEvent&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::SourceListener> >::RunnableMethodArguments<RefPtr<mozilla::SourceListener>&>(RefPtr<mozilla::SourceListener>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener> >::RunnableMethodArguments<RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>&>(RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::media::TimeIntervals>::RunnableMethodArguments<mozilla::media::TimeIntervals&>(mozilla::media::TimeIntervals&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTArray<unsigned char>&&, nsTString<char16_t>&&>::RunnableMethodArguments<nsTArray<unsigned char>&, nsTString<char16_t>&>(nsTArray<unsigned char>&, nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::TrackInfo::TrackType>::RunnableMethodArguments<mozilla::TrackInfo::TrackType&>(mozilla::TrackInfo::TrackType&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >::RunnableMethodArguments<nsMainThreadPtrHandle<nsIPrincipal> const&>(nsMainThreadPtrHandle<nsIPrincipal> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::media::TimeUnit> >::RunnableMethodArguments<mozilla::media::TimeUnit const&>(mozilla::media::TimeUnit const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::SeekTarget> >::RunnableMethodArguments<mozilla::SeekTarget>(mozilla::SeekTarget&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::MediaData::Type> >::RunnableMethodArguments<mozilla::MediaData::Type&>(mozilla::MediaData::Type&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> >::RunnableMethodArguments<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>&>(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<long>::RunnableMethodArguments<long&>(long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<long>::RunnableMethodArguments<long>(long&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::AudioSegment> >::RunnableMethodArguments<mozilla::AudioSegment>(mozilla::AudioSegment&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::MediaEncoder::EncoderListener> >::RunnableMethodArguments<RefPtr<mozilla::MediaEncoder::EncoderListener>&>(RefPtr<mozilla::MediaEncoder::EncoderListener>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::VideoSegment> >::RunnableMethodArguments<mozilla::VideoSegment>(mozilla::VideoSegment&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int, NS_ConvertUTF8toUTF16>::RunnableMethodArguments<unsigned int&, NS_ConvertUTF8toUTF16>(unsigned int&, NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int, bool>::RunnableMethodArguments<unsigned int&, bool&>(unsigned int&, bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int, nsresult, nsTString<char> >::RunnableMethodArguments<unsigned int&, nsresult&, nsTString<char> const&>(unsigned int&, nsresult&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<NS_ConvertUTF8toUTF16, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> >::RunnableMethodArguments<NS_ConvertUTF8toUTF16, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> >(NS_ConvertUTF8toUTF16&&, mozilla::dom::MediaKeyMessageType&&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int, mozilla::dom::MediaKeyStatus>::RunnableMethodArguments<unsigned int&, mozilla::dom::MediaKeyStatus>(unsigned int&, mozilla::dom::MediaKeyStatus&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<NS_ConvertUTF8toUTF16>::RunnableMethodArguments<NS_ConvertUTF8toUTF16>(NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<NS_ConvertUTF8toUTF16, long>::RunnableMethodArguments<NS_ConvertUTF8toUTF16, long>(NS_ConvertUTF8toUTF16&&, long&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const, unsigned int const>::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&), unsigned int&, unsigned int>(bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&), unsigned int&, unsigned int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const, nsTString<char> const>::RunnableMethodArguments<bool (mozilla::gmp::ChromiumCDMChild::*&)(unsigned int, nsTString<char> const&), unsigned int&, nsTString<char> >(bool (mozilla::gmp::ChromiumCDMChild::*&)(unsigned int, nsTString<char> const&), unsigned int&, nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const>::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&), unsigned int&>(bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&), unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const, unsigned int const, unsigned int const, nsTString<char> const>::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int&, unsigned int, unsigned int&, nsTString<char> >(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::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const, unsigned int const, nsTArray<unsigned char> const>::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char>, unsigned int, nsTArray<unsigned char>&>(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::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const, nsTArray<mozilla::gmp::CDMKeyInformation> const>::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char>, nsTArray<mozilla::gmp::CDMKeyInformation>&>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char>&&, nsTArray<mozilla::gmp::CDMKeyInformation>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const, double const>::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, double const&), nsTString<char>, double&>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, double const&), nsTString<char>&&, double&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const>::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&), nsTString<char> >(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&), nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> >::RunnableMethodArguments<unsigned int&, unsigned int&, unsigned int&, unsigned int&, nsTArray<unsigned char> >(unsigned int&, unsigned int&, unsigned int&, unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int, unsigned int, nsTString<char16_t> >::RunnableMethodArguments<unsigned int&, unsigned int, nsTSubstring<char16_t> const&>(unsigned int&, unsigned int&&, nsTSubstring<char16_t> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int, nsTArray<unsigned char> >::RunnableMethodArguments<unsigned int&, nsTArray<unsigned char> >(unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char>, unsigned int, nsTArray<unsigned char> >::RunnableMethodArguments<NS_ConvertUTF16toUTF8, unsigned int&, nsTArray<unsigned char> >(NS_ConvertUTF16toUTF8&&, unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char>, unsigned int>::RunnableMethodArguments<NS_ConvertUTF16toUTF8, unsigned int&>(NS_ConvertUTF16toUTF8&&, unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int, nsTString<char> >::RunnableMethodArguments<unsigned int&, NS_ConvertUTF16toUTF8>(unsigned int&, NS_ConvertUTF16toUTF8&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::gmp::GMPParent> >::RunnableMethodArguments<RefPtr<mozilla::gmp::GMPParent>&>(RefPtr<mozilla::gmp::GMPParent>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<NS_ConvertUTF8toUTF16> >::RunnableMethodArguments<NS_ConvertUTF8toUTF16>(NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<nsTString<char16_t> > >::RunnableMethodArguments<nsTString<char16_t>&>(nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char>, mozilla::OriginAttributesPattern>::RunnableMethodArguments<NS_ConvertUTF16toUTF8, mozilla::OriginAttributesPattern const&>(NS_ConvertUTF16toUTF8&&, mozilla::OriginAttributesPattern const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::Monitor*, bool*>::RunnableMethodArguments<mozilla::Monitor*, bool*>(mozilla::Monitor*&&, bool*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> >(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<long&&>::RunnableMethodArguments<long&>(long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool&&>::RunnableMethodArguments<bool&>(bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::TrackBuffersManager>&&>::RunnableMethodArguments<RefPtr<mozilla::TrackBuffersManager>&>(RefPtr<mozilla::TrackBuffersManager>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<int> >::RunnableMethodArguments<int&>(int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<already_AddRefed<mozilla::MediaByteBuffer> >, StoreCopyPassByRRef<mozilla::SourceBufferAttributes> >::RunnableMethodArguments<already_AddRefed<mozilla::MediaByteBuffer>, mozilla::SourceBufferAttributes const&>(already_AddRefed<mozilla::MediaByteBuffer>&&, mozilla::SourceBufferAttributes const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::SourceBufferTask> >::RunnableMethodArguments<mozilla::SourceBufferTask*&>(mozilla::SourceBufferTask*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::media::Interval<mozilla::media::TimeUnit> > >::RunnableMethodArguments<mozilla::media::Interval<mozilla::media::TimeUnit> >(mozilla::media::Interval<mozilla::media::TimeUnit>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::RunnableMethodArguments<mozilla::MediaRawData*&>(mozilla::MediaRawData*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::TrackInfo::TrackType&&>::RunnableMethodArguments<mozilla::TrackInfo::TrackType const&>(mozilla::TrackInfo::TrackType const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine, nsTString<char> >::RunnableMethodArguments<mozilla::camera::CaptureEngine&, nsTString<char>&>(mozilla::camera::CaptureEngine&, nsTString<char>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine>::RunnableMethodArguments<mozilla::camera::CaptureEngine&>(mozilla::camera::CaptureEngine&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine, nsTString<char>, unsigned int>::RunnableMethodArguments<mozilla::camera::CaptureEngine&, nsTString<char>&, unsigned int const&>(mozilla::camera::CaptureEngine&, nsTString<char>&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine, unsigned int>::RunnableMethodArguments<mozilla::camera::CaptureEngine&, unsigned int&>(mozilla::camera::CaptureEngine&, unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine, nsTString<char>, mozilla::ipc::PrincipalInfo const&>::RunnableMethodArguments<mozilla::camera::CaptureEngine&, nsTString<char>&, mozilla::ipc::PrincipalInfo const&>(mozilla::camera::CaptureEngine&, nsTString<char>&, mozilla::ipc::PrincipalInfo const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine, int>::RunnableMethodArguments<mozilla::camera::CaptureEngine&, int const&>(mozilla::camera::CaptureEngine&, int const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine, int, mozilla::camera::VideoCaptureCapability>::RunnableMethodArguments<mozilla::camera::CaptureEngine&, int const&, mozilla::camera::VideoCaptureCapability&>(mozilla::camera::CaptureEngine&, int const&, mozilla::camera::VideoCaptureCapability&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int>::RunnableMethodArguments<unsigned int const&>(unsigned int const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned int, SPDNotificationType>::RunnableMethodArguments<unsigned int, SPDNotificationType&>(unsigned int&&, SPDNotificationType&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<SPDNotificationType>::RunnableMethodArguments<SPDNotificationType>(SPDNotificationType&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char>, nsTString<char16_t>, nsTString<char> >::RunnableMethodArguments<char const*&, nsTSubstring<char16_t> const&, nsTSubstring<char> const&>(char const*&, nsTSubstring<char16_t> const&, nsTSubstring<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<gfxSurfaceType, mozilla::plugins::NPRemoteWindow, bool>::RunnableMethodArguments<gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool>(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> >(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent> >(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char>, nsTString<char16_t> >::RunnableMethodArguments<mozilla::dom::IdType<mozilla::dom::TabParent>&, nsTAutoStringN<char, 64ul>&, nsTString<char16_t> const&>(mozilla::dom::IdType<mozilla::dom::TabParent>&, nsTAutoStringN<char, 64ul>&, nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent> >(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch>::RunnableMethodArguments<mozilla::dom::IdType<mozilla::dom::TabParent>&, bool&, mozilla::layers::LayersObserverEpoch const&>(mozilla::dom::IdType<mozilla::dom::TabParent>&, bool&, mozilla::layers::LayersObserverEpoch const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> >(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::dom::ContentParent::ShutDownMethod>::RunnableMethodArguments<mozilla::dom::ContentParent::ShutDownMethod>(mozilla::dom::ContentParent::ShutDownMethod&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&>::RunnableMethodArguments<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> > >(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char16_t> >::RunnableMethodArguments<nsTAutoStringN<char16_t, 64ul>&>(nsTAutoStringN<char16_t, 64ul>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned long, bool>::RunnableMethodArguments<unsigned long&, bool&>(unsigned long&, bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned long>::RunnableMethodArguments<unsigned long&>(unsigned long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::dom::Element*, int, nsAtom*>::RunnableMethodArguments<mozilla::dom::Element*&, int const&, nsAtom*&>(mozilla::dom::Element*&, int const&, nsAtom*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsCOMPtr<nsIWebBrowserPersistDocument>, nsresult>::RunnableMethodArguments<nsCOMPtr<nsIWebBrowserPersistDocument>&, nsresult const&>(nsCOMPtr<nsIWebBrowserPersistDocument>&, nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsCOMPtr<nsIWebBrowserPersistDocument>, nsCOMPtr<nsIOutputStream>, nsTString<char>, nsresult>::RunnableMethodArguments<nsCOMPtr<nsIWebBrowserPersistDocument>&, nsCOMPtr<nsIOutputStream>&, nsTString<char> const&, nsresult const&>(nsCOMPtr<nsIWebBrowserPersistDocument>&, nsCOMPtr<nsIOutputStream>&, nsTString<char> const&, nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > > >::RunnableMethodArguments<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > >(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>::RunnableMethodArguments<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned short>::RunnableMethodArguments<unsigned short&>(unsigned short&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::dom::ServiceWorkerRegistrationDescriptor>::RunnableMethodArguments<mozilla::dom::ServiceWorkerRegistrationDescriptor const&>(mozilla::dom::ServiceWorkerRegistrationDescriptor const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::dom::SDBRequest> >::RunnableMethodArguments<mozilla::dom::SDBRequest*>(mozilla::dom::SDBRequest*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char16_t>, RefPtr<mozilla::dom::Promise> >::RunnableMethodArguments<nsTString<char16_t>&, RefPtr<mozilla::dom::Promise>&>(nsTString<char16_t>&, RefPtr<mozilla::dom::Promise>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char> >::RunnableMethodArguments<nsTAutoStringN<char, 64ul>&>(nsTAutoStringN<char, 64ul>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char> >::RunnableMethodArguments<char const (&) [10]>(char const (&) [10])
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsIPresentationSessionTransport*>::RunnableMethodArguments<nsCOMPtr<nsIPresentationSessionTransport>&>(nsCOMPtr<nsIPresentationSessionTransport>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::dom::PresentationTCPSessionTransport::ReadyState>::RunnableMethodArguments<mozilla::dom::PresentationTCPSessionTransport::ReadyState>(mozilla::dom::PresentationTCPSessionTransport::ReadyState&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<float>::RunnableMethodArguments<float&>(float&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::KeyboardMap>::RunnableMethodArguments<mozilla::layers::KeyboardMap&>(mozilla::layers::KeyboardMap&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned long, StoreCopyPassByLRef<nsTArray<unsigned int> > >::RunnableMethodArguments<unsigned long&, nsTArray<unsigned int> const&>(unsigned long&, nsTArray<unsigned int> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::RunnableMethodArguments<unsigned long&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&>(unsigned long&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&>(mozilla::layers::ScrollableLayerGuid&&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics>::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid&, mozilla::layers::AsyncDragMetrics const&>(mozilla::layers::ScrollableLayerGuid&, mozilla::layers::AsyncDragMetrics const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::PProfilerChild> >(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char>*>::RunnableMethodArguments<nsTString<char>*&>(nsTString<char>*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<char const*>::RunnableMethodArguments<char const (&) [19]>(char const (&) [19])
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<char const*>::RunnableMethodArguments<char const (&) [21]>(char const (&) [21])
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> >(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&>::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> >(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTArray<unsigned char>&&>::RunnableMethodArguments<nsTArray<unsigned char> >(nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char>, int, nsTString<char>, bool, long>::RunnableMethodArguments<nsTSubstring<char> const&, int&, nsTSubstring<char> const&, bool&, long&>(nsTSubstring<char> const&, int&, nsTSubstring<char> const&, bool&, long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::dom::HTMLInputElement> >::RunnableMethodArguments<RefPtr<mozilla::dom::HTMLInputElement>&>(RefPtr<mozilla::dom::HTMLInputElement>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<nsFoo> >::RunnableMethodArguments<RefPtr<nsFoo>&>(RefPtr<nsFoo>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsFoo*>::RunnableMethodArguments<RefPtr<nsFoo>&>(RefPtr<nsFoo>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<char*>::RunnableMethodArguments<char*&>(char*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<bool*>::RunnableMethodArguments<bool*>(bool*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<char const*, unsigned int>::RunnableMethodArguments<char const (&) [6], int>(char const (&) [6], int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int>::RunnableMethodArguments<int>(int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int, int>::RunnableMethodArguments<int, int>(int&&, int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int, int, int>::RunnableMethodArguments<int, int, int>(int&&, int&&, int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int, int, int, int>::RunnableMethodArguments<int, int, int, int>(int&&, int&&, int&&, int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int>::RunnableMethodArguments<short&>(short&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int*>::RunnableMethodArguments<int*>(int*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int const*>::RunnableMethodArguments<int*>(int*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByPtr<int> >::RunnableMethodArguments<int&>(int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByConstPtr<int> >::RunnableMethodArguments<int&>(int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int&>::RunnableMethodArguments<int&>(int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int&&>::RunnableMethodArguments<int>(int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&>::RunnableMethodArguments<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >::RunnableMethodArguments<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&>::RunnableMethodArguments<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&>(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByValue<TestThreadUtils::Spy> >::RunnableMethodArguments<TestThreadUtils::Spy&>(TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByValue<TestThreadUtils::Spy> >::RunnableMethodArguments<TestThreadUtils::Spy>(TestThreadUtils::Spy&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::RunnableMethodArguments<TestThreadUtils::Spy&>(TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::RunnableMethodArguments<TestThreadUtils::Spy>(TestThreadUtils::Spy&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<TestThreadUtils::Spy> >::RunnableMethodArguments<TestThreadUtils::Spy&>(TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<TestThreadUtils::Spy> >::RunnableMethodArguments<TestThreadUtils::Spy>(TestThreadUtils::Spy&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<TestThreadUtils::Spy&>::RunnableMethodArguments<TestThreadUtils::Spy&>(TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports> >::RunnableMethodArguments<TestThreadUtils::SpyWithISupports*>(TestThreadUtils::SpyWithISupports*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<TestThreadUtils::Spy*>::RunnableMethodArguments<TestThreadUtils::Spy*>(TestThreadUtils::Spy*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<TestThreadUtils::Spy const*>::RunnableMethodArguments<TestThreadUtils::Spy*>(TestThreadUtils::Spy*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&>::RunnableMethodArguments<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> > >(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<GMPTestMonitor&>::RunnableMethodArguments<GMPTestMonitor&>(GMPTestMonitor&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**>::RunnableMethodArguments<nsTString<char>&, GMPVideoDecoderProxy**, GMPVideoHost**>(nsTString<char>&, GMPVideoDecoderProxy**&&, GMPVideoHost**&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int>::RunnableMethodArguments<GMPVideoCodec&, nsTArray<unsigned char>&, GMPRemoveTest*, int>(GMPVideoCodec&, nsTArray<unsigned char>&, GMPRemoveTest*&&, int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<int&&>::RunnableMethodArguments<int&>(int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<SomeEvent&&>::RunnableMethodArguments<SomeEvent&>(SomeEvent&)
Unexecuted instantiation: mozilla::detail::RunnableMethodArguments<RefPtr<RefCounter>&&>::RunnableMethodArguments<RefPtr<RefCounter>&>(RefPtr<RefCounter>&)
1173
  template<typename C, typename M, typename... Args, size_t... Indices>
1174
  static auto
1175
  applyImpl(C* o, M m, Tuple<Args...>& args, std::index_sequence<Indices...>)
1176
      -> decltype(((*o).*m)(Get<Indices>(args).PassAsParameter()...))
1177
13
  {
1178
13
    return ((*o).*m)(Get<Indices>(args).PassAsParameter()...);
1179
13
  }
decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<FdWatcher, void (FdWatcher::*)()>(FdWatcher*, void (FdWatcher::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Line
Count
Source
1177
3
  {
1178
3
    return ((*o).*m)(Get<Indices>(args).PassAsParameter()...);
1179
3
  }
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsMemoryReporterManager, nsresult (nsMemoryReporterManager::*)()>(nsMemoryReporterManager*, nsresult (nsMemoryReporterManager::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsObserverService, void (nsObserverService::*)()>(nsObserverService*, void (nsObserverService::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::EventTargetWrapper, void (mozilla::EventTargetWrapper::*)()>(mozilla::EventTargetWrapper*, void (mozilla::EventTargetWrapper::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::LazyIdleThread, void (mozilla::LazyIdleThread::*)()>(mozilla::LazyIdleThread*, void (mozilla::LazyIdleThread::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsIBlockThreadedExecutionCallback, nsresult (nsIBlockThreadedExecutionCallback::*)()>(nsIBlockThreadedExecutionCallback*, nsresult (nsIBlockThreadedExecutionCallback::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsIThreadPool, nsresult (nsIThreadPool::*)()>(nsIThreadPool*, nsresult (nsIThreadPool::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsProcess, void (nsProcess::*)()>(nsProcess*, void (nsProcess::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsIThread, nsresult (nsIThread::*)()>(nsIThread*, nsresult (nsIThread::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool&&>::applyImpl<mozilla::detail::Listener<bool>, void (mozilla::detail::Listener<bool>::*)(bool&&), StoreCopyPassByRRef<bool>, 0ul>(mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(bool&&), mozilla::Tuple<StoreCopyPassByRRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<bool>, void (mozilla::detail::Listener<bool>::*)()>(mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::Preferences, nsresult (mozilla::Preferences::*)()>(mozilla::Preferences*, nsresult (mozilla::Preferences::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsStringBundleBase, nsresult (nsStringBundleBase::*)()>(nsStringBundleBase*, nsresult (nsStringBundleBase::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::BackgroundFileSaver, nsresult (mozilla::net::BackgroundFileSaver::*)()>(mozilla::net::BackgroundFileSaver*, nsresult (mozilla::net::BackgroundFileSaver::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::BackgroundFileSaverStreamListener, nsresult (mozilla::net::BackgroundFileSaverStreamListener::*)()>(mozilla::net::BackgroundFileSaverStreamListener*, nsresult (mozilla::net::BackgroundFileSaverStreamListener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::ConnectionData> >::applyImpl<mozilla::net::Dashboard, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), StoreRefPtrPassByPtr<mozilla::net::ConnectionData>, 0ul>(mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::ConnectionData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::LookupArgument> >::applyImpl<mozilla::net::LookupHelper, nsresult (mozilla::net::LookupHelper::*)(mozilla::net::LookupArgument*), StoreRefPtrPassByPtr<mozilla::net::LookupArgument>, 0ul>(mozilla::net::LookupHelper*, nsresult (mozilla::net::LookupHelper::*)(mozilla::net::LookupArgument*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::LookupArgument> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::SocketData> >::applyImpl<mozilla::net::Dashboard, nsresult (mozilla::net::Dashboard::*)(mozilla::net::SocketData*), StoreRefPtrPassByPtr<mozilla::net::SocketData>, 0ul>(mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::SocketData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::SocketData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::HttpData> >::applyImpl<mozilla::net::Dashboard, nsresult (mozilla::net::Dashboard::*)(mozilla::net::HttpData*), StoreRefPtrPassByPtr<mozilla::net::HttpData>, 0ul>(mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::HttpData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::HttpData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::WebSocketRequest> >::applyImpl<mozilla::net::Dashboard, nsresult (mozilla::net::Dashboard::*)(mozilla::net::WebSocketRequest*), StoreRefPtrPassByPtr<mozilla::net::WebSocketRequest>, 0ul>(mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::WebSocketRequest*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::WebSocketRequest> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::DnsData> >::applyImpl<mozilla::net::Dashboard, nsresult (mozilla::net::Dashboard::*)(mozilla::net::DnsData*), StoreRefPtrPassByPtr<mozilla::net::DnsData>, 0ul>(mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::DnsData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::DnsData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::RcwnData> >::applyImpl<mozilla::net::Dashboard, nsresult (mozilla::net::Dashboard::*)(mozilla::net::RcwnData*), StoreRefPtrPassByPtr<mozilla::net::RcwnData>, 0ul>(mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::RcwnData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::RcwnData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsAsyncStreamCopier, void (nsAsyncStreamCopier::*)()>(nsAsyncStreamCopier*, void (nsAsyncStreamCopier::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsICaptivePortalService, nsresult (nsICaptivePortalService::*)()>(nsICaptivePortalService*, nsresult (nsICaptivePortalService::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsInputStreamPump, nsresult (nsInputStreamPump::*)()>(nsInputStreamPump*, nsresult (nsInputStreamPump::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::nsPACMan, void (mozilla::net::nsPACMan::*)()>(mozilla::net::nsPACMan*, void (mozilla::net::nsPACMan::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::nsServerSocket, void (mozilla::net::nsServerSocket::*)()>(mozilla::net::nsServerSocket*, void (mozilla::net::nsServerSocket::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool, bool, nsresult, nsTString<char> >::applyImpl<mozilla::net::nsProtocolProxyService, nsresult (mozilla::net::nsProtocolProxyService::*)(bool, bool, nsresult, nsTSubstring<char> const&), StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> >, 0ul, 1ul, 2ul, 3ul>(mozilla::net::nsProtocolProxyService*, nsresult (mozilla::net::nsProtocolProxyService::*)(bool, bool, nsresult, nsTSubstring<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>)
decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::nsSocketTransportService, void (mozilla::net::nsSocketTransportService::*)()>(mozilla::net::nsSocketTransportService*, void (mozilla::net::nsSocketTransportService::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Line
Count
Source
1177
7
  {
1178
7
    return ((*o).*m)(Get<Indices>(args).PassAsParameter()...);
1179
7
  }
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::nsUDPSocket, void (mozilla::net::nsUDPSocket::*)()>(mozilla::net::nsUDPSocket*, void (mozilla::net::nsUDPSocket::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsHostResolver, void (nsHostResolver::*)()>(nsHostResolver*, void (nsHostResolver::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::DNSRequestChild, void (mozilla::net::DNSRequestChild::*)()>(mozilla::net::DNSRequestChild*, void (mozilla::net::DNSRequestChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsCacheService, void (nsCacheService::*)()>(nsCacheService*, void (nsCacheService::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::CacheEntry, void (mozilla::net::CacheEntry::*)()>(mozilla::net::CacheEntry*, void (mozilla::net::CacheEntry::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<double>::applyImpl<mozilla::net::CacheEntry, void (mozilla::net::CacheEntry::*)(double), StoreCopyPassByConstLRef<double>, 0ul>(mozilla::net::CacheEntry*, void (mozilla::net::CacheEntry::*)(double), mozilla::Tuple<StoreCopyPassByConstLRef<double> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::CacheFileChunk, unsigned int (mozilla::net::CacheFileChunk::*)()>(mozilla::net::CacheFileChunk*, unsigned int (mozilla::net::CacheFileChunk::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::CacheFileContextEvictor, nsresult (mozilla::net::CacheFileContextEvictor::*)()>(mozilla::net::CacheFileContextEvictor*, nsresult (mozilla::net::CacheFileContextEvictor::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::CacheFileHandle, unsigned int (mozilla::net::CacheFileHandle::*)()>(mozilla::net::CacheFileHandle*, unsigned int (mozilla::net::CacheFileHandle::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::CacheFileIOManager, nsresult (mozilla::net::CacheFileIOManager::*)()>(mozilla::net::CacheFileIOManager*, nsresult (mozilla::net::CacheFileIOManager::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsCOMPtr<nsILoadContextInfo>, bool, nsTString<char16_t> >::applyImpl<mozilla::net::CacheFileIOManager, nsresult (mozilla::net::CacheFileIOManager::*)(nsILoadContextInfo*, bool, nsTSubstring<char16_t> const&), StoreRefPtrPassByPtr<nsILoadContextInfo>, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsTString<char16_t> >, 0ul, 1ul, 2ul>(mozilla::net::CacheFileIOManager*, nsresult (mozilla::net::CacheFileIOManager::*)(nsILoadContextInfo*, bool, nsTSubstring<char16_t> const&), mozilla::Tuple<StoreRefPtrPassByPtr<nsILoadContextInfo>, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsTString<char16_t> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::CacheIndex, void (mozilla::net::CacheIndex::*)()>(mozilla::net::CacheIndex*, void (mozilla::net::CacheIndex::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::CacheObserver, void (mozilla::net::CacheObserver::*)()>(mozilla::net::CacheObserver*, void (mozilla::net::CacheObserver::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::CacheStorageService, void (mozilla::net::CacheStorageService::*)()>(mozilla::net::CacheStorageService*, void (mozilla::net::CacheStorageService::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsAboutCache::Channel, void (nsAboutCache::Channel::*)()>(nsAboutCache::Channel*, void (nsAboutCache::Channel::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsFileUploadContentStream, void (nsFileUploadContentStream::*)()>(nsFileUploadContentStream*, void (nsFileUploadContentStream::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::FTPChannelParent, void (mozilla::net::FTPChannelParent::*)()>(mozilla::net::FTPChannelParent*, void (mozilla::net::FTPChannelParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::nsHttpConnectionMgr, nsresult (mozilla::net::nsHttpConnectionMgr::*)()>(mozilla::net::nsHttpConnectionMgr*, nsresult (mozilla::net::nsHttpConnectionMgr::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char> >::applyImpl<mozilla::net::AltSvcMapping, void (mozilla::net::AltSvcMapping::*)(nsTString<char> const&), StoreCopyPassByConstLRef<nsTString<char> >, 0ul>(mozilla::net::AltSvcMapping*, void (mozilla::net::AltSvcMapping::*)(nsTString<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::Http2Session, void (mozilla::net::Http2Session::*)()>(mozilla::net::Http2Session*, void (mozilla::net::Http2Session::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const>::applyImpl<mozilla::net::HttpBackgroundChannelChild, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const>, 0ul, 1ul, 2ul, 3ul, 4ul>(mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::TimeStamp const, mozilla::net::nsHttpHeaderArray const>::applyImpl<mozilla::net::HttpBackgroundChannelChild, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&), StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::TimeStamp const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const>, 0ul, 1ul, 2ul, 3ul>(mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::TimeStamp const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<long const, long const>::applyImpl<mozilla::net::HttpBackgroundChannelChild, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(long const&, long const&), StoreCopyPassByConstLRef<long const>, StoreCopyPassByConstLRef<long const>, 0ul, 1ul>(mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(long const&, long const&), mozilla::Tuple<StoreCopyPassByConstLRef<long const>, StoreCopyPassByConstLRef<long const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult const>::applyImpl<mozilla::net::HttpBackgroundChannelChild, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&), StoreCopyPassByConstLRef<nsresult const>, 0ul>(mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult const> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::HttpBackgroundChannelChild, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)()>(mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::HttpBackgroundChannelParent, bool (mozilla::net::HttpBackgroundChannelParent::*)()>(mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const>::applyImpl<mozilla::net::HttpBackgroundChannelParent, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const>, 0ul, 1ul, 2ul, 3ul, 4ul>(mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::net::nsHttpHeaderArray const>::applyImpl<mozilla::net::HttpBackgroundChannelParent, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&), StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const>, 0ul, 1ul, 2ul>(mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<long const, long const>::applyImpl<mozilla::net::HttpBackgroundChannelParent, bool (mozilla::net::HttpBackgroundChannelParent::*)(long const&, long const&), StoreCopyPassByConstLRef<long const>, StoreCopyPassByConstLRef<long const>, 0ul, 1ul>(mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(long const&, long const&), mozilla::Tuple<StoreCopyPassByConstLRef<long const>, StoreCopyPassByConstLRef<long const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult const>::applyImpl<mozilla::net::HttpBackgroundChannelParent, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&), StoreCopyPassByConstLRef<nsresult const>, 0ul>(mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult const> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::net::HttpBackgroundChannelParent, bool (mozilla::net::HttpBackgroundChannelParent::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char> const, nsTString<char> const, nsTString<char> const>::applyImpl<mozilla::net::HttpBackgroundChannelParent, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const>, 0ul, 1ul, 2ul>(mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult>::applyImpl<mozilla::net::HttpBaseChannel, void (mozilla::net::HttpBaseChannel::*)(nsresult), StoreCopyPassByConstLRef<nsresult>, 0ul>(mozilla::net::HttpBaseChannel*, void (mozilla::net::HttpBaseChannel::*)(nsresult), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::HttpChannelChild, void (mozilla::net::HttpChannelChild::*)()>(mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::HttpChannelChild, unsigned int (mozilla::net::HttpChannelChild::*)()>(mozilla::net::HttpChannelChild*, unsigned int (mozilla::net::HttpChannelChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::HttpBackgroundChannelChild, void (mozilla::net::HttpBackgroundChannelChild::*)()>(mozilla::net::HttpBackgroundChannelChild*, void (mozilla::net::HttpBackgroundChannelChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char> const, nsTString<char> const, nsTString<char> const>::applyImpl<mozilla::net::HttpChannelChild, nsresult (mozilla::net::HttpBaseChannel::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const>, 0ul, 1ul, 2ul>(mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpBaseChannel::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::HttpChannelChild, nsresult (mozilla::net::HttpChannelChild::*)()>(mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpChannelChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult>::applyImpl<mozilla::net::HttpChannelChild, nsresult (mozilla::net::HttpChannelChild::*)(nsresult), StoreCopyPassByConstLRef<nsresult>, 0ul>(mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpChannelChild::*)(nsresult), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::net::HttpChannelChild> >::applyImpl<mozilla::net::HttpBackgroundChannelChild, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), StoreRefPtrPassByPtr<mozilla::net::HttpChannelChild>, 0ul>(mozilla::net::HttpBackgroundChannelChild*, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::HttpChannelChild> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult>::applyImpl<mozilla::net::HttpChannelChild, void (mozilla::net::HttpChannelChild::*)(nsresult const&), StoreCopyPassByConstLRef<nsresult>, 0ul>(mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(nsresult const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult>::applyImpl<mozilla::net::HttpChannelChild, void (mozilla::net::HttpBaseChannel::*)(nsresult), StoreCopyPassByConstLRef<nsresult>, 0ul>(mozilla::net::HttpChannelChild*, void (mozilla::net::HttpBaseChannel::*)(nsresult), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::HttpChannelParent, void (mozilla::net::HttpChannelParent::*)()>(mozilla::net::HttpChannelParent*, void (mozilla::net::HttpChannelParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult>::applyImpl<nsIInterceptedChannel, nsresult (nsIInterceptedChannel::*)(nsresult), StoreCopyPassByConstLRef<nsresult>, 0ul>(nsIInterceptedChannel*, nsresult (nsIInterceptedChannel::*)(nsresult), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::InterceptedHttpChannel, void (mozilla::net::InterceptedHttpChannel::*)()>(mozilla::net::InterceptedHttpChannel*, void (mozilla::net::InterceptedHttpChannel::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::nsHttpChannel, void (mozilla::net::nsHttpChannel::*)()>(mozilla::net::nsHttpChannel*, void (mozilla::net::nsHttpChannel::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::nsHttpChannel, nsresult (mozilla::net::nsHttpChannel::*)()>(mozilla::net::nsHttpChannel*, nsresult (mozilla::net::nsHttpChannel::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::ExtensionJARFileOpener, nsresult (mozilla::net::ExtensionJARFileOpener::*)()>(mozilla::net::ExtensionJARFileOpener*, nsresult (mozilla::net::ExtensionJARFileOpener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::WebSocketChannel, nsresult (mozilla::net::WebSocketChannel::*)()>(mozilla::net::WebSocketChannel*, nsresult (mozilla::net::WebSocketChannel::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::WebSocketChannel, void (mozilla::net::WebSocketChannel::*)()>(mozilla::net::WebSocketChannel*, void (mozilla::net::WebSocketChannel::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult>::applyImpl<mozilla::net::WebSocketChannel, void (mozilla::net::WebSocketChannel::*)(nsresult), StoreCopyPassByConstLRef<nsresult>, 0ul>(mozilla::net::WebSocketChannel*, void (mozilla::net::WebSocketChannel::*)(nsresult), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::net::WebSocketChannelChild, void (mozilla::net::WebSocketChannelChild::*)()>(mozilla::net::WebSocketChannelChild*, void (mozilla::net::WebSocketChannelChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsWyciwygChannel, void (nsWyciwygChannel::*)()>(nsWyciwygChannel*, void (nsWyciwygChannel::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ContentParent, unsigned int (mozilla::dom::ContentParent::*)()>(mozilla::dom::ContentParent*, unsigned int (mozilla::dom::ContentParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<(anonymous namespace)::ParentImpl, void ((anonymous namespace)::ParentImpl::*)()>((anonymous namespace)::ParentImpl*, void ((anonymous namespace)::ParentImpl::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&>::applyImpl<mozilla::dom::ContentChild, bool (mozilla::dom::PContentChild::*)(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> const&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> >, 0ul>(mozilla::dom::ContentChild*, bool (mozilla::dom::PContentChild::*)(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> const&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<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> > > > >::applyImpl<mozilla::ipc::GeckoChildProcessHost, bool (mozilla::ipc::GeckoChildProcessHost::*)(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> > > >), 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> > > > >, 0ul>(mozilla::ipc::GeckoChildProcessHost*, bool (mozilla::ipc::GeckoChildProcessHost::*)(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> > > >), 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> > > > > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::ipc::MessageChannel, void (mozilla::ipc::MessageChannel::*)()>(mozilla::ipc::MessageChannel*, void (mozilla::ipc::MessageChannel::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::MessageChannel*, mozilla::ipc::Side>::applyImpl<mozilla::ipc::MessageChannel, void (mozilla::ipc::MessageChannel::*)(mozilla::ipc::MessageChannel*, mozilla::ipc::Side), StorePtrPassByPtr<mozilla::ipc::MessageChannel>, StoreCopyPassByConstLRef<mozilla::ipc::Side>, 0ul, 1ul>(mozilla::ipc::MessageChannel*, void (mozilla::ipc::MessageChannel::*)(mozilla::ipc::MessageChannel*, mozilla::ipc::Side), mozilla::Tuple<StorePtrPassByPtr<mozilla::ipc::MessageChannel>, StoreCopyPassByConstLRef<mozilla::ipc::Side> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::ipc::ProcessLink, void (mozilla::ipc::ProcessLink::*)()>(mozilla::ipc::ProcessLink*, void (mozilla::ipc::ProcessLink::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<IPC::Message*>::applyImpl<mozilla::ipc::ProcessLink, void (mozilla::ipc::ProcessLink::*)(IPC::Message*), StorePtrPassByPtr<IPC::Message>, 0ul>(mozilla::ipc::ProcessLink*, void (mozilla::ipc::ProcessLink::*)(IPC::Message*), mozilla::Tuple<StorePtrPassByPtr<IPC::Message> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<IPC::Message*>::applyImpl<IPC::Channel, bool (IPC::Channel::*)(IPC::Message*), StorePtrPassByPtr<IPC::Message>, 0ul>(IPC::Channel*, bool (IPC::Channel::*)(IPC::Message*), mozilla::Tuple<StorePtrPassByPtr<IPC::Message> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::ScriptPreloader, void (mozilla::ScriptPreloader::*)()>(mozilla::ScriptPreloader*, void (mozilla::ScriptPreloader::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::URLPreloader, void (mozilla::URLPreloader::*)()>(mozilla::URLPreloader*, void (mozilla::URLPreloader::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Line
Count
Source
1177
3
  {
1178
3
    return ((*o).*m)(Get<Indices>(args).PassAsParameter()...);
1179
3
  }
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<nsJARInputThunk>, bool>::applyImpl<nsJARChannel, nsresult (nsJARChannel::*)(nsJARInputThunk*, bool), StoreRefPtrPassByPtr<nsJARInputThunk>, StoreCopyPassByConstLRef<bool>, 0ul, 1ul>(nsJARChannel*, nsresult (nsJARChannel::*)(nsJARInputThunk*, bool), mozilla::Tuple<StoreRefPtrPassByPtr<nsJARInputThunk>, StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult, bool>::applyImpl<nsJARChannel, nsresult (nsJARChannel::*)(nsresult, bool), StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<bool>, 0ul, 1ul>(nsJARChannel*, nsresult (nsJARChannel::*)(nsresult, bool), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long>::applyImpl<nsJARChannel, void (nsJARChannel::*)(unsigned long), StoreCopyPassByConstLRef<unsigned long>, 0ul>(nsJARChannel*, void (nsJARChannel::*)(unsigned long), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::storage::Connection, void (mozilla::storage::Connection::*)()>(mozilla::storage::Connection*, void (mozilla::storage::Connection::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::storage::Connection, nsresult (mozilla::storage::Connection::*)()>(mozilla::storage::Connection*, nsresult (mozilla::storage::Connection::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::storage::AsyncExecuteStatements, nsresult (mozilla::storage::AsyncExecuteStatements::*)()>(mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsCOMPtr<mozIStorageError> >::applyImpl<mozilla::storage::AsyncExecuteStatements, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozIStorageError*), StoreRefPtrPassByPtr<mozIStorageError>, 0ul>(mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozIStorageError*), mozilla::Tuple<StoreRefPtrPassByPtr<mozIStorageError> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::storage::ResultSet> >::applyImpl<mozilla::storage::AsyncExecuteStatements, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozilla::storage::ResultSet*), StoreRefPtrPassByPtr<mozilla::storage::ResultSet>, 0ul>(mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozilla::storage::ResultSet*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::storage::ResultSet> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char> const>::applyImpl<mozilla::storage::Connection, nsresult (mozilla::storage::Connection::*)(nsTSubstring<char> const&), StoreCopyPassByConstLRef<nsTString<char> const>, 0ul>(mozilla::storage::Connection*, nsresult (mozilla::storage::Connection::*)(nsTSubstring<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> const> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::layers::Image>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool>::applyImpl<mozilla::VideoFrameConverter, void (mozilla::VideoFrameConverter::*)(mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool), StoreRefPtrPassByPtr<mozilla::layers::Image>, StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >, StoreCopyPassByConstLRef<bool>, 0ul, 1ul, 2ul>(mozilla::VideoFrameConverter*, void (mozilla::VideoFrameConverter::*)(mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::layers::Image>, StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >, StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::GenericReceiveListener, void (mozilla::GenericReceiveListener::*)()>(mozilla::GenericReceiveListener*, void (mozilla::GenericReceiveListener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::VideoSessionConduit, void (mozilla::VideoSessionConduit::*)()>(mozilla::VideoSessionConduit*, void (mozilla::VideoSessionConduit::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsOfflineCacheUpdate, void (nsOfflineCacheUpdate::*)()>(nsOfflineCacheUpdate*, void (nsOfflineCacheUpdate::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsHtml5Parser, nsresult (nsHtml5Parser::*)()>(nsHtml5Parser*, nsresult (nsHtml5Parser::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::PaintThread, void (mozilla::layers::PaintThread::*)()>(mozilla::layers::PaintThread*, void (mozilla::layers::PaintThread::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::AsyncImagePipelineManager, void (mozilla::layers::AsyncImagePipelineManager::*)()>(mozilla::layers::AsyncImagePipelineManager*, void (mozilla::layers::AsyncImagePipelineManager::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, int>::applyImpl<mozilla::layers::CompositorBridgeParentBase, void (mozilla::layers::CompositorBridgeParentBase::*)(mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, bool), StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>, StoreCopyPassByConstLRef<int>, 0ul, 1ul, 2ul>(mozilla::layers::CompositorBridgeParentBase*, void (mozilla::layers::CompositorBridgeParentBase::*)(mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, bool), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>, StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::applyImpl<mozilla::layers::AsyncPanZoomController, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >, 0ul>(mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::GeckoContentController, void (mozilla::layers::GeckoContentController::*)()>(mozilla::layers::GeckoContentController*, void (mozilla::layers::GeckoContentController::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::Maybe<mozilla::layers::ZoomConstraints> >::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&), StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::layers::ZoomConstraints> >, 0ul, 1ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::layers::ZoomConstraints> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::InputQueue, void (mozilla::layers::InputQueue::*)()>(mozilla::layers::InputQueue*, void (mozilla::layers::InputQueue::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget>::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&), StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::FocusTarget>, 0ul, 1ul, 2ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::FocusTarget> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> >::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> const&), StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreRefPtrPassByPtr<mozilla::layers::APZCTreeManager>, 0ul, 1ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreRefPtrPassByPtr<mozilla::layers::APZCTreeManager> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::AsyncPanZoomController, void (mozilla::layers::AsyncPanZoomController::*)()>(mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::AsyncPanZoomController*>::applyImpl<mozilla::layers::OverscrollHandoffChain const, void (mozilla::layers::OverscrollHandoffChain::*)(mozilla::layers::AsyncPanZoomController const*) const, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController>, 0ul>(mozilla::layers::OverscrollHandoffChain const*, void (mozilla::layers::OverscrollHandoffChain::*)(mozilla::layers::AsyncPanZoomController const*) const, mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>, RefPtr<mozilla::layers::OverscrollHandoffChain const>, RefPtr<mozilla::layers::AsyncPanZoomController const> >::applyImpl<mozilla::layers::AsyncPanZoomController, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&, RefPtr<mozilla::layers::OverscrollHandoffChain const> const&, RefPtr<mozilla::layers::AsyncPanZoomController const> const&), StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >, StoreRefPtrPassByPtr<mozilla::layers::OverscrollHandoffChain const>, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const>, 0ul, 1ul, 2ul>(mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&, RefPtr<mozilla::layers::OverscrollHandoffChain const> const&, RefPtr<mozilla::layers::AsyncPanZoomController const> const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >, StoreRefPtrPassByPtr<mozilla::layers::OverscrollHandoffChain const>, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::applyImpl<mozilla::layers::GeckoContentController, void (mozilla::layers::GeckoContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long>, 0ul, 1ul, 2ul, 3ul, 4ul>(mozilla::layers::GeckoContentController*, void (mozilla::layers::GeckoContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::layers::AsyncPanZoomController, void (mozilla::layers::AsyncPanZoomController::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::FrameMetrics, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::applyImpl<mozilla::layers::AsyncPanZoomController, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::layers::FrameMetrics const&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), StoreCopyPassByConstLRef<mozilla::layers::FrameMetrics>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >, 0ul, 1ul>(mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::layers::FrameMetrics const&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::FrameMetrics>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::GestureEventListener, void (mozilla::layers::GestureEventListener::*)()>(mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::layers::GestureEventListener, void (mozilla::layers::GestureEventListener::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long>::applyImpl<mozilla::layers::InputQueue, void (mozilla::layers::InputQueue::*)(unsigned long), StoreCopyPassByConstLRef<unsigned long>, 0ul>(mozilla::layers::InputQueue*, void (mozilla::layers::InputQueue::*)(unsigned long), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsCOMPtr<mozilla::dom::Element> >::applyImpl<mozilla::layers::ActiveElementManager, void (mozilla::layers::ActiveElementManager::*)(nsCOMPtr<mozilla::dom::Element> const&), StoreRefPtrPassByPtr<mozilla::dom::Element>, 0ul>(mozilla::layers::ActiveElementManager*, void (mozilla::layers::ActiveElementManager::*)(nsCOMPtr<mozilla::dom::Element> const&), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::Element> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::ChromeProcessController, void (mozilla::layers::ChromeProcessController::*)()>(mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::applyImpl<mozilla::layers::IAPZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int>, 0ul, 1ul, 2ul>(mozilla::layers::IAPZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::applyImpl<mozilla::layers::ChromeProcessController, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long>, 0ul, 1ul, 2ul, 3ul, 4ul>(mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short>::applyImpl<mozilla::layers::ChromeProcessController, void (mozilla::layers::ChromeProcessController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), StoreCopyPassByConstLRef<mozilla::PinchGestureInput::PinchGestureType>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, 0ul, 1ul, 2ul, 3ul>(mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::PinchGestureInput::PinchGestureType>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int>::applyImpl<mozilla::layers::ChromeProcessController, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>, StoreCopyPassByConstLRef<int>, 0ul, 1ul, 2ul>(mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>, StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long, nsTString<char16_t> >::applyImpl<mozilla::layers::ChromeProcessController, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&, nsTString<char16_t> const&), StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTString<char16_t> >, 0ul, 1ul>(mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&, nsTString<char16_t> const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTString<char16_t> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long>::applyImpl<mozilla::layers::ChromeProcessController, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&), StoreCopyPassByConstLRef<unsigned long>, 0ul>(mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid>::applyImpl<mozilla::layers::ChromeProcessController, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&), StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, 0ul>(mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::KeyboardMap>::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap>, 0ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int>, 0ul, 1ul, 2ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long, bool>::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<bool>, 0ul, 1ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> >, 0ul, 1ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<float>::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(float), StoreCopyPassByConstLRef<float>, 0ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(float), mozilla::Tuple<StoreCopyPassByConstLRef<float> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long, StoreCopyPassByRRef<nsTArray<unsigned int> > >::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<unsigned int> >, 0ul, 1ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<unsigned int> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics>::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics>, 0ul, 1ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> >::applyImpl<mozilla::layers::APZCTreeManager, bool (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&), StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> >, 0ul, 1ul>(mozilla::layers::APZCTreeManager*, bool (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid>::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&), StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, 0ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::CompositorBridgeChild, void (mozilla::layers::CompositorBridgeChild::*)()>(mozilla::layers::CompositorBridgeChild*, void (mozilla::layers::CompositorBridgeChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int>::applyImpl<mozilla::layers::CompositorBridgeParentBase, bool (mozilla::layers::CompositorBridgeParentBase::*)(base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int), StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<unsigned int>, 0ul, 1ul, 2ul, 3ul>(mozilla::layers::CompositorBridgeParentBase*, bool (mozilla::layers::CompositorBridgeParentBase::*)(base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int), mozilla::Tuple<StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long, unsigned int>::applyImpl<mozilla::layers::CompositorBridgeParentBase, bool (mozilla::layers::CompositorBridgeParentBase::*)(unsigned long, unsigned int), StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<unsigned int>, 0ul, 1ul>(mozilla::layers::CompositorBridgeParentBase*, bool (mozilla::layers::CompositorBridgeParentBase::*)(unsigned long, unsigned int), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::CompositorBridgeParent, void (mozilla::layers::CompositorBridgeParent::*)()>(mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int, int>::applyImpl<mozilla::layers::CompositorBridgeParent, void (mozilla::layers::CompositorBridgeParent::*)(int, int), StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, 0ul, 1ul>(mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(int, int), mozilla::Tuple<StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::applyImpl<mozilla::layers::APZCTreeManager, void (mozilla::layers::APZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> >, 0ul, 1ul>(mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&>::applyImpl<mozilla::layers::CompositorManagerParent, void (mozilla::layers::CompositorManagerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> >, 0ul>(mozilla::layers::CompositorManagerParent*, void (mozilla::layers::CompositorManagerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::CompositorManagerParent, void (mozilla::layers::CompositorManagerParent::*)()>(mozilla::layers::CompositorManagerParent*, void (mozilla::layers::CompositorManagerParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::TimeStamp>::applyImpl<mozilla::layers::CompositorVsyncScheduler, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), StoreCopyPassByConstLRef<mozilla::TimeStamp>, 0ul>(mozilla::layers::CompositorVsyncScheduler*, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::TimeStamp> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::CrossProcessCompositorBridgeParent, void (mozilla::layers::CrossProcessCompositorBridgeParent::*)()>(mozilla::layers::CrossProcessCompositorBridgeParent*, void (mozilla::layers::CrossProcessCompositorBridgeParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&>::applyImpl<mozilla::layers::ImageBridgeChild, void (mozilla::layers::ImageBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> >, 0ul>(mozilla::layers::ImageBridgeChild*, void (mozilla::layers::ImageBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&>::applyImpl<mozilla::layers::ImageBridgeParent, void (mozilla::layers::ImageBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> >, 0ul>(mozilla::layers::ImageBridgeParent*, void (mozilla::layers::ImageBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::ImageBridgeParent, void (mozilla::layers::ImageBridgeParent::*)()>(mozilla::layers::ImageBridgeParent*, void (mozilla::layers::ImageBridgeParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::applyImpl<mozilla::layers::RemoteContentController, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long), StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long>, 0ul, 1ul, 2ul, 3ul, 4ul>(mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short>::applyImpl<mozilla::layers::RemoteContentController, void (mozilla::layers::RemoteContentController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), StoreCopyPassByConstLRef<mozilla::PinchGestureInput::PinchGestureType>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, 0ul, 1ul, 2ul, 3ul>(mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::PinchGestureInput::PinchGestureType>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int>::applyImpl<mozilla::layers::RemoteContentController, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>, StoreCopyPassByConstLRef<int>, 0ul, 1ul, 2ul>(mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>, StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<float, float, bool>::applyImpl<mozilla::layers::RemoteContentController, void (mozilla::layers::RemoteContentController::*)(float, float, bool), StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<bool>, 0ul, 1ul, 2ul>(mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(float, float, bool), mozilla::Tuple<StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long, nsTString<char16_t> >::applyImpl<mozilla::layers::RemoteContentController, void (mozilla::layers::RemoteContentController::*)(unsigned long const&, nsTString<char16_t> const&), StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTString<char16_t> >, 0ul, 1ul>(mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(unsigned long const&, nsTString<char16_t> const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTString<char16_t> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long>::applyImpl<mozilla::layers::RemoteContentController, void (mozilla::layers::RemoteContentController::*)(unsigned long const&), StoreCopyPassByConstLRef<unsigned long>, 0ul>(mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(unsigned long const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid>::applyImpl<mozilla::layers::RemoteContentController, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&), StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, 0ul>(mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::LayerTransactionChild, void (mozilla::layers::LayerTransactionChild::*)()>(mozilla::layers::LayerTransactionChild*, void (mozilla::layers::LayerTransactionChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::UiCompositorControllerChild, void (mozilla::layers::UiCompositorControllerChild::*)()>(mozilla::layers::UiCompositorControllerChild*, void (mozilla::layers::UiCompositorControllerChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&>::applyImpl<mozilla::layers::UiCompositorControllerChild, void (mozilla::layers::UiCompositorControllerChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild> >, 0ul>(mozilla::layers::UiCompositorControllerChild*, void (mozilla::layers::UiCompositorControllerChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&>::applyImpl<mozilla::layers::UiCompositorControllerParent, void (mozilla::layers::UiCompositorControllerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> >, 0ul>(mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int>::applyImpl<mozilla::layers::UiCompositorControllerParent, void (mozilla::layers::UiCompositorControllerParent::*)(int), StoreCopyPassByConstLRef<int>, 0ul>(mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)(int), mozilla::Tuple<StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::layers::UiCompositorControllerParent, void (mozilla::layers::UiCompositorControllerParent::*)()>(mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<GtkVsyncSource::GLXDisplay, void (GtkVsyncSource::GLXDisplay::*)()>(GtkVsyncSource::GLXDisplay*, void (GtkVsyncSource::GLXDisplay::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<SoftwareDisplay, void (SoftwareDisplay::*)()>(SoftwareDisplay*, void (SoftwareDisplay::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::TimeStamp>::applyImpl<SoftwareDisplay, void (SoftwareDisplay::*)(mozilla::TimeStamp), StoreCopyPassByConstLRef<mozilla::TimeStamp>, 0ul>(SoftwareDisplay*, void (SoftwareDisplay::*)(mozilla::TimeStamp), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::TimeStamp> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&>::applyImpl<mozilla::gfx::VsyncBridgeChild, void (mozilla::gfx::VsyncBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild> >, 0ul>(mozilla::gfx::VsyncBridgeChild*, void (mozilla::gfx::VsyncBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gfx::VsyncBridgeChild, void (mozilla::gfx::VsyncBridgeChild::*)()>(mozilla::gfx::VsyncBridgeChild*, void (mozilla::gfx::VsyncBridgeChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&>::applyImpl<mozilla::gfx::VsyncBridgeParent, void (mozilla::gfx::VsyncBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> >, 0ul>(mozilla::gfx::VsyncBridgeParent*, void (mozilla::gfx::VsyncBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gfx::VsyncBridgeParent, void (mozilla::gfx::VsyncBridgeParent::*)()>(mozilla::gfx::VsyncBridgeParent*, void (mozilla::gfx::VsyncBridgeParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::applyImpl<mozilla::gfx::VRDisplayHost, void (mozilla::gfx::VRDisplayHost::*)(mozilla::layers::SurfaceDescriptor const&, unsigned long, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&), StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, 0ul, 1ul, 2ul, 3ul>(mozilla::gfx::VRDisplayHost*, void (mozilla::gfx::VRDisplayHost::*)(mozilla::layers::SurfaceDescriptor const&, unsigned long, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&), 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> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)(), (((Get<5ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<vr::IVRSystem*, unsigned int, double, double, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::applyImpl<mozilla::gfx::impl::VRControllerOpenVR, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), StorePtrPassByPtr<vr::IVRSystem>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise>, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul>(mozilla::gfx::impl::VRControllerOpenVR*, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), mozilla::Tuple<StorePtrPassByPtr<vr::IVRSystem>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::applyImpl<mozilla::gfx::VRManager, void (mozilla::gfx::VRManager::*)(mozilla::gfx::VRManagerPromise const&), StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise>, 0ul>(mozilla::gfx::VRManager*, void (mozilla::gfx::VRManager::*)(mozilla::gfx::VRManagerPromise const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::TimeStamp>::applyImpl<mozilla::gfx::VRThread, void (mozilla::gfx::VRThread::*)(mozilla::TimeStamp), StoreCopyPassByConstLRef<mozilla::TimeStamp>, 0ul>(mozilla::gfx::VRThread*, void (mozilla::gfx::VRThread::*)(mozilla::TimeStamp), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::TimeStamp> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gfx::VRGPUParent, void (mozilla::gfx::VRGPUParent::*)()>(mozilla::gfx::VRGPUParent*, void (mozilla::gfx::VRGPUParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&>::applyImpl<mozilla::gfx::VRGPUParent, void (mozilla::gfx::VRGPUParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> >, 0ul>(mozilla::gfx::VRGPUParent*, void (mozilla::gfx::VRGPUParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int>::applyImpl<mozilla::gfx::VRManagerChild, void (mozilla::gfx::VRManagerChild::*)(unsigned int), StoreCopyPassByConstLRef<unsigned int>, 0ul>(mozilla::gfx::VRManagerChild*, void (mozilla::gfx::VRManagerChild::*)(unsigned int), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int, RefPtr<mozilla::dom::VREventObserver> >::applyImpl<mozilla::gfx::VRManagerChild, void (mozilla::gfx::VRManagerChild::*)(unsigned int, mozilla::dom::VREventObserver*), StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<mozilla::dom::VREventObserver>, 0ul, 1ul>(mozilla::gfx::VRManagerChild*, void (mozilla::gfx::VRManagerChild::*)(unsigned int, mozilla::dom::VREventObserver*), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<mozilla::dom::VREventObserver> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&>::applyImpl<mozilla::gfx::VRManagerParent, void (mozilla::gfx::VRManagerParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> >, 0ul>(mozilla::gfx::VRManagerParent*, void (mozilla::gfx::VRManagerParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gfx::VRManagerParent, void (mozilla::gfx::VRManagerParent::*)()>(mozilla::gfx::VRManagerParent*, void (mozilla::gfx::VRManagerParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gfx::VRService, void (mozilla::gfx::VRService::*)()>(mozilla::gfx::VRService*, void (mozilla::gfx::VRService::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >::applyImpl<mozilla::wr::RenderThread, void (mozilla::wr::RenderThread::*)(mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> const&), StoreCopyPassByConstLRef<mozilla::wr::MemoryReport>, StoreRefPtrPassByPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>, 0ul, 1ul>(mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::wr::MemoryReport>, StoreRefPtrPassByPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::wr::WrWindowId>::applyImpl<mozilla::wr::RenderThread, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId), StoreCopyPassByConstLRef<mozilla::wr::WrWindowId>, 0ul>(mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::wr::WrWindowId> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&>::applyImpl<mozilla::wr::RenderThread, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >), StoreCopyPassByConstLRef<mozilla::wr::WrWindowId>, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > >, 0ul, 1ul>(mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::wr::WrWindowId>, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::wr::RenderThread, void (mozilla::wr::RenderThread::*)()>(mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::wr::RenderTextureHost*>::applyImpl<mozilla::wr::RenderTextureHostWrapper, void (mozilla::wr::RenderTextureHostWrapper::*)(mozilla::wr::RenderTextureHost*), StoreRefPtrPassByPtr<mozilla::wr::RenderTextureHost>, 0ul>(mozilla::wr::RenderTextureHostWrapper*, void (mozilla::wr::RenderTextureHostWrapper::*)(mozilla::wr::RenderTextureHost*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::wr::RenderTextureHost> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)(), (((Get<5ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int, int, unsigned int, nsTString<char16_t>, nsTString<char16_t>, nsIObserver*>::applyImpl<nsIWidget, nsresult (nsIWidget::*)(int, int, unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*), StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver>, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul>(nsIWidget*, nsresult (nsIWidget::*)(int, int, unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*), mozilla::Tuple<StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, int, int, nsIObserver*>::applyImpl<nsIWidget, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, unsigned int, nsIObserver*), StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsIObserver>, 0ul, 1ul, 2ul, 3ul>(nsIWidget*, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, unsigned int, nsIObserver*), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsIObserver> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*>::applyImpl<nsIWidget, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*), StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreRefPtrPassByPtr<nsIObserver>, 0ul, 1ul>(nsIWidget*, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreRefPtrPassByPtr<nsIObserver> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)(), (((Get<5ul>)({parm#3})).PassAsParameter)(), (((Get<6ul>)({parm#3})).PassAsParameter)(), (((Get<7ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*>::applyImpl<nsIWidget, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*), StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver>, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul, 7ul>(nsIWidget*, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*), 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> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul, 7ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)(), (((Get<5ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*>::applyImpl<nsIWidget, nsresult (nsIWidget::*)(unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*), StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsIWidget::TouchPointerState>, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver>, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul>(nsIWidget*, nsresult (nsIWidget::*)(unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsIWidget::TouchPointerState>, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*>::applyImpl<nsIWidget, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*), StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<bool>, StoreRefPtrPassByPtr<nsIObserver>, 0ul, 1ul, 2ul>(nsIWidget*, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<bool>, StoreRefPtrPassByPtr<nsIObserver> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsIObserver*>::applyImpl<nsIWidget, nsresult (nsIWidget::*)(nsIObserver*), StoreRefPtrPassByPtr<nsIObserver>, 0ul>(nsIWidget*, nsresult (nsIWidget::*)(nsIObserver*), mozilla::Tuple<StoreRefPtrPassByPtr<nsIObserver> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsGlobalWindowOuter, void (nsGlobalWindowOuter::*)()>(nsGlobalWindowOuter*, void (nsGlobalWindowOuter::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsGlobalWindowInner, void (nsGlobalWindowInner::*)()>(nsGlobalWindowInner*, void (nsGlobalWindowInner::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsXBLBinding, void (nsXBLBinding::*)()>(nsXBLBinding*, void (nsXBLBinding::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::EventSourceImpl, void (mozilla::dom::EventSourceImpl::*)()>(mozilla::dom::EventSourceImpl*, void (mozilla::dom::EventSourceImpl::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ScreenOrientation, void (mozilla::dom::ScreenOrientation::*)()>(mozilla::dom::ScreenOrientation*, void (mozilla::dom::ScreenOrientation::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsContentSink, void (nsContentSink::*)()>(nsContentSink*, void (nsContentSink::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsIDocument, void (nsIDocument::*)()>(nsIDocument*, void (nsIDocument::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsDocument, void (nsDocument::*)()>(nsDocument*, void (nsDocument::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::TimedMetadata&&>::applyImpl<mozilla::detail::Listener<mozilla::TimedMetadata>, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(mozilla::TimedMetadata&&), StoreCopyPassByRRef<mozilla::TimedMetadata>, 0ul>(mozilla::detail::Listener<mozilla::TimedMetadata>*, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(mozilla::TimedMetadata&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::TimedMetadata> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<mozilla::TimedMetadata>, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)()>(mozilla::detail::Listener<mozilla::TimedMetadata>*, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsRange, void (nsRange::*)()>(nsRange*, void (nsRange::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsAttributeTextNode, void (nsAttributeTextNode::*)()>(nsAttributeTextNode*, void (nsAttributeTextNode::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher, void (mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher::*)()>(mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::cache::Context::ThreadsafeHandle, void (mozilla::dom::cache::Context::ThreadsafeHandle::*)()>(mozilla::dom::cache::Context::ThreadsafeHandle*, void (mozilla::dom::cache::Context::ThreadsafeHandle::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult>::applyImpl<mozilla::dom::cache::Manager::CachePutAllAction, void (mozilla::dom::cache::Manager::CachePutAllAction::*)(nsresult), StoreCopyPassByConstLRef<nsresult>, 0ul>(mozilla::dom::cache::Manager::CachePutAllAction*, void (mozilla::dom::cache::Manager::CachePutAllAction::*)(nsresult), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::cache::ReadStream::Inner, void (mozilla::dom::cache::ReadStream::Inner::*)()>(mozilla::dom::cache::ReadStream::Inner*, void (mozilla::dom::cache::ReadStream::Inner::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::CanvasRenderingContext2D, void (mozilla::dom::CanvasRenderingContext2D::*)()>(mozilla::dom::CanvasRenderingContext2D*, void (mozilla::dom::CanvasRenderingContext2D::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::EventListenerService, void (mozilla::EventListenerService::*)()>(mozilla::EventListenerService*, void (mozilla::EventListenerService::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::HTMLCanvasPrintState, void (mozilla::dom::HTMLCanvasPrintState::*)()>(mozilla::dom::HTMLCanvasPrintState*, void (mozilla::dom::HTMLCanvasPrintState::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::HTMLCanvasElement, void (mozilla::dom::HTMLCanvasElement::*)()>(mozilla::dom::HTMLCanvasElement*, void (mozilla::dom::HTMLCanvasElement::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::dom::Blob*, char const*>::applyImpl<mozilla::dom::BlobCallback, void (mozilla::dom::BlobCallback::*)(mozilla::dom::Blob*, char const*), StoreRefPtrPassByPtr<mozilla::dom::Blob>, StoreConstPtrPassByConstPtr<char>, 0ul, 1ul>(mozilla::dom::BlobCallback*, void (mozilla::dom::BlobCallback::*)(mozilla::dom::Blob*, char const*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::Blob>, StoreConstPtrPassByConstPtr<char> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::HTMLEmbedElement, void (mozilla::dom::HTMLEmbedElement::*)()>(mozilla::dom::HTMLEmbedElement*, void (mozilla::dom::HTMLEmbedElement::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::dom::HTMLImageElement, void (mozilla::dom::HTMLImageElement::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::dom::HTMLImageElement*, void (mozilla::dom::HTMLImageElement::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::HTMLInputElement, void (mozilla::dom::HTMLInputElement::*)()>(mozilla::dom::HTMLInputElement*, void (mozilla::dom::HTMLInputElement::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::HTMLLinkElement, void (mozilla::dom::HTMLLinkElement::*)()>(mozilla::dom::HTMLLinkElement*, void (mozilla::dom::HTMLLinkElement::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::applyImpl<mozilla::dom::HTMLMediaElement::StreamSizeListener, void (mozilla::dom::HTMLMediaElement::StreamSizeListener::*)(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>), StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >, 0ul>(mozilla::dom::HTMLMediaElement::StreamSizeListener*, void (mozilla::dom::HTMLMediaElement::StreamSizeListener::*)(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::dom::HTMLMediaElement*>::applyImpl<mozilla::dom::HTMLMediaElement::ChannelLoader, void (mozilla::dom::HTMLMediaElement::ChannelLoader::*)(mozilla::dom::HTMLMediaElement*), StoreRefPtrPassByPtr<mozilla::dom::HTMLMediaElement>, 0ul>(mozilla::dom::HTMLMediaElement::ChannelLoader*, void (mozilla::dom::HTMLMediaElement::ChannelLoader::*)(mozilla::dom::HTMLMediaElement*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::HTMLMediaElement> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::HTMLMediaElement::StreamListener, void (mozilla::dom::HTMLMediaElement::StreamListener::*)()>(mozilla::dom::HTMLMediaElement::StreamListener*, void (mozilla::dom::HTMLMediaElement::StreamListener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::HTMLMediaElement, void (mozilla::dom::HTMLMediaElement::*)()>(mozilla::dom::HTMLMediaElement*, void (mozilla::dom::HTMLMediaElement::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char> >::applyImpl<mozilla::dom::HTMLMediaElement, void (mozilla::dom::HTMLMediaElement::*)(nsTSubstring<char> const&), StoreCopyPassByConstLRef<nsTString<char> >, 0ul>(mozilla::dom::HTMLMediaElement*, void (mozilla::dom::HTMLMediaElement::*)(nsTSubstring<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::MediaStreamTrack, void (mozilla::dom::MediaStreamTrack::*)()>(mozilla::dom::MediaStreamTrack*, void (mozilla::dom::MediaStreamTrack::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack> >::applyImpl<mozilla::DOMMediaStream, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack>, 0ul>(mozilla::DOMMediaStream*, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher, void (mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher::*)()>(mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::HTMLObjectElement, void (mozilla::dom::HTMLObjectElement::*)()>(mozilla::dom::HTMLObjectElement*, void (mozilla::dom::HTMLObjectElement::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::HTMLStyleElement, void (mozilla::dom::HTMLStyleElement::*)()>(mozilla::dom::HTMLStyleElement*, void (mozilla::dom::HTMLStyleElement::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::HTMLTrackElement, void (mozilla::dom::HTMLTrackElement::*)()>(mozilla::dom::HTMLTrackElement*, void (mozilla::dom::HTMLTrackElement::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char16_t> const>::applyImpl<mozilla::dom::HTMLTrackElement, void (mozilla::dom::HTMLTrackElement::*)(nsTSubstring<char16_t> const&), StoreCopyPassByConstLRef<nsTString<char16_t> const>, 0ul>(mozilla::dom::HTMLTrackElement*, void (mozilla::dom::HTMLTrackElement::*)(nsTSubstring<char16_t> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char16_t> const> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ImageDocument, void (mozilla::dom::ImageDocument::*)()>(mozilla::dom::ImageDocument*, void (mozilla::dom::ImageDocument::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::TextTrackManager, void (mozilla::dom::TextTrackManager::*)()>(mozilla::dom::TextTrackManager*, void (mozilla::dom::TextTrackManager::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<HTMLContentSink, void (HTMLContentSink::*)()>(HTMLContentSink*, void (HTMLContentSink::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsHTMLDocument, void (nsHTMLDocument::*)()>(nsHTMLDocument*, void (nsHTMLDocument::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsJSChannel, void (nsJSChannel::*)()>(nsJSChannel*, void (nsJSChannel::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::BackgroundVideoDecodingPermissionObserver const, void (mozilla::BackgroundVideoDecodingPermissionObserver::*)() const>(mozilla::BackgroundVideoDecodingPermissionObserver const*, void (mozilla::BackgroundVideoDecodingPermissionObserver::*)() const, mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, RefPtr<mozilla::MediaStream>, int>::applyImpl<mozilla::DOMMediaStream::OwnedStreamListener, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, mozilla::MediaStream*, int), StorePtrPassByPtr<mozilla::MediaStreamGraph>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int>, 0ul, 1ul, 2ul, 3ul, 4ul>(mozilla::DOMMediaStream::OwnedStreamListener*, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, mozilla::MediaStream*, int), mozilla::Tuple<StorePtrPassByPtr<mozilla::MediaStreamGraph>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::dom::MediaStreamTrack> >::applyImpl<mozilla::DOMMediaStream, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack>, 0ul>(mozilla::DOMMediaStream*, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaStreamGraph*, RefPtr<mozilla::MediaStream>, int, int>::applyImpl<mozilla::DOMMediaStream::OwnedStreamListener, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, mozilla::MediaStream*, int, int), StorePtrPassByPtr<mozilla::MediaStreamGraph>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, 0ul, 1ul, 2ul, 3ul>(mozilla::DOMMediaStream::OwnedStreamListener*, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, mozilla::MediaStream*, int, int), mozilla::Tuple<StorePtrPassByPtr<mozilla::MediaStreamGraph>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::DOMMediaStream::PlaybackStreamListener, void (mozilla::DOMMediaStream::PlaybackStreamListener::*)()>(mozilla::DOMMediaStream::PlaybackStreamListener*, void (mozilla::DOMMediaStream::PlaybackStreamListener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::DOMMediaStream, void (mozilla::DOMMediaStream::*)()>(mozilla::DOMMediaStream*, void (mozilla::DOMMediaStream::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaResourceCallback, void (mozilla::MediaResourceCallback::*)()>(mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::MediaResourceCallback, void (mozilla::MediaResourceCallback::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::ChannelMediaResource, void (mozilla::ChannelMediaResource::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::ChannelMediaResource*, void (mozilla::ChannelMediaResource::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::ChannelMediaResource, void (mozilla::ChannelMediaResource::*)()>(mozilla::ChannelMediaResource*, void (mozilla::ChannelMediaResource::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult>::applyImpl<mozilla::MediaResourceCallback, void (mozilla::MediaResourceCallback::*)(nsresult), StoreCopyPassByConstLRef<nsresult>, 0ul>(mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(nsresult), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<double>::applyImpl<mozilla::MediaDecoderStateMachine, void (mozilla::MediaDecoderStateMachine::*)(double), StoreCopyPassByConstLRef<double>, 0ul>(mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(double), mozilla::Tuple<StoreCopyPassByConstLRef<double> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FileBlockCache, void (mozilla::FileBlockCache::*)()>(mozilla::FileBlockCache*, void (mozilla::FileBlockCache::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::Canonical<double>::Impl, void (mozilla::Canonical<double>::Impl::*)()>(mozilla::Canonical<double>::Impl*, void (mozilla::Canonical<double>::Impl::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<double>::applyImpl<mozilla::AbstractMirror<double>, void (mozilla::AbstractMirror<double>::*)(double const&), StoreCopyPassByConstLRef<double>, 0ul>(mozilla::AbstractMirror<double>*, void (mozilla::AbstractMirror<double>::*)(double const&), mozilla::Tuple<StoreCopyPassByConstLRef<double> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::AbstractMirror<bool>, void (mozilla::AbstractMirror<bool>::*)(bool const&), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::AbstractMirror<bool>*, void (mozilla::AbstractMirror<bool>::*)(bool const&), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaDecoder::PlayState>::applyImpl<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>, void (mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>::*)(mozilla::MediaDecoder::PlayState const&), StoreCopyPassByConstLRef<mozilla::MediaDecoder::PlayState>, 0ul>(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*, void (mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>::*)(mozilla::MediaDecoder::PlayState const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::MediaDecoder::PlayState> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsMainThreadPtrHandle<nsIPrincipal> >::applyImpl<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >, void (mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> >, 0ul>(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*, void (mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher, void (mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher::*)()>(mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::Canonical<bool>::Impl, void (mozilla::Canonical<bool>::Impl::*)()>(mozilla::Canonical<bool>::Impl*, void (mozilla::Canonical<bool>::Impl::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl, void (mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl::*)()>(mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*, void (mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl, void (mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl::*)()>(mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl*, void (mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<already_AddRefed<mozilla::layers::KnowsCompositor>&&>::applyImpl<mozilla::MediaFormatReader, void (mozilla::MediaFormatReader::*)(already_AddRefed<mozilla::layers::KnowsCompositor>), StoreCopyPassByRRef<already_AddRefed<mozilla::layers::KnowsCompositor> >, 0ul>(mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(already_AddRefed<mozilla::layers::KnowsCompositor>), mozilla::Tuple<StoreCopyPassByRRef<already_AddRefed<mozilla::layers::KnowsCompositor> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::applyImpl<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >, 0ul>(mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::applyImpl<mozilla::AbstractCanonical<mozilla::media::TimeIntervals>, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >, 0ul>(mozilla::AbstractCanonical<mozilla::media::TimeIntervals>*, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::applyImpl<mozilla::AbstractCanonical<mozilla::media::TimeUnit>, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >, 0ul>(mozilla::AbstractCanonical<mozilla::media::TimeUnit>*, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::applyImpl<mozilla::AbstractCanonical<bool>, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> >, 0ul>(mozilla::AbstractCanonical<bool>*, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaFormatReader, void (mozilla::MediaFormatReader::*)()>(mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::CDMProxy> >::applyImpl<mozilla::MediaFormatReader, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::MediaFormatReader::*)(mozilla::CDMProxy*), StoreRefPtrPassByPtr<mozilla::CDMProxy>, 0ul>(mozilla::MediaFormatReader*, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::MediaFormatReader::*)(mozilla::CDMProxy*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::CDMProxy> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaPlaybackEvent::EventType&&>::applyImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), StoreCopyPassByRRef<mozilla::MediaPlaybackEvent::EventType>, 0ul>(mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::MediaPlaybackEvent::EventType> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)()>(mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaDecoderOwner::NextFrameStatus&&>::applyImpl<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(mozilla::MediaDecoderOwner::NextFrameStatus&&), StoreCopyPassByRRef<mozilla::MediaDecoderOwner::NextFrameStatus>, 0ul>(mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(mozilla::MediaDecoderOwner::NextFrameStatus&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::MediaDecoderOwner::NextFrameStatus> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)()>(mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::AudioData>&&>::applyImpl<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(RefPtr<mozilla::AudioData>&&), StoreCopyPassByRRef<RefPtr<mozilla::AudioData> >, 0ul>(mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(RefPtr<mozilla::AudioData>&&), mozilla::Tuple<StoreCopyPassByRRef<RefPtr<mozilla::AudioData> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)()>(mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::VideoData>&&>::applyImpl<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(RefPtr<mozilla::VideoData>&&), StoreCopyPassByRRef<RefPtr<mozilla::VideoData> >, 0ul>(mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(RefPtr<mozilla::VideoData>&&), mozilla::Tuple<StoreCopyPassByRRef<RefPtr<mozilla::VideoData> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)()>(mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl, void (mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl::*)()>(mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*, void (mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::Maybe<mozilla::media::TimeUnit> >::applyImpl<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::Maybe<mozilla::media::TimeUnit> const&), StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::media::TimeUnit> >, 0ul>(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::Maybe<mozilla::media::TimeUnit> const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::media::TimeUnit> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&>::applyImpl<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&), 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>, 0ul, 1ul, 2ul>(mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&), 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> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)()>(mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::applyImpl<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> >, 0ul>(mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>*, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::applyImpl<mozilla::AbstractCanonical<double>, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> >, 0ul>(mozilla::AbstractCanonical<double>*, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::applyImpl<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > >, 0ul>(mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >*, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)()>(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::AbstractMirror<mozilla::media::TimeUnit>, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)()>(mozilla::AbstractMirror<mozilla::media::TimeUnit>*, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::AbstractMirror<bool>, void (mozilla::AbstractMirror<bool>::*)()>(mozilla::AbstractMirror<bool>*, void (mozilla::AbstractMirror<bool>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::media::TimeUnit>::applyImpl<mozilla::AbstractMirror<mozilla::media::TimeUnit>, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(mozilla::media::TimeUnit const&), StoreCopyPassByConstLRef<mozilla::media::TimeUnit>, 0ul>(mozilla::AbstractMirror<mozilla::media::TimeUnit>*, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(mozilla::media::TimeUnit const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::media::TimeUnit> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher, void (mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher::*)()>(mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::MediaDecoder> >::applyImpl<mozilla::MediaDecoderStateMachine, void (mozilla::MediaDecoderStateMachine::*)(mozilla::MediaDecoder*), StoreRefPtrPassByPtr<mozilla::MediaDecoder>, 0ul>(mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(mozilla::MediaDecoder*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaDecoder> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaPlaybackEvent&&>::applyImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), StoreCopyPassByRRef<mozilla::MediaPlaybackEvent>, 0ul>(mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::MediaPlaybackEvent> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::Canonical<mozilla::media::TimeUnit>::Impl, void (mozilla::Canonical<mozilla::media::TimeUnit>::Impl::*)()>(mozilla::Canonical<mozilla::media::TimeUnit>::Impl*, void (mozilla::Canonical<mozilla::media::TimeUnit>::Impl::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::VideoDecodeMode>::applyImpl<mozilla::MediaDecoderStateMachine, void (mozilla::MediaDecoderStateMachine::*)(mozilla::VideoDecodeMode), StoreCopyPassByConstLRef<mozilla::VideoDecodeMode>, 0ul>(mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(mozilla::VideoDecodeMode), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::VideoDecodeMode> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::SeekTarget> >::applyImpl<mozilla::MediaDecoderStateMachine, RefPtr<mozilla::MozPromise<bool, bool, true> > (mozilla::MediaDecoderStateMachine::*)(mozilla::SeekTarget const&), StoreCopyPassByRRef<mozilla::SeekTarget>, 0ul>(mozilla::MediaDecoderStateMachine*, RefPtr<mozilla::MozPromise<bool, bool, true> > (mozilla::MediaDecoderStateMachine::*)(mozilla::SeekTarget const&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::SeekTarget> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaResult&&>::applyImpl<mozilla::detail::Listener<mozilla::MediaResult>, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(mozilla::MediaResult&&), StoreCopyPassByRRef<mozilla::MediaResult>, 0ul>(mozilla::detail::Listener<mozilla::MediaResult>*, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(mozilla::MediaResult&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::MediaResult> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<mozilla::MediaResult>, void (mozilla::detail::Listener<mozilla::MediaResult>::*)()>(mozilla::detail::Listener<mozilla::MediaResult>*, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&>::applyImpl<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&), StoreCopyPassByRRef<nsAutoPtr<mozilla::MediaInfo> >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility>, 0ul, 1ul>(mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&), mozilla::Tuple<StoreCopyPassByRRef<nsAutoPtr<mozilla::MediaInfo> >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)()>(mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaDecoderStateMachine, RefPtr<mozilla::MozPromise<bool, bool, false> > (mozilla::MediaDecoderStateMachine::*)()>(mozilla::MediaDecoderStateMachine*, RefPtr<mozilla::MozPromise<bool, bool, false> > (mozilla::MediaDecoderStateMachine::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaDecoderStateMachine, void (mozilla::MediaDecoderStateMachine::*)()>(mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::DecoderDoctorEvent&&>::applyImpl<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(mozilla::DecoderDoctorEvent&&), StoreCopyPassByRRef<mozilla::DecoderDoctorEvent>, 0ul>(mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(mozilla::DecoderDoctorEvent&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::DecoderDoctorEvent> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)()>(mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::MediaDecoderStateMachine, void (mozilla::MediaDecoderStateMachine::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::SourceListener> >::applyImpl<mozilla::GetUserMediaWindowListener, bool (mozilla::GetUserMediaWindowListener::*)(mozilla::SourceListener*), StoreRefPtrPassByPtr<mozilla::SourceListener>, 0ul>(mozilla::GetUserMediaWindowListener*, bool (mozilla::GetUserMediaWindowListener::*)(mozilla::SourceListener*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::SourceListener> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::SourceListener, void (mozilla::SourceListener::*)()>(mozilla::SourceListener*, void (mozilla::SourceListener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult>::applyImpl<mozilla::dom::MediaRecorder, void (mozilla::dom::MediaRecorder::*)(nsresult), StoreCopyPassByConstLRef<nsresult>, 0ul>(mozilla::dom::MediaRecorder*, void (mozilla::dom::MediaRecorder::*)(nsresult), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult>::applyImpl<mozilla::dom::MediaRecorder::Session, void (mozilla::dom::MediaRecorder::Session::*)(nsresult), StoreCopyPassByConstLRef<nsresult>, 0ul>(mozilla::dom::MediaRecorder::Session*, void (mozilla::dom::MediaRecorder::Session::*)(nsresult), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener> >::applyImpl<mozilla::MediaEncoder, void (mozilla::MediaEncoder::*)(mozilla::MediaEncoderListener*), StoreRefPtrPassByPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>, 0ul>(mozilla::MediaEncoder*, void (mozilla::MediaEncoder::*)(mozilla::MediaEncoderListener*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::MediaRecorder::Session::EncoderListener> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::media::TimeIntervals>::applyImpl<mozilla::AbstractMirror<mozilla::media::TimeIntervals>, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(mozilla::media::TimeIntervals const&), StoreCopyPassByConstLRef<mozilla::media::TimeIntervals>, 0ul>(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(mozilla::media::TimeIntervals const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::media::TimeIntervals> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::AbstractMirror<mozilla::media::TimeIntervals>, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)()>(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTArray<unsigned char>&&, nsTString<char16_t>&&>::applyImpl<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(nsTArray<unsigned char>&&, nsTString<char16_t>&&), StoreCopyPassByRRef<nsTArray<unsigned char> >, StoreCopyPassByRRef<nsTString<char16_t> >, 0ul, 1ul>(mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(nsTArray<unsigned char>&&, nsTString<char16_t>&&), mozilla::Tuple<StoreCopyPassByRRef<nsTArray<unsigned char> >, StoreCopyPassByRRef<nsTString<char16_t> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)()>(mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::TrackInfo::TrackType>::applyImpl<mozilla::MediaFormatReader, void (mozilla::MediaFormatReader::*)(mozilla::TrackInfo::TrackType), StoreCopyPassByConstLRef<mozilla::TrackInfo::TrackType>, 0ul>(mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(mozilla::TrackInfo::TrackType), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::TrackInfo::TrackType> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl, void (mozilla::Canonical<mozilla::media::TimeIntervals>::Impl::*)()>(mozilla::Canonical<mozilla::media::TimeIntervals>::Impl*, void (mozilla::Canonical<mozilla::media::TimeIntervals>::Impl::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::GetUserMediaWindowListener, void (mozilla::GetUserMediaWindowListener::*)()>(mozilla::GetUserMediaWindowListener*, void (mozilla::GetUserMediaWindowListener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >::applyImpl<mozilla::dom::MediaStreamTrack::PrincipalHandleListener, void (mozilla::dom::MediaStreamTrack::PrincipalHandleListener::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> >, 0ul>(mozilla::dom::MediaStreamTrack::PrincipalHandleListener*, void (mozilla::dom::MediaStreamTrack::PrincipalHandleListener::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaResource, void (mozilla::MediaResource::*)()>(mozilla::MediaResource*, void (mozilla::MediaResource::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaTimer, void (mozilla::MediaTimer::*)()>(mozilla::MediaTimer*, void (mozilla::MediaTimer::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaFormatReader, RefPtr<mozilla::MozPromise<mozilla::MetadataHolder, mozilla::MediaResult, true> > (mozilla::MediaFormatReader::*)()>(mozilla::MediaFormatReader*, RefPtr<mozilla::MozPromise<mozilla::MetadataHolder, mozilla::MediaResult, true> > (mozilla::MediaFormatReader::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaFormatReader, RefPtr<mozilla::MozPromise<RefPtr<mozilla::AudioData>, mozilla::MediaResult, true> > (mozilla::MediaFormatReader::*)()>(mozilla::MediaFormatReader*, RefPtr<mozilla::MozPromise<RefPtr<mozilla::AudioData>, mozilla::MediaResult, true> > (mozilla::MediaFormatReader::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::media::TimeUnit> >::applyImpl<mozilla::MediaFormatReader, RefPtr<mozilla::MozPromise<RefPtr<mozilla::VideoData>, mozilla::MediaResult, true> > (mozilla::MediaFormatReader::*)(mozilla::media::TimeUnit const&), StoreCopyPassByRRef<mozilla::media::TimeUnit>, 0ul>(mozilla::MediaFormatReader*, RefPtr<mozilla::MozPromise<RefPtr<mozilla::VideoData>, mozilla::MediaResult, true> > (mozilla::MediaFormatReader::*)(mozilla::media::TimeUnit const&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::media::TimeUnit> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::SeekTarget> >::applyImpl<mozilla::MediaFormatReader, RefPtr<mozilla::MozPromise<mozilla::media::TimeUnit, mozilla::SeekRejectValue, true> > (mozilla::MediaFormatReader::*)(mozilla::SeekTarget const&), StoreCopyPassByRRef<mozilla::SeekTarget>, 0ul>(mozilla::MediaFormatReader*, RefPtr<mozilla::MozPromise<mozilla::media::TimeUnit, mozilla::SeekRejectValue, true> > (mozilla::MediaFormatReader::*)(mozilla::SeekTarget const&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::SeekTarget> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::MediaData::Type> >::applyImpl<mozilla::MediaFormatReader, RefPtr<mozilla::MozPromise<mozilla::MediaData::Type, mozilla::WaitForDataRejectValue, true> > (mozilla::MediaFormatReader::*)(mozilla::MediaData::Type), StoreCopyPassByRRef<mozilla::MediaData::Type>, 0ul>(mozilla::MediaFormatReader*, RefPtr<mozilla::MozPromise<mozilla::MediaData::Type, mozilla::WaitForDataRejectValue, true> > (mozilla::MediaFormatReader::*)(mozilla::MediaData::Type), mozilla::Tuple<StoreCopyPassByRRef<mozilla::MediaData::Type> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> >::applyImpl<mozilla::MediaFormatReader, nsresult (mozilla::MediaFormatReader::*)(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>), StoreCopyPassByConstLRef<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> >, 0ul>(mozilla::MediaFormatReader*, nsresult (mozilla::MediaFormatReader::*)(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::MediaFormatReader, void (mozilla::MediaFormatReader::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher, void (mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher::*)()>(mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaEncoder, void (mozilla::MediaEncoder::*)()>(mozilla::MediaEncoder*, void (mozilla::MediaEncoder::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaEncoder::EncoderListener, void (mozilla::MediaEncoder::EncoderListener::*)()>(mozilla::MediaEncoder::EncoderListener*, void (mozilla::MediaEncoder::EncoderListener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<long>::applyImpl<mozilla::AudioTrackEncoder, void (mozilla::AudioTrackEncoder::*)(long), StoreCopyPassByConstLRef<long>, 0ul>(mozilla::AudioTrackEncoder*, void (mozilla::AudioTrackEncoder::*)(long), mozilla::Tuple<StoreCopyPassByConstLRef<long> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::AudioTrackEncoder, void (mozilla::AudioTrackEncoder::*)()>(mozilla::AudioTrackEncoder*, void (mozilla::AudioTrackEncoder::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::AudioSegment> >::applyImpl<mozilla::AudioTrackEncoder, void (mozilla::AudioTrackEncoder::*)(mozilla::AudioSegment&&), StoreCopyPassByRRef<mozilla::AudioSegment>, 0ul>(mozilla::AudioTrackEncoder*, void (mozilla::AudioTrackEncoder::*)(mozilla::AudioSegment&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::AudioSegment> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::MediaEncoder::EncoderListener> >::applyImpl<mozilla::AudioTrackEncoder, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), StoreRefPtrPassByPtr<mozilla::MediaEncoder::EncoderListener>, 0ul>(mozilla::AudioTrackEncoder*, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaEncoder::EncoderListener> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<long>::applyImpl<mozilla::VideoTrackEncoder, void (mozilla::VideoTrackEncoder::*)(long), StoreCopyPassByConstLRef<long>, 0ul>(mozilla::VideoTrackEncoder*, void (mozilla::VideoTrackEncoder::*)(long), mozilla::Tuple<StoreCopyPassByConstLRef<long> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::VideoTrackEncoder, void (mozilla::VideoTrackEncoder::*)()>(mozilla::VideoTrackEncoder*, void (mozilla::VideoTrackEncoder::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::VideoSegment> >::applyImpl<mozilla::VideoTrackEncoder, void (mozilla::VideoTrackEncoder::*)(mozilla::VideoSegment&&), StoreCopyPassByRRef<mozilla::VideoSegment>, 0ul>(mozilla::VideoTrackEncoder*, void (mozilla::VideoTrackEncoder::*)(mozilla::VideoSegment&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::VideoSegment> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::MediaEncoder::EncoderListener> >::applyImpl<mozilla::VideoTrackEncoder, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), StoreRefPtrPassByPtr<mozilla::MediaEncoder::EncoderListener>, 0ul>(mozilla::VideoTrackEncoder*, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaEncoder::EncoderListener> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaEncoderListener, void (mozilla::MediaEncoderListener::*)()>(mozilla::MediaEncoderListener*, void (mozilla::MediaEncoderListener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int>::applyImpl<mozilla::VideoTrackEncoder, void (mozilla::VideoTrackEncoder::*)(int), StoreCopyPassByConstLRef<int>, 0ul>(mozilla::VideoTrackEncoder*, void (mozilla::VideoTrackEncoder::*)(int), mozilla::Tuple<StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int, NS_ConvertUTF8toUTF16>::applyImpl<mozilla::ChromiumCDMProxy, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsTSubstring<char16_t> const&), StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, 0ul, 1ul>(mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsTSubstring<char16_t> const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int, bool>::applyImpl<mozilla::ChromiumCDMProxy, void (mozilla::ChromiumCDMProxy::*)(unsigned int, bool), StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<bool>, 0ul, 1ul>(mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, bool), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int>::applyImpl<mozilla::ChromiumCDMProxy, void (mozilla::ChromiumCDMProxy::*)(unsigned int), StoreCopyPassByConstLRef<unsigned int>, 0ul>(mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int, nsresult, nsTString<char> >::applyImpl<mozilla::ChromiumCDMProxy, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> >, 0ul, 1ul, 2ul>(mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<NS_ConvertUTF8toUTF16, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> >::applyImpl<mozilla::ChromiumCDMProxy, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> const&), StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyMessageType>, StoreCopyPassByConstLRef<nsTArray<unsigned char> >, 0ul, 1ul, 2ul>(mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyMessageType>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int, mozilla::dom::MediaKeyStatus>::applyImpl<mozilla::ChromiumCDMProxy, void (mozilla::ChromiumCDMProxy::*)(unsigned int, mozilla::dom::MediaKeyStatus), StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyStatus>, 0ul, 1ul>(mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, mozilla::dom::MediaKeyStatus), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyStatus> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<NS_ConvertUTF8toUTF16>::applyImpl<mozilla::ChromiumCDMProxy, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&), StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, 0ul>(mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&), mozilla::Tuple<StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<NS_ConvertUTF8toUTF16, long>::applyImpl<mozilla::ChromiumCDMProxy, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, long), StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, StoreCopyPassByConstLRef<long>, 0ul, 1ul>(mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, long), mozilla::Tuple<StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, StoreCopyPassByConstLRef<long> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::ChromiumCDMProxy, void (mozilla::ChromiumCDMProxy::*)()>(mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const, unsigned int const>::applyImpl<mozilla::gmp::ChromiumCDMChild, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const&, unsigned int const&), StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, 0ul, 1ul, 2ul>(mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const&, unsigned int const&), mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const, nsTString<char> const>::applyImpl<mozilla::gmp::ChromiumCDMChild, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const&, nsTString<char> const&), StoreCopyPassByConstLRef<bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const>, 0ul, 1ul, 2ul>(mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const&, nsTString<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const>::applyImpl<mozilla::gmp::ChromiumCDMChild, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const&), StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&)>, StoreCopyPassByConstLRef<unsigned int const>, 0ul, 1ul>(mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const&), mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&)>, StoreCopyPassByConstLRef<unsigned int const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const, unsigned int const, unsigned int const, nsTString<char> const>::applyImpl<mozilla::gmp::ChromiumCDMChild, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), 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>, 0ul, 1ul, 2ul, 3ul, 4ul>(mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), 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> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const, unsigned int const, nsTArray<unsigned char> const>::applyImpl<mozilla::gmp::ChromiumCDMChild, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), 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>, 0ul, 1ul, 2ul, 3ul>(mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), 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> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const, nsTArray<mozilla::gmp::CDMKeyInformation> const>::applyImpl<mozilla::gmp::ChromiumCDMChild, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const>, 0ul, 1ul, 2ul>(mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), 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> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const, double const>::applyImpl<mozilla::gmp::ChromiumCDMChild, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const&, double const&), StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<double const>, 0ul, 1ul, 2ul>(mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const&, double const&), mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<double const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const>::applyImpl<mozilla::gmp::ChromiumCDMChild, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const&), StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, 0ul, 1ul>(mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&)>, StoreCopyPassByConstLRef<nsTString<char> const> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> >::applyImpl<mozilla::gmp::ChromiumCDMParent, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> const&), StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> >, 0ul, 1ul, 2ul, 3ul, 4ul>(mozilla::gmp::ChromiumCDMParent*, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int, unsigned int, nsTString<char16_t> >::applyImpl<mozilla::gmp::ChromiumCDMParent, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, nsTString<char16_t>), StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, 0ul, 1ul, 2ul>(mozilla::gmp::ChromiumCDMParent*, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, nsTString<char16_t>), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int, nsTArray<unsigned char> >::applyImpl<mozilla::gmp::ChromiumCDMParent, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTArray<unsigned char> const&), StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> >, 0ul, 1ul>(mozilla::gmp::ChromiumCDMParent*, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTArray<unsigned char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char>, unsigned int, nsTArray<unsigned char> >::applyImpl<mozilla::gmp::ChromiumCDMParent, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int, nsTArray<unsigned char> const&), StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> >, 0ul, 1ul, 2ul>(mozilla::gmp::ChromiumCDMParent*, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int, nsTArray<unsigned char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char>, unsigned int>::applyImpl<mozilla::gmp::ChromiumCDMParent, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int), StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int>, 0ul, 1ul>(mozilla::gmp::ChromiumCDMParent*, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int, nsTString<char> >::applyImpl<mozilla::gmp::ChromiumCDMParent, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTString<char> const&), StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char> >, 0ul, 1ul>(mozilla::gmp::ChromiumCDMParent*, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTString<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gmp::GMPContentParent, void (mozilla::gmp::GMPContentParent::*)()>(mozilla::gmp::GMPContentParent*, void (mozilla::gmp::GMPContentParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::GMPCrashHelper, void (mozilla::GMPCrashHelper::*)()>(mozilla::GMPCrashHelper*, void (mozilla::GMPCrashHelper::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::gmp::GMPParent> >::applyImpl<mozilla::gmp::GeckoMediaPluginServiceParent, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(RefPtr<mozilla::gmp::GMPParent> const&), StoreRefPtrPassByPtr<mozilla::gmp::GMPParent>, 0ul>(mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(RefPtr<mozilla::gmp::GMPParent> const&), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::gmp::GMPParent> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gmp::GMPParent, void (mozilla::gmp::GMPParent::*)()>(mozilla::gmp::GMPParent*, void (mozilla::gmp::GMPParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<NS_ConvertUTF8toUTF16> >::applyImpl<mozilla::gmp::GMPParent, RefPtr<mozilla::MozPromise<bool, nsresult, false> > (mozilla::gmp::GMPParent::*)(nsTSubstring<char16_t> const&), StoreCopyPassByRRef<NS_ConvertUTF8toUTF16>, 0ul>(mozilla::gmp::GMPParent*, RefPtr<mozilla::MozPromise<bool, nsresult, false> > (mozilla::gmp::GMPParent::*)(nsTSubstring<char16_t> const&), mozilla::Tuple<StoreCopyPassByRRef<NS_ConvertUTF8toUTF16> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gmp::GMPSyncRunnable, void (mozilla::gmp::GMPSyncRunnable::*)()>(mozilla::gmp::GMPSyncRunnable*, void (mozilla::gmp::GMPSyncRunnable::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gmp::GMPRunnable, void (mozilla::gmp::GMPRunnable::*)()>(mozilla::gmp::GMPRunnable*, void (mozilla::gmp::GMPRunnable::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gmp::GMPProcessParent, void (mozilla::gmp::GMPProcessParent::*)()>(mozilla::gmp::GMPProcessParent*, void (mozilla::gmp::GMPProcessParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gmp::GeckoMediaPluginServiceParent, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)()>(mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<long>::applyImpl<mozilla::gmp::GeckoMediaPluginServiceParent, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(long), StoreCopyPassByConstLRef<long>, 0ul>(mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(long), mozilla::Tuple<StoreCopyPassByConstLRef<long> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gmp::GeckoMediaPluginServiceParent, RefPtr<mozilla::MozPromise<nsTArray<bool>, nsresult, false> > (mozilla::gmp::GeckoMediaPluginServiceParent::*)()>(mozilla::gmp::GeckoMediaPluginServiceParent*, RefPtr<mozilla::MozPromise<nsTArray<bool>, nsresult, false> > (mozilla::gmp::GeckoMediaPluginServiceParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<nsTString<char16_t> > >::applyImpl<mozilla::gmp::GeckoMediaPluginServiceParent, RefPtr<mozilla::MozPromise<bool, nsresult, false> > (mozilla::gmp::GeckoMediaPluginServiceParent::*)(nsTString<char16_t>), StoreCopyPassByRRef<nsTString<char16_t> >, 0ul>(mozilla::gmp::GeckoMediaPluginServiceParent*, RefPtr<mozilla::MozPromise<bool, nsresult, false> > (mozilla::gmp::GeckoMediaPluginServiceParent::*)(nsTString<char16_t>), mozilla::Tuple<StoreCopyPassByRRef<nsTString<char16_t> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char>, mozilla::OriginAttributesPattern>::applyImpl<mozilla::gmp::GeckoMediaPluginServiceParent, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(nsTSubstring<char> const&, mozilla::OriginAttributesPattern const&), StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<mozilla::OriginAttributesPattern>, 0ul, 1ul>(mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(nsTSubstring<char> const&, mozilla::OriginAttributesPattern const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<mozilla::OriginAttributesPattern> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::Monitor*, bool*>::applyImpl<mozilla::gmp::GMPServiceParent, void (mozilla::gmp::GMPServiceParent::*)(mozilla::Monitor*, bool*), StorePtrPassByPtr<mozilla::Monitor>, StorePtrPassByPtr<bool>, 0ul, 1ul>(mozilla::gmp::GMPServiceParent*, void (mozilla::gmp::GMPServiceParent::*)(mozilla::Monitor*, bool*), mozilla::Tuple<StorePtrPassByPtr<mozilla::Monitor>, StorePtrPassByPtr<bool> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gmp::GMPVideoDecoderChild, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoDecoderChild::*)()>(mozilla::gmp::GMPVideoDecoderChild*, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoDecoderChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::gmp::GMPVideoEncoderChild, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoEncoderChild::*)()>(mozilla::gmp::GMPVideoEncoderChild*, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoEncoderChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&>::applyImpl<mozilla::dom::VideoDecoderManagerParent, void (mozilla::dom::VideoDecoderManagerParent::*)(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> >, 0ul>(mozilla::dom::VideoDecoderManagerParent*, void (mozilla::dom::VideoDecoderManagerParent::*)(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<long&&>::applyImpl<mozilla::detail::Listener<long>, void (mozilla::detail::Listener<long>::*)(long&&), StoreCopyPassByRRef<long>, 0ul>(mozilla::detail::Listener<long>*, void (mozilla::detail::Listener<long>::*)(long&&), mozilla::Tuple<StoreCopyPassByRRef<long> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<long>, void (mozilla::detail::Listener<long>::*)()>(mozilla::detail::Listener<long>*, void (mozilla::detail::Listener<long>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::DecodedStreamGraphListener, void (mozilla::DecodedStreamGraphListener::*)()>(mozilla::DecodedStreamGraphListener*, void (mozilla::DecodedStreamGraphListener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaStream, void (mozilla::MediaStream::*)()>(mozilla::MediaStream*, void (mozilla::MediaStream::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::TrackBuffersManager>&&>::applyImpl<mozilla::MediaSourceDemuxer, void (mozilla::MediaSourceDemuxer::*)(RefPtr<mozilla::TrackBuffersManager>&&), StoreCopyPassByRRef<RefPtr<mozilla::TrackBuffersManager> >, 0ul>(mozilla::MediaSourceDemuxer*, void (mozilla::MediaSourceDemuxer::*)(RefPtr<mozilla::TrackBuffersManager>&&), mozilla::Tuple<StoreCopyPassByRRef<RefPtr<mozilla::TrackBuffersManager> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::media::TimeUnit> >::applyImpl<mozilla::MediaSourceTrackDemuxer, RefPtr<mozilla::MozPromise<mozilla::media::TimeUnit, mozilla::MediaResult, true> > (mozilla::MediaSourceTrackDemuxer::*)(mozilla::media::TimeUnit const&), StoreCopyPassByRRef<mozilla::media::TimeUnit>, 0ul>(mozilla::MediaSourceTrackDemuxer*, RefPtr<mozilla::MozPromise<mozilla::media::TimeUnit, mozilla::MediaResult, true> > (mozilla::MediaSourceTrackDemuxer::*)(mozilla::media::TimeUnit const&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::media::TimeUnit> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<int> >::applyImpl<mozilla::MediaSourceTrackDemuxer, RefPtr<mozilla::MozPromise<RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult, true> > (mozilla::MediaSourceTrackDemuxer::*)(int), StoreCopyPassByRRef<int>, 0ul>(mozilla::MediaSourceTrackDemuxer*, RefPtr<mozilla::MozPromise<RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult, true> > (mozilla::MediaSourceTrackDemuxer::*)(int), mozilla::Tuple<StoreCopyPassByRRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::media::TimeUnit> >::applyImpl<mozilla::MediaSourceTrackDemuxer, RefPtr<mozilla::MozPromise<unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder, true> > (mozilla::MediaSourceTrackDemuxer::*)(mozilla::media::TimeUnit const&), StoreCopyPassByRRef<mozilla::media::TimeUnit>, 0ul>(mozilla::MediaSourceTrackDemuxer*, RefPtr<mozilla::MozPromise<unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder, true> > (mozilla::MediaSourceTrackDemuxer::*)(mozilla::media::TimeUnit const&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::media::TimeUnit> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<already_AddRefed<mozilla::MediaByteBuffer> >, StoreCopyPassByRRef<mozilla::SourceBufferAttributes> >::applyImpl<mozilla::TrackBuffersManager, RefPtr<mozilla::MozPromise<mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult, true> > (mozilla::TrackBuffersManager::*)(already_AddRefed<mozilla::MediaByteBuffer>, mozilla::SourceBufferAttributes const&), StoreCopyPassByRRef<already_AddRefed<mozilla::MediaByteBuffer> >, StoreCopyPassByRRef<mozilla::SourceBufferAttributes>, 0ul, 1ul>(mozilla::TrackBuffersManager*, RefPtr<mozilla::MozPromise<mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult, true> > (mozilla::TrackBuffersManager::*)(already_AddRefed<mozilla::MediaByteBuffer>, mozilla::SourceBufferAttributes const&), mozilla::Tuple<StoreCopyPassByRRef<already_AddRefed<mozilla::MediaByteBuffer> >, StoreCopyPassByRRef<mozilla::SourceBufferAttributes> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::SourceBufferTask> >::applyImpl<mozilla::TrackBuffersManager, void (mozilla::TrackBuffersManager::*)(mozilla::SourceBufferTask*), StoreRefPtrPassByPtr<mozilla::SourceBufferTask>, 0ul>(mozilla::TrackBuffersManager*, void (mozilla::TrackBuffersManager::*)(mozilla::SourceBufferTask*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::SourceBufferTask> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::TrackBuffersManager, void (mozilla::TrackBuffersManager::*)()>(mozilla::TrackBuffersManager*, void (mozilla::TrackBuffersManager::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::media::Interval<mozilla::media::TimeUnit> > >::applyImpl<mozilla::TrackBuffersManager, RefPtr<mozilla::MozPromise<bool, nsresult, true> > (mozilla::TrackBuffersManager::*)(mozilla::media::Interval<mozilla::media::TimeUnit>), StoreCopyPassByRRef<mozilla::media::Interval<mozilla::media::TimeUnit> >, 0ul>(mozilla::TrackBuffersManager*, RefPtr<mozilla::MozPromise<bool, nsresult, true> > (mozilla::TrackBuffersManager::*)(mozilla::media::Interval<mozilla::media::TimeUnit>), mozilla::Tuple<StoreCopyPassByRRef<mozilla::media::Interval<mozilla::media::TimeUnit> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<long>::applyImpl<mozilla::MediaSourceDecoder, void (mozilla::MediaSourceDecoder::*)(long), StoreCopyPassByConstLRef<long>, 0ul>(mozilla::MediaSourceDecoder*, void (mozilla::MediaSourceDecoder::*)(long), mozilla::Tuple<StoreCopyPassByConstLRef<long> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::applyImpl<mozilla::AOMDecoder, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::AOMDecoder::*)(mozilla::MediaRawData*), StoreRefPtrPassByPtr<mozilla::MediaRawData>, 0ul>(mozilla::AOMDecoder*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::AOMDecoder::*)(mozilla::MediaRawData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::applyImpl<mozilla::OpusDataDecoder, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::OpusDataDecoder::*)(mozilla::MediaRawData*), StoreRefPtrPassByPtr<mozilla::MediaRawData>, 0ul>(mozilla::OpusDataDecoder*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::OpusDataDecoder::*)(mozilla::MediaRawData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::applyImpl<mozilla::TheoraDecoder, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::TheoraDecoder::*)(mozilla::MediaRawData*), StoreRefPtrPassByPtr<mozilla::MediaRawData>, 0ul>(mozilla::TheoraDecoder*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::TheoraDecoder::*)(mozilla::MediaRawData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::applyImpl<mozilla::VPXDecoder, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::VPXDecoder::*)(mozilla::MediaRawData*), StoreRefPtrPassByPtr<mozilla::MediaRawData>, 0ul>(mozilla::VPXDecoder*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::VPXDecoder::*)(mozilla::MediaRawData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::applyImpl<mozilla::VorbisDataDecoder, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::VorbisDataDecoder::*)(mozilla::MediaRawData*), StoreRefPtrPassByPtr<mozilla::MediaRawData>, 0ul>(mozilla::VorbisDataDecoder*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::VorbisDataDecoder::*)(mozilla::MediaRawData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::applyImpl<mozilla::WaveDataDecoder, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::WaveDataDecoder::*)(mozilla::MediaRawData*), StoreRefPtrPassByPtr<mozilla::MediaRawData>, 0ul>(mozilla::WaveDataDecoder*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::WaveDataDecoder::*)(mozilla::MediaRawData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::TrackInfo::TrackType&&>::applyImpl<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(mozilla::TrackInfo::TrackType&&), StoreCopyPassByRRef<mozilla::TrackInfo::TrackType>, 0ul>(mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(mozilla::TrackInfo::TrackType&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::TrackInfo::TrackType> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)()>(mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher, void (mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher::*)()>(mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::OmxDataDecoder, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::OmxDataDecoder::*)()>(mozilla::OmxDataDecoder*, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::OmxDataDecoder::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::OmxDataDecoder, RefPtr<mozilla::MozPromise<bool, bool, false> > (mozilla::OmxDataDecoder::*)()>(mozilla::OmxDataDecoder*, RefPtr<mozilla::MozPromise<bool, bool, false> > (mozilla::OmxDataDecoder::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::applyImpl<mozilla::FFmpegDataDecoder<46465650>, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<46465650>::*)(mozilla::MediaRawData*), StoreRefPtrPassByPtr<mozilla::MediaRawData>, 0ul>(mozilla::FFmpegDataDecoder<46465650>*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<46465650>::*)(mozilla::MediaRawData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FFmpegDataDecoder<46465650>, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<46465650>::*)()>(mozilla::FFmpegDataDecoder<46465650>*, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<46465650>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FFmpegDataDecoder<46465650>, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<46465650>::*)()>(mozilla::FFmpegDataDecoder<46465650>*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<46465650>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::applyImpl<mozilla::FFmpegDataDecoder<53>, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<53>::*)(mozilla::MediaRawData*), StoreRefPtrPassByPtr<mozilla::MediaRawData>, 0ul>(mozilla::FFmpegDataDecoder<53>*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<53>::*)(mozilla::MediaRawData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FFmpegDataDecoder<53>, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<53>::*)()>(mozilla::FFmpegDataDecoder<53>*, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<53>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FFmpegDataDecoder<53>, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<53>::*)()>(mozilla::FFmpegDataDecoder<53>*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<53>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::applyImpl<mozilla::FFmpegDataDecoder<54>, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<54>::*)(mozilla::MediaRawData*), StoreRefPtrPassByPtr<mozilla::MediaRawData>, 0ul>(mozilla::FFmpegDataDecoder<54>*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<54>::*)(mozilla::MediaRawData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FFmpegDataDecoder<54>, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<54>::*)()>(mozilla::FFmpegDataDecoder<54>*, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<54>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FFmpegDataDecoder<54>, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<54>::*)()>(mozilla::FFmpegDataDecoder<54>*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<54>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::applyImpl<mozilla::FFmpegDataDecoder<55>, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<55>::*)(mozilla::MediaRawData*), StoreRefPtrPassByPtr<mozilla::MediaRawData>, 0ul>(mozilla::FFmpegDataDecoder<55>*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<55>::*)(mozilla::MediaRawData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FFmpegDataDecoder<55>, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<55>::*)()>(mozilla::FFmpegDataDecoder<55>*, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<55>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FFmpegDataDecoder<55>, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<55>::*)()>(mozilla::FFmpegDataDecoder<55>*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<55>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::applyImpl<mozilla::FFmpegDataDecoder<57>, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<57>::*)(mozilla::MediaRawData*), StoreRefPtrPassByPtr<mozilla::MediaRawData>, 0ul>(mozilla::FFmpegDataDecoder<57>*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<57>::*)(mozilla::MediaRawData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FFmpegDataDecoder<57>, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<57>::*)()>(mozilla::FFmpegDataDecoder<57>*, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<57>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FFmpegDataDecoder<57>, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<57>::*)()>(mozilla::FFmpegDataDecoder<57>*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<57>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::MediaRawData*>::applyImpl<mozilla::FFmpegDataDecoder<58>, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<58>::*)(mozilla::MediaRawData*), StoreRefPtrPassByPtr<mozilla::MediaRawData>, 0ul>(mozilla::FFmpegDataDecoder<58>*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<58>::*)(mozilla::MediaRawData*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FFmpegDataDecoder<58>, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<58>::*)()>(mozilla::FFmpegDataDecoder<58>*, RefPtr<mozilla::MozPromise<bool, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<58>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::FFmpegDataDecoder<58>, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<58>::*)()>(mozilla::FFmpegDataDecoder<58>*, RefPtr<mozilla::MozPromise<nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult, true> > (mozilla::FFmpegDataDecoder<58>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine, nsTString<char> >::applyImpl<mozilla::camera::CamerasChild, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&), StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, 0ul, 1ul>(mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine>::applyImpl<mozilla::camera::CamerasChild, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&), StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, 0ul>(mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine, nsTString<char>, unsigned int>::applyImpl<mozilla::camera::CamerasChild, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, int const&), StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int>, 0ul, 1ul, 2ul>(mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, int const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine, unsigned int>::applyImpl<mozilla::camera::CamerasChild, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<unsigned int>, 0ul, 1ul>(mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine, nsTString<char>, mozilla::ipc::PrincipalInfo const&>::applyImpl<mozilla::camera::CamerasChild, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, mozilla::ipc::PrincipalInfo const&), StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo>, 0ul, 1ul, 2ul>(mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, mozilla::ipc::PrincipalInfo const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine, int>::applyImpl<mozilla::camera::CamerasChild, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<int>, 0ul, 1ul>(mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::camera::CaptureEngine, int, mozilla::camera::VideoCaptureCapability>::applyImpl<mozilla::camera::CamerasChild, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&, mozilla::camera::VideoCaptureCapability const&), StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability>, 0ul, 1ul, 2ul>(mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&, mozilla::camera::VideoCaptureCapability const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::camera::CamerasChild, bool (mozilla::camera::PCamerasChild::*)()>(mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int>::applyImpl<mozilla::MediaSystemResourceManager, void (mozilla::MediaSystemResourceManager::*)(unsigned int), StoreCopyPassByConstLRef<unsigned int>, 0ul>(mozilla::MediaSystemResourceManager*, void (mozilla::MediaSystemResourceManager::*)(unsigned int), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int, bool>::applyImpl<mozilla::MediaSystemResourceManager, void (mozilla::MediaSystemResourceManager::*)(unsigned int, bool), StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<bool>, 0ul, 1ul>(mozilla::MediaSystemResourceManager*, void (mozilla::MediaSystemResourceManager::*)(unsigned int, bool), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::AudioDestinationNode, void (mozilla::dom::AudioDestinationNode::*)()>(mozilla::dom::AudioDestinationNode*, void (mozilla::dom::AudioDestinationNode::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::MediaDecodeTask, void (mozilla::MediaDecodeTask::*)()>(mozilla::MediaDecodeTask*, void (mozilla::MediaDecodeTask::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<WebCore::ReverbConvolver, void (WebCore::ReverbConvolver::*)()>(WebCore::ReverbConvolver*, void (WebCore::ReverbConvolver::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::nsFakeSynthServices, void (mozilla::dom::nsFakeSynthServices::*)()>(mozilla::dom::nsFakeSynthServices*, void (mozilla::dom::nsFakeSynthServices::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int, SPDNotificationType>::applyImpl<mozilla::dom::SpeechDispatcherService, void (mozilla::dom::SpeechDispatcherService::*)(unsigned int, unsigned int), StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<SPDNotificationType>, 0ul, 1ul>(mozilla::dom::SpeechDispatcherService*, void (mozilla::dom::SpeechDispatcherService::*)(unsigned int, unsigned int), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<SPDNotificationType> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::SpeechDispatcherService, void (mozilla::dom::SpeechDispatcherService::*)()>(mozilla::dom::SpeechDispatcherService*, void (mozilla::dom::SpeechDispatcherService::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<SPDNotificationType>::applyImpl<mozilla::dom::SpeechDispatcherCallback, bool (mozilla::dom::SpeechDispatcherCallback::*)(SPDNotificationType), StoreCopyPassByConstLRef<SPDNotificationType>, 0ul>(mozilla::dom::SpeechDispatcherCallback*, bool (mozilla::dom::SpeechDispatcherCallback::*)(SPDNotificationType), mozilla::Tuple<StoreCopyPassByConstLRef<SPDNotificationType> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::NotificationPermissionRequest, nsresult (mozilla::dom::NotificationPermissionRequest::*)()>(mozilla::dom::NotificationPermissionRequest*, nsresult (mozilla::dom::NotificationPermissionRequest::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::quota::(anonymous namespace)::Quota, void (mozilla::dom::quota::(anonymous namespace)::Quota::*)()>(mozilla::dom::quota::(anonymous namespace)::Quota*, void (mozilla::dom::quota::(anonymous namespace)::Quota::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::quota::QuotaManager, void (mozilla::dom::quota::QuotaManager::*)()>(mozilla::dom::quota::QuotaManager*, void (mozilla::dom::quota::QuotaManager::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::LocalStorageCacheBridge, void (mozilla::dom::LocalStorageCacheBridge::*)()>(mozilla::dom::LocalStorageCacheBridge*, void (mozilla::dom::LocalStorageCacheBridge::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::StorageDBThread, void (mozilla::dom::StorageDBThread::*)()>(mozilla::dom::StorageDBThread*, void (mozilla::dom::StorageDBThread::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::StorageDBParent::CacheParentBridge, void (mozilla::dom::StorageDBParent::CacheParentBridge::*)()>(mozilla::dom::StorageDBParent::CacheParentBridge*, void (mozilla::dom::StorageDBParent::CacheParentBridge::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::StorageDBParent::UsageParentBridge, void (mozilla::dom::StorageDBParent::UsageParentBridge::*)()>(mozilla::dom::StorageDBParent::UsageParentBridge*, void (mozilla::dom::StorageDBParent::UsageParentBridge::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::StorageDBParent::ObserverSink, void (mozilla::dom::StorageDBParent::ObserverSink::*)()>(mozilla::dom::StorageDBParent::ObserverSink*, void (mozilla::dom::StorageDBParent::ObserverSink::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char>, nsTString<char16_t>, nsTString<char> >::applyImpl<mozilla::dom::StorageDBParent::ObserverSink, void (mozilla::dom::StorageDBParent::ObserverSink::*)(nsTString<char> const&, nsTString<char16_t> const&, nsTString<char> const&), StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char> >, 0ul, 1ul, 2ul>(mozilla::dom::StorageDBParent::ObserverSink*, void (mozilla::dom::StorageDBParent::ObserverSink::*)(nsTString<char> const&, nsTString<char16_t> const&, nsTString<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::SVGFEImageElement, void (mozilla::dom::SVGFEImageElement::*)()>(mozilla::dom::SVGFEImageElement*, void (mozilla::dom::SVGFEImageElement::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::SVGImageElement, void (mozilla::dom::SVGImageElement::*)()>(mozilla::dom::SVGImageElement*, void (mozilla::dom::SVGImageElement::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::SVGStyleElement, void (mozilla::dom::SVGStyleElement::*)()>(mozilla::dom::SVGStyleElement*, void (mozilla::dom::SVGStyleElement::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<gfxSurfaceType, mozilla::plugins::NPRemoteWindow, bool>::applyImpl<mozilla::plugins::PluginInstanceChild, void (mozilla::plugins::PluginInstanceChild::*)(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool), StoreCopyPassByConstLRef<gfxSurfaceType>, StoreCopyPassByConstLRef<mozilla::plugins::NPRemoteWindow>, StoreCopyPassByConstLRef<bool>, 0ul, 1ul, 2ul>(mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool), mozilla::Tuple<StoreCopyPassByConstLRef<gfxSurfaceType>, StoreCopyPassByConstLRef<mozilla::plugins::NPRemoteWindow>, StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::plugins::PluginInstanceChild, void (mozilla::plugins::PluginInstanceChild::*)()>(mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&>::applyImpl<mozilla::plugins::FunctionBrokerChild, void (mozilla::plugins::FunctionBrokerChild::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> >, 0ul>(mozilla::plugins::FunctionBrokerChild*, void (mozilla::plugins::FunctionBrokerChild::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::plugins::FunctionBrokerChild, void (mozilla::plugins::FunctionBrokerChild::*)()>(mozilla::plugins::FunctionBrokerChild*, void (mozilla::plugins::FunctionBrokerChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&>::applyImpl<mozilla::plugins::FunctionBrokerParent, void (mozilla::plugins::FunctionBrokerParent::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent> >, 0ul>(mozilla::plugins::FunctionBrokerParent*, void (mozilla::plugins::FunctionBrokerParent::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::plugins::FunctionBrokerParent, void (mozilla::plugins::FunctionBrokerParent::*)()>(mozilla::plugins::FunctionBrokerParent*, void (mozilla::plugins::FunctionBrokerParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::plugins::PluginProcessParent, void (mozilla::plugins::PluginProcessParent::*)()>(mozilla::plugins::PluginProcessParent*, void (mozilla::plugins::PluginProcessParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: ActorsParent.cpp:decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::indexedDB::(anonymous namespace)::Database, void (mozilla::dom::indexedDB::(anonymous namespace)::Database::*)()>(mozilla::dom::indexedDB::(anonymous namespace)::Database*, void (mozilla::dom::indexedDB::(anonymous namespace)::Database::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: ActorsParent.cpp:decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp, void (mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp::*)()>(mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp*, void (mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper, void (mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper::*)()>(mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper*, void (mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::IDBDatabase, void (mozilla::dom::IDBDatabase::*)()>(mozilla::dom::IDBDatabase*, void (mozilla::dom::IDBDatabase::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ContentChild, void (mozilla::dom::ContentChild::*)()>(mozilla::dom::ContentChild*, void (mozilla::dom::ContentChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: ProcessHangMonitor.cpp:decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char>, nsTString<char16_t> >::applyImpl<(anonymous namespace)::HangMonitorChild, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char> const&, nsTString<char16_t> const&), StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, 0ul, 1ul, 2ul>((anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char> const&, nsTString<char16_t> const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: ProcessHangMonitor.cpp:decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int>::applyImpl<(anonymous namespace)::HangMonitorChild, void ((anonymous namespace)::HangMonitorChild::*)(unsigned int), StoreCopyPassByConstLRef<unsigned int>, 0ul>((anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(unsigned int), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: ProcessHangMonitor.cpp:decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<(anonymous namespace)::HangMonitorChild, void ((anonymous namespace)::HangMonitorChild::*)()>((anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: ProcessHangMonitor.cpp:decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<(anonymous namespace)::HangMonitorParent, void ((anonymous namespace)::HangMonitorParent::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>((anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: ProcessHangMonitor.cpp:decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<(anonymous namespace)::HangMonitorParent, void ((anonymous namespace)::HangMonitorParent::*)()>((anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: ProcessHangMonitor.cpp:decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&>::applyImpl<(anonymous namespace)::HangMonitorParent, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent> >, 0ul>((anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: ProcessHangMonitor.cpp:decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch>::applyImpl<(anonymous namespace)::HangMonitorParent, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch const&), StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>, 0ul, 1ul, 2ul>((anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: ProcessHangMonitor.cpp:decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&>::applyImpl<(anonymous namespace)::HangMonitorChild, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> >, 0ul>((anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ContentBridgeChild, void (mozilla::dom::ContentBridgeChild::*)()>(mozilla::dom::ContentBridgeChild*, void (mozilla::dom::ContentBridgeChild::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ContentBridgeParent, void (mozilla::dom::ContentBridgeParent::*)()>(mozilla::dom::ContentBridgeParent*, void (mozilla::dom::ContentBridgeParent::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::dom::ContentParent::ShutDownMethod>::applyImpl<mozilla::dom::ContentParent, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), StoreCopyPassByConstLRef<mozilla::dom::ContentParent::ShutDownMethod>, 0ul>(mozilla::dom::ContentParent*, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::ContentParent::ShutDownMethod> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::PreallocatedProcessManagerImpl, void (mozilla::PreallocatedProcessManagerImpl::*)()>(mozilla::PreallocatedProcessManagerImpl*, void (mozilla::PreallocatedProcessManagerImpl::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ipc::WritableSharedMap, void (mozilla::dom::ipc::WritableSharedMap::*)()>(mozilla::dom::ipc::WritableSharedMap*, void (mozilla::dom::ipc::WritableSharedMap::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable, void (mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable::*)()>(mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable*, void (mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&>::applyImpl<mozilla::dom::U2FHIDTokenManager, void (mozilla::dom::U2FHIDTokenManager::*)(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&), StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> > >, 0ul>(mozilla::dom::U2FHIDTokenManager*, void (mozilla::dom::U2FHIDTokenManager::*)(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> > > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char16_t> >::applyImpl<mozilla::dom::U2FTokenManager, void (mozilla::dom::U2FTokenManager::*)(nsTString<char16_t>), StoreCopyPassByConstLRef<nsTString<char16_t> >, 0ul>(mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(nsTString<char16_t>), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char16_t> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long, bool>::applyImpl<mozilla::dom::U2FTokenManager, void (mozilla::dom::U2FTokenManager::*)(unsigned long, bool), StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<bool>, 0ul, 1ul>(mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(unsigned long, bool), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long>::applyImpl<mozilla::dom::U2FTokenManager, void (mozilla::dom::U2FTokenManager::*)(unsigned long), StoreCopyPassByConstLRef<unsigned long>, 0ul>(mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(unsigned long), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsBindingManager, void (nsBindingManager::*)()>(nsBindingManager*, void (nsBindingManager::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::XMLStylesheetProcessingInstruction, void (mozilla::dom::XMLStylesheetProcessingInstruction::*)()>(mozilla::dom::XMLStylesheetProcessingInstruction*, void (mozilla::dom::XMLStylesheetProcessingInstruction::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsXMLContentSink, void (nsXMLContentSink::*)()>(nsXMLContentSink*, void (nsXMLContentSink::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsXMLPrettyPrinter, void (nsXMLPrettyPrinter::*)()>(nsXMLPrettyPrinter*, void (nsXMLPrettyPrinter::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::dom::Element*, int, nsAtom*>::applyImpl<mozilla::dom::XULDocument, void (mozilla::dom::XULDocument::*)(mozilla::dom::Element*, int, nsAtom*), StoreRefPtrPassByPtr<mozilla::dom::Element>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsAtom>, 0ul, 1ul, 2ul>(mozilla::dom::XULDocument*, void (mozilla::dom::XULDocument::*)(mozilla::dom::Element*, int, nsAtom*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::Element>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsAtom> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::XULDocument, void (mozilla::dom::XULDocument::*)()>(mozilla::dom::XULDocument*, void (mozilla::dom::XULDocument::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsresult>::applyImpl<nsIWebBrowserPersistDocumentReceiver, nsresult (nsIWebBrowserPersistDocumentReceiver::*)(nsresult), StoreCopyPassByConstLRef<nsresult>, 0ul>(nsIWebBrowserPersistDocumentReceiver*, nsresult (nsIWebBrowserPersistDocumentReceiver::*)(nsresult), mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsCOMPtr<nsIWebBrowserPersistDocument>, nsresult>::applyImpl<nsIWebBrowserPersistResourceVisitor, nsresult (nsIWebBrowserPersistResourceVisitor::*)(nsIWebBrowserPersistDocument*, nsresult), StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>, StoreCopyPassByConstLRef<nsresult>, 0ul, 1ul>(nsIWebBrowserPersistResourceVisitor*, nsresult (nsIWebBrowserPersistResourceVisitor::*)(nsIWebBrowserPersistDocument*, nsresult), mozilla::Tuple<StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>, StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsCOMPtr<nsIWebBrowserPersistDocument>, nsCOMPtr<nsIOutputStream>, nsTString<char>, nsresult>::applyImpl<nsIWebBrowserPersistWriteCompletion, nsresult (nsIWebBrowserPersistWriteCompletion::*)(nsIWebBrowserPersistDocument*, nsIOutputStream*, nsTSubstring<char> const&, nsresult), StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>, StoreRefPtrPassByPtr<nsIOutputStream>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsresult>, 0ul, 1ul, 2ul, 3ul>(nsIWebBrowserPersistWriteCompletion*, nsresult (nsIWebBrowserPersistWriteCompletion::*)(nsIWebBrowserPersistDocument*, nsIOutputStream*, nsTSubstring<char> const&, nsresult), mozilla::Tuple<StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>, StoreRefPtrPassByPtr<nsIOutputStream>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsresult> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsWebBrowserPersist, void (nsWebBrowserPersist::*)()>(nsWebBrowserPersist*, void (nsWebBrowserPersist::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > > >::applyImpl<nsWebBrowserPersist, nsresult (nsWebBrowserPersist::*)(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&), StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > >, 0ul>(nsWebBrowserPersist*, nsresult (nsWebBrowserPersist::*)(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>::applyImpl<mozilla::dom::XMLHttpRequestMainThread, void (mozilla::dom::XMLHttpRequestMainThread::*)(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType), StoreCopyPassByConstLRef<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>, 0ul>(mozilla::dom::XMLHttpRequestMainThread*, void (mozilla::dom::XMLHttpRequestMainThread::*)(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::WorkletThread, nsresult (nsThread::*)()>(mozilla::dom::WorkletThread*, nsresult (nsThread::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsIScriptElement, nsresult (nsIScriptElement::*)()>(nsIScriptElement*, nsresult (nsIScriptElement::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ScriptLoader, void (mozilla::dom::ScriptLoader::*)()>(mozilla::dom::ScriptLoader*, void (mozilla::dom::ScriptLoader::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::(anonymous namespace)::WaitUntilHandler, void (mozilla::dom::(anonymous namespace)::WaitUntilHandler::*)()>(mozilla::dom::(anonymous namespace)::WaitUntilHandler*, void (mozilla::dom::(anonymous namespace)::WaitUntilHandler::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback, void (mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback*, void (mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned short>::applyImpl<mozilla::dom::(anonymous namespace)::PushErrorReporter, void (mozilla::dom::(anonymous namespace)::PushErrorReporter::*)(unsigned short), StoreCopyPassByConstLRef<unsigned short>, 0ul>(mozilla::dom::(anonymous namespace)::PushErrorReporter*, void (mozilla::dom::(anonymous namespace)::PushErrorReporter::*)(unsigned short), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned short> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned int>::applyImpl<mozilla::dom::ServiceWorkerRegistrar, void (mozilla::dom::ServiceWorkerRegistrar::*)(unsigned int), StoreCopyPassByConstLRef<unsigned int>, 0ul>(mozilla::dom::ServiceWorkerRegistrar*, void (mozilla::dom::ServiceWorkerRegistrar::*)(unsigned int), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::dom::ServiceWorkerRegistrationDescriptor>::applyImpl<mozilla::dom::WorkerListener, void (mozilla::dom::WorkerListener::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), StoreCopyPassByConstLRef<mozilla::dom::ServiceWorkerRegistrationDescriptor>, 0ul>(mozilla::dom::WorkerListener*, void (mozilla::dom::WorkerListener::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::ServiceWorkerRegistrationDescriptor> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ServiceWorkerJob, void (mozilla::dom::ServiceWorkerJob::*)()>(mozilla::dom::ServiceWorkerJob*, void (mozilla::dom::ServiceWorkerJob::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ServiceWorkerProxy, void (mozilla::dom::ServiceWorkerProxy::*)()>(mozilla::dom::ServiceWorkerProxy*, void (mozilla::dom::ServiceWorkerProxy::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ServiceWorkerRegistrar, void (mozilla::dom::ServiceWorkerRegistrar::*)()>(mozilla::dom::ServiceWorkerRegistrar*, void (mozilla::dom::ServiceWorkerRegistrar::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ServiceWorkerRegistration, void (mozilla::dom::ServiceWorkerRegistration::*)()>(mozilla::dom::ServiceWorkerRegistration*, void (mozilla::dom::ServiceWorkerRegistration::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ServiceWorkerRegistrationMainThread, void (mozilla::dom::ServiceWorkerRegistrationMainThread::*)()>(mozilla::dom::ServiceWorkerRegistrationMainThread*, void (mozilla::dom::ServiceWorkerRegistrationMainThread::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::WorkerListener, void (mozilla::dom::WorkerListener::*)()>(mozilla::dom::WorkerListener*, void (mozilla::dom::WorkerListener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ServiceWorkerRegistrationInfo, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)()>(mozilla::dom::ServiceWorkerRegistrationInfo*, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::dom::ServiceWorkerRegistrationInfo, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::dom::ServiceWorkerRegistrationInfo*, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::ServiceWorkerRegistrationProxy, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)()>(mozilla::dom::ServiceWorkerRegistrationProxy*, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::dom::ServiceWorkerRegistrationDescriptor>::applyImpl<mozilla::dom::ServiceWorkerRegistrationProxy, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), StoreCopyPassByConstLRef<mozilla::dom::ServiceWorkerRegistrationDescriptor>, 0ul>(mozilla::dom::ServiceWorkerRegistrationProxy*, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::ServiceWorkerRegistrationDescriptor> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::(anonymous namespace)::Connection, void (mozilla::dom::(anonymous namespace)::Connection::*)()>(mozilla::dom::(anonymous namespace)::Connection*, void (mozilla::dom::(anonymous namespace)::Connection::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::(anonymous namespace)::OpenOp, void (mozilla::dom::(anonymous namespace)::OpenOp::*)()>(mozilla::dom::(anonymous namespace)::OpenOp*, void (mozilla::dom::(anonymous namespace)::OpenOp::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::dom::SDBRequest> >::applyImpl<nsISDBCallback, nsresult (nsISDBCallback::*)(nsISDBRequest*), StoreRefPtrPassByPtr<mozilla::dom::SDBRequest>, 0ul>(nsISDBCallback*, nsresult (nsISDBCallback::*)(nsISDBRequest*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::SDBRequest> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::dom::PresentationAvailability, void (mozilla::dom::PresentationAvailability::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::dom::PresentationAvailability*, void (mozilla::dom::PresentationAvailability::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::PresentationConnection, nsresult (mozilla::dom::PresentationConnection::*)()>(mozilla::dom::PresentationConnection*, nsresult (mozilla::dom::PresentationConnection::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::PresentationDeviceManager, nsresult (mozilla::dom::PresentationDeviceManager::*)()>(mozilla::dom::PresentationDeviceManager*, nsresult (mozilla::dom::PresentationDeviceManager::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char16_t>, RefPtr<mozilla::dom::Promise> >::applyImpl<mozilla::dom::PresentationRequest, void (mozilla::dom::PresentationRequest::*)(nsTSubstring<char16_t> const&, mozilla::dom::Promise*), StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<mozilla::dom::Promise>, 0ul, 1ul>(mozilla::dom::PresentationRequest*, void (mozilla::dom::PresentationRequest::*)(nsTSubstring<char16_t> const&, mozilla::dom::Promise*), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<mozilla::dom::Promise> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char> >::applyImpl<mozilla::dom::PresentationControllingInfo, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), StoreCopyPassByConstLRef<nsTString<char> >, 0ul>(mozilla::dom::PresentationControllingInfo*, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsIPresentationSessionTransport*>::applyImpl<nsIPresentationSessionTransportBuilderListener, nsresult (nsIPresentationSessionTransportBuilderListener::*)(nsIPresentationSessionTransport*), StoreRefPtrPassByPtr<nsIPresentationSessionTransport>, 0ul>(nsIPresentationSessionTransportBuilderListener*, nsresult (nsIPresentationSessionTransportBuilderListener::*)(nsIPresentationSessionTransport*), mozilla::Tuple<StoreRefPtrPassByPtr<nsIPresentationSessionTransport> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::dom::PresentationTCPSessionTransport::ReadyState>::applyImpl<mozilla::dom::PresentationTCPSessionTransport, void (mozilla::dom::PresentationTCPSessionTransport::*)(mozilla::dom::PresentationTCPSessionTransport::ReadyState), StoreCopyPassByConstLRef<mozilla::dom::PresentationTCPSessionTransport::ReadyState>, 0ul>(mozilla::dom::PresentationTCPSessionTransport*, void (mozilla::dom::PresentationTCPSessionTransport::*)(mozilla::dom::PresentationTCPSessionTransport::ReadyState), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::PresentationTCPSessionTransport::ReadyState> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::presentation::MulticastDNSDeviceProvider, nsresult (mozilla::dom::presentation::MulticastDNSDeviceProvider::*)()>(mozilla::dom::presentation::MulticastDNSDeviceProvider*, nsresult (mozilla::dom::presentation::MulticastDNSDeviceProvider::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<float>::applyImpl<mozilla::layers::IAPZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(float), StoreCopyPassByConstLRef<float>, 0ul>(mozilla::layers::IAPZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(float), mozilla::Tuple<StoreCopyPassByConstLRef<float> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::KeyboardMap>::applyImpl<mozilla::layers::IAPZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap>, 0ul>(mozilla::layers::IAPZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long, bool>::applyImpl<mozilla::layers::IAPZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<bool>, 0ul, 1ul>(mozilla::layers::IAPZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long, StoreCopyPassByLRef<nsTArray<unsigned int> > >::applyImpl<mozilla::layers::IAPZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByLRef<nsTArray<unsigned int> >, 0ul, 1ul>(mozilla::layers::IAPZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByLRef<nsTArray<unsigned int> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::applyImpl<mozilla::layers::IAPZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> >, 0ul, 1ul>(mozilla::layers::IAPZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics>::applyImpl<mozilla::layers::IAPZCTreeManager, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics>, 0ul, 1ul>(mozilla::layers::IAPZCTreeManager*, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool>::applyImpl<mozilla::CompositorVsyncDispatcher, void (mozilla::CompositorVsyncDispatcher::*)(bool), StoreCopyPassByConstLRef<bool>, 0ul>(mozilla::CompositorVsyncDispatcher*, void (mozilla::CompositorVsyncDispatcher::*)(bool), mozilla::Tuple<StoreCopyPassByConstLRef<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::RefreshTimerVsyncDispatcher, void (mozilla::RefreshTimerVsyncDispatcher::*)()>(mozilla::RefreshTimerVsyncDispatcher*, void (mozilla::RefreshTimerVsyncDispatcher::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsWindow, void (nsWindow::*)()>(nsWindow*, void (nsWindow::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsDeviceContextSpecGTK, void (nsDeviceContextSpecGTK::*)()>(nsDeviceContextSpecGTK*, void (nsDeviceContextSpecGTK::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::HTMLEditRules, void (mozilla::HTMLEditRules::*)()>(mozilla::HTMLEditRules*, void (mozilla::HTMLEditRules::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::HTMLEditor, void (mozilla::HTMLEditor::*)()>(mozilla::HTMLEditor*, void (mozilla::HTMLEditor::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::dom::FontFaceSet, void (mozilla::dom::FontFaceSet::*)()>(mozilla::dom::FontFaceSet*, void (mozilla::dom::FontFaceSet::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver, void (mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver::*)()>(mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver*, void (mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsRefreshDriver, void (nsRefreshDriver::*)()>(nsRefreshDriver*, void (nsRefreshDriver::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::PresShell, void (mozilla::PresShell::*)()>(mozilla::PresShell*, void (mozilla::PresShell::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<ZoomConstraintsClient, void (ZoomConstraintsClient::*)()>(ZoomConstraintsClient*, void (ZoomConstraintsClient::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsPresContext, void (nsPresContext::*)()>(nsPresContext*, void (nsPresContext::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsIDateTimeInputArea, nsresult (nsIDateTimeInputArea::*)()>(nsIDateTimeInputArea*, nsresult (nsIDateTimeInputArea::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::TimeStamp>::applyImpl<mozilla::layout::VsyncParent, void (mozilla::layout::VsyncParent::*)(mozilla::TimeStamp), StoreCopyPassByConstLRef<mozilla::TimeStamp>, 0ul>(mozilla::layout::VsyncParent*, void (mozilla::layout::VsyncParent::*)(mozilla::TimeStamp), mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::TimeStamp> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsDocShell, void (nsDocShell::*)()>(nsDocShell*, void (nsDocShell::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&>::applyImpl<mozilla::ChildProfilerController, void (mozilla::ChildProfilerController::*)(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProfilerChild> >, 0ul>(mozilla::ChildProfilerController*, void (mozilla::ChildProfilerController::*)(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProfilerChild> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char>*>::applyImpl<mozilla::ChildProfilerController, void (mozilla::ChildProfilerController::*)(nsTString<char>*), StorePtrPassByPtr<nsTString<char> >, 0ul>(mozilla::ChildProfilerController*, void (mozilla::ChildProfilerController::*)(nsTString<char>*), mozilla::Tuple<StorePtrPassByPtr<nsTString<char> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<char const*>::applyImpl<mozilla::DataStorage, void (mozilla::DataStorage::*)(char const*), StoreConstPtrPassByConstPtr<char>, 0ul>(mozilla::DataStorage*, void (mozilla::DataStorage::*)(char const*), mozilla::Tuple<StoreConstPtrPassByConstPtr<char> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::DataStorage, void (mozilla::DataStorage::*)()>(mozilla::DataStorage*, void (mozilla::DataStorage::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::psm::PSMContentStreamListener, void (mozilla::psm::PSMContentStreamListener::*)()>(mozilla::psm::PSMContentStreamListener*, void (mozilla::psm::PSMContentStreamListener::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&>::applyImpl<mozilla::extensions::StreamFilter, void (mozilla::extensions::StreamFilter::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> >, 0ul>(mozilla::extensions::StreamFilter*, void (mozilla::extensions::StreamFilter::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&>::applyImpl<mozilla::extensions::StreamFilterParent, void (mozilla::extensions::StreamFilterParent::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&), StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> >, 0ul>(mozilla::extensions::StreamFilterParent*, void (mozilla::extensions::StreamFilterParent::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::extensions::StreamFilterParent, void (mozilla::ipc::IToplevelProtocol::*)()>(mozilla::extensions::StreamFilterParent*, void (mozilla::ipc::IToplevelProtocol::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTArray<unsigned char>&&>::applyImpl<mozilla::extensions::StreamFilterParent, void (mozilla::extensions::StreamFilterParent::*)(nsTArray<unsigned char>&&), StoreCopyPassByRRef<nsTArray<unsigned char> >, 0ul>(mozilla::extensions::StreamFilterParent*, void (mozilla::extensions::StreamFilterParent::*)(nsTArray<unsigned char>&&), mozilla::Tuple<StoreCopyPassByRRef<nsTArray<unsigned char> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::places::(anonymous namespace)::VisitedQuery, nsresult (mozilla::places::(anonymous namespace)::VisitedQuery::*)()>(mozilla::places::(anonymous namespace)::VisitedQuery*, nsresult (mozilla::places::(anonymous namespace)::VisitedQuery::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::places::Database, nsresult (mozilla::places::Database::*)()>(mozilla::places::Database*, nsresult (mozilla::places::Database::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::places::AsyncFetchAndSetIconForPage, nsresult (mozilla::places::AsyncFetchAndSetIconForPage::*)()>(mozilla::places::AsyncFetchAndSetIconForPage*, nsresult (mozilla::places::AsyncFetchAndSetIconForPage::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::places::AsyncReplaceFaviconData, nsresult (mozilla::places::AsyncReplaceFaviconData::*)()>(mozilla::places::AsyncReplaceFaviconData*, nsresult (mozilla::places::AsyncReplaceFaviconData::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)(), (((Get<4ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char>, int, nsTString<char>, bool, long>::applyImpl<nsNavHistory, void (nsNavHistory::*)(nsTSubstring<char> const&, int, nsTSubstring<char> const&, bool, long), StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long>, 0ul, 1ul, 2ul, 3ul, 4ul>(nsNavHistory*, void (nsNavHistory::*)(nsTSubstring<char> const&, int, nsTSubstring<char> const&, bool, long), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsUrlClassifierDBServiceWorker, void (nsUrlClassifierDBServiceWorker::*)()>(nsUrlClassifierDBServiceWorker*, void (nsUrlClassifierDBServiceWorker::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsUrlClassifierDBServiceWorker, nsresult (nsUrlClassifierDBServiceWorker::*)()>(nsUrlClassifierDBServiceWorker*, nsresult (nsUrlClassifierDBServiceWorker::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<mozilla::dom::HTMLInputElement> >::applyImpl<nsFormFillController, void (nsFormFillController::*)(mozilla::dom::HTMLInputElement*), StoreRefPtrPassByPtr<mozilla::dom::HTMLInputElement>, 0ul>(nsFormFillController*, void (nsFormFillController::*)(mozilla::dom::HTMLInputElement*), mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::HTMLInputElement> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsNativeAppSupportUnix, void (nsNativeAppSupportUnix::*)()>(nsNativeAppSupportUnix*, void (nsNativeAppSupportUnix::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsUpdateProcessor, void (nsUpdateProcessor::*)()>(nsUpdateProcessor*, void (nsUpdateProcessor::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher, void (mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher::*)()>(mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher*, void (mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsBar, void (nsBar::*)()>(nsBar*, void (nsBar::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsBar const, void (nsBar::*)() const>(nsBar const*, void (nsBar::*)() const, mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<nsBar, nsresult (nsBar::*)()>(nsBar*, nsresult (nsBar::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<nsFoo> >::applyImpl<nsBar, void (nsBar::*)(nsFoo*), StoreRefPtrPassByPtr<nsFoo>, 0ul>(nsBar*, void (nsBar::*)(nsFoo*), mozilla::Tuple<StoreRefPtrPassByPtr<nsFoo> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<nsFoo> >::applyImpl<nsBar, nsresult (nsBar::*)(nsFoo*), StoreRefPtrPassByPtr<nsFoo>, 0ul>(nsBar*, nsresult (nsBar::*)(nsFoo*), mozilla::Tuple<StoreRefPtrPassByPtr<nsFoo> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsFoo*>::applyImpl<nsBar, void (nsBar::*)(nsFoo*), StoreRefPtrPassByPtr<nsFoo>, 0ul>(nsBar*, void (nsBar::*)(nsFoo*), mozilla::Tuple<StoreRefPtrPassByPtr<nsFoo> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<char*>::applyImpl<nsBar, nsresult (nsBar::*)(char*), StorePtrPassByPtr<char>, 0ul>(nsBar*, nsresult (nsBar::*)(char*), mozilla::Tuple<StorePtrPassByPtr<char> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<IdleObject, void (IdleObject::*)()>(IdleObject*, void (IdleObject::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<bool*>::applyImpl<nsFoo, nsresult (nsFoo::*)(bool*), StorePtrPassByPtr<bool>, 0ul>(nsFoo*, nsresult (nsFoo::*)(bool*), mozilla::Tuple<StorePtrPassByPtr<bool> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<char const*, unsigned int>::applyImpl<IdleObject, void (IdleObject::*)(char const*, unsigned int), StoreConstPtrPassByConstPtr<char>, StoreCopyPassByConstLRef<unsigned int>, 0ul, 1ul>(IdleObject*, void (IdleObject::*)(char const*, unsigned int), mozilla::Tuple<StoreConstPtrPassByConstPtr<char>, StoreCopyPassByConstLRef<unsigned int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<IdleObjectWithoutSetDeadline, void (IdleObjectWithoutSetDeadline::*)()>(IdleObjectWithoutSetDeadline*, void (IdleObjectWithoutSetDeadline::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<IdleObjectInheritedSetDeadline, void (IdleObjectInheritedSetDeadline::*)()>(IdleObjectInheritedSetDeadline*, void (IdleObjectInheritedSetDeadline::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)()>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(int), StoreCopyPassByConstLRef<int>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(int), mozilla::Tuple<StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObjectNonRefCountedBase::*)()>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObjectNonRefCountedBase::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int, int>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(int, int), StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, 0ul, 1ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(int, int), mozilla::Tuple<StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int, int, int>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int), StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, 0ul, 1ul, 2ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int), mozilla::Tuple<StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int, int, int, int>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int, int), StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, 0ul, 1ul, 2ul, 3ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int, int), mozilla::Tuple<StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int*>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(int*), StorePtrPassByPtr<int>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(int*), mozilla::Tuple<StorePtrPassByPtr<int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int const*>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), StoreConstPtrPassByConstPtr<int>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), mozilla::Tuple<StoreConstPtrPassByConstPtr<int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByPtr<int> >::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(int*), StoreCopyPassByPtr<int>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(int*), mozilla::Tuple<StoreCopyPassByPtr<int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByConstPtr<int> >::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), StoreCopyPassByConstPtr<int>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), mozilla::Tuple<StoreCopyPassByConstPtr<int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int&>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(int&), StoreRefPassByLRef<int>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(int&), mozilla::Tuple<StoreRefPassByLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int&&>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(int&&), StoreCopyPassByRRef<int>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(int&&), mozilla::Tuple<StoreCopyPassByRRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), mozilla::Tuple<StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), mozilla::Tuple<StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&), StoreRefPassByLRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&), mozilla::Tuple<StoreRefPassByLRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByValue<TestThreadUtils::Spy> >::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), StoreCopyPassByValue<TestThreadUtils::Spy>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), mozilla::Tuple<StoreCopyPassByValue<TestThreadUtils::Spy> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), StoreCopyPassByConstLRef<TestThreadUtils::Spy>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), mozilla::Tuple<StoreCopyPassByConstLRef<TestThreadUtils::Spy> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreCopyPassByRRef<TestThreadUtils::Spy> >::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), StoreCopyPassByRRef<TestThreadUtils::Spy>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), mozilla::Tuple<StoreCopyPassByRRef<TestThreadUtils::Spy> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<TestThreadUtils::Spy&>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&), StoreRefPassByLRef<TestThreadUtils::Spy>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&), mozilla::Tuple<StoreRefPassByLRef<TestThreadUtils::Spy> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports> >::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), mozilla::Tuple<StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<TestThreadUtils::Spy*>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), StorePtrPassByPtr<TestThreadUtils::Spy>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), mozilla::Tuple<StorePtrPassByPtr<TestThreadUtils::Spy> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<TestThreadUtils::Spy const*>::applyImpl<TestThreadUtils::ThreadUtilsObject, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const*), StoreConstPtrPassByConstPtr<TestThreadUtils::Spy>, 0ul>(TestThreadUtils::ThreadUtilsObject*, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const*), mozilla::Tuple<StoreConstPtrPassByConstPtr<TestThreadUtils::Spy> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<CDMStorageTest, void (CDMStorageTest::*)()>(CDMStorageTest*, void (CDMStorageTest::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char> >::applyImpl<CDMStorageTest, void (CDMStorageTest::*)(nsTString<char>), StoreCopyPassByConstLRef<nsTString<char> >, 0ul>(CDMStorageTest*, void (CDMStorageTest::*)(nsTString<char>), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&>::applyImpl<CDMStorageTest, void (CDMStorageTest::*)(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&), StoreCopyPassByRRef<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> > >, 0ul>(CDMStorageTest*, void (CDMStorageTest::*)(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> > > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<GMPTestMonitor, void (GMPTestMonitor::*)()>(GMPTestMonitor*, void (GMPTestMonitor::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<GMPTestMonitor&>::applyImpl<GMPTestRunner, void (GMPTestRunner::*)(GMPTestMonitor&), StoreRefPassByLRef<GMPTestMonitor>, 0ul>(GMPTestRunner*, void (GMPTestRunner::*)(GMPTestMonitor&), mozilla::Tuple<StoreRefPassByLRef<GMPTestMonitor> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**>::applyImpl<GMPRemoveTest, void (GMPRemoveTest::*)(nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**), StoreCopyPassByConstLRef<nsTString<char> >, StorePtrPassByPtr<GMPVideoDecoderProxy*>, StorePtrPassByPtr<GMPVideoHost*>, 0ul, 1ul, 2ul>(GMPRemoveTest*, void (GMPRemoveTest::*)(nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**), mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> >, StorePtrPassByPtr<GMPVideoDecoderProxy*>, StorePtrPassByPtr<GMPVideoHost*> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)(), (((Get<1ul>)({parm#3})).PassAsParameter)(), (((Get<2ul>)({parm#3})).PassAsParameter)(), (((Get<3ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int>::applyImpl<GMPVideoDecoderProxy, nsresult (GMPVideoDecoderProxy::*)(GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int), StoreConstRefPassByConstLRef<GMPVideoCodec>, StoreConstRefPassByConstLRef<nsTArray<unsigned char> >, StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>, StoreCopyPassByConstLRef<int>, 0ul, 1ul, 2ul, 3ul>(GMPVideoDecoderProxy*, nsresult (GMPVideoDecoderProxy::*)(GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int), mozilla::Tuple<StoreConstRefPassByConstLRef<GMPVideoCodec>, StoreConstRefPassByConstLRef<nsTArray<unsigned char> >, StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>, StoreCopyPassByConstLRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<GMPVideoDecoderProxy, void (GMPVideoDecoderProxy::*)()>(GMPVideoDecoderProxy*, void (GMPVideoDecoderProxy::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<GMPRemoveTest, void (GMPRemoveTest::*)()>(GMPRemoveTest*, void (GMPRemoveTest::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<int&&>::applyImpl<mozilla::detail::Listener<int>, void (mozilla::detail::Listener<int>::*)(int&&), StoreCopyPassByRRef<int>, 0ul>(mozilla::detail::Listener<int>*, void (mozilla::detail::Listener<int>::*)(int&&), mozilla::Tuple<StoreCopyPassByRRef<int> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<int>, void (mozilla::detail::Listener<int>::*)()>(mozilla::detail::Listener<int>*, void (mozilla::detail::Listener<int>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<SomeEvent&&>::applyImpl<mozilla::detail::Listener<SomeEvent>, void (mozilla::detail::Listener<SomeEvent>::*)(SomeEvent&&), StoreCopyPassByRRef<SomeEvent>, 0ul>(mozilla::detail::Listener<SomeEvent>*, void (mozilla::detail::Listener<SomeEvent>::*)(SomeEvent&&), mozilla::Tuple<StoreCopyPassByRRef<SomeEvent> >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<SomeEvent>, void (mozilla::detail::Listener<SomeEvent>::*)()>(mozilla::detail::Listener<SomeEvent>*, void (mozilla::detail::Listener<SomeEvent>::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&>::applyImpl<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&), StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >, 0ul>(mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&), mozilla::Tuple<StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)()>(mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})((((Get<0ul>)({parm#3})).PassAsParameter)())) mozilla::detail::RunnableMethodArguments<RefPtr<RefCounter>&&>::applyImpl<mozilla::detail::Listener<RefPtr<RefCounter> >, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(RefPtr<RefCounter>&&), StoreCopyPassByRRef<RefPtr<RefCounter> >, 0ul>(mozilla::detail::Listener<RefPtr<RefCounter> >*, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(RefPtr<RefCounter>&&), mozilla::Tuple<StoreCopyPassByRRef<RefPtr<RefCounter> > >&, std::__1::integer_sequence<unsigned long, 0ul>)
Unexecuted instantiation: decltype (((*{parm#1}).*{parm#2})()) mozilla::detail::RunnableMethodArguments<>::applyImpl<mozilla::detail::Listener<RefPtr<RefCounter> >, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)()>(mozilla::detail::Listener<RefPtr<RefCounter> >*, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(), mozilla::Tuple<>&, std::__1::integer_sequence<unsigned long>)
1180
  template<class C, typename M> auto apply(C* o, M m)
1181
      -> decltype(applyImpl(o, m, mArguments,
1182
                  std::index_sequence_for<Ts...>{}))
1183
13
  {
1184
13
    return applyImpl(o, m, mArguments,
1185
13
        std::index_sequence_for<Ts...>{});
1186
13
  }
_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI9FdWatcherMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Line
Count
Source
1183
3
  {
1184
3
    return applyImpl(o, m, mArguments,
1185
3
        std::index_sequence_for<Ts...>{});
1186
3
  }
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI23nsMemoryReporterManagerMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI17nsObserverServiceMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_18EventTargetWrapperEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_14LazyIdleThreadEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI33nsIBlockThreadedExecutionCallbackMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI13nsIThreadPoolMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI9nsProcessMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI9nsIThreadMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJObEE5applyINS0_8ListenerIJbEEEMS6_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJbEEEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_11PreferencesEMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI18nsStringBundleBaseMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net19BackgroundFileSaverEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net33BackgroundFileSaverStreamListenerEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3net14ConnectionDataEEEE5applyINS3_9DashboardEMS8_F8nsresultPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3net14LookupArgumentEEEE5applyINS3_12LookupHelperEMS8_F8nsresultPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3net10SocketDataEEEE5applyINS3_9DashboardEMS8_F8nsresultPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3net8HttpDataEEEE5applyINS3_9DashboardEMS8_F8nsresultPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3net16WebSocketRequestEEEE5applyINS3_9DashboardEMS8_F8nsresultPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3net7DnsDataEEEE5applyINS3_9DashboardEMS8_F8nsresultPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3net8RcwnDataEEEE5applyINS3_9DashboardEMS8_F8nsresultPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI19nsAsyncStreamCopierMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI23nsICaptivePortalServiceMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI17nsInputStreamPumpMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net8nsPACManEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net14nsServerSocketEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbb8nsresult9nsTStringIcEEE5applyINS_3net22nsProtocolProxyServiceEMS8_FS2_bbS2_RK12nsTSubstringIcEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3EEEEEEEPT_T0_
_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net24nsSocketTransportServiceEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Line
Count
Source
1183
7
  {
1184
7
    return applyImpl(o, m, mArguments,
1185
7
        std::index_sequence_for<Ts...>{});
1186
7
  }
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net11nsUDPSocketEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI14nsHostResolverMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net15DNSRequestChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI14nsCacheServiceMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net10CacheEntryEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJdEE5applyINS_3net10CacheEntryEMS5_FvdEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net14CacheFileChunkEMS5_FjvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net23CacheFileContextEvictorEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net15CacheFileHandleEMS5_FjvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net18CacheFileIOManagerEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsCOMPtrI18nsILoadContextInfoEb9nsTStringIDsEEE5applyINS_3net18CacheFileIOManagerEMSA_F8nsresultPS3_bRK12nsTSubstringIDsEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net10CacheIndexEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net13CacheObserverEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net19CacheStorageServiceEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyIN12nsAboutCache7ChannelEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI25nsFileUploadContentStreamMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net16FTPChannelParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net19nsHttpConnectionMgrEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ9nsTStringIcEEE5applyINS_3net13AltSvcMappingEMS7_FvRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net12Http2SessionEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJK8nsresultS3_KmKjK9nsTStringIcEEE5applyINS_3net26HttpBackgroundChannelChildEMSC_FNS_3ipc9IPCResultERS3_SF_RS4_RS5_RS8_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJK8nsresultKNS_3net20ResourceTimingStructEKNS_9TimeStampEKNS4_17nsHttpHeaderArrayEEE5applyINS4_26HttpBackgroundChannelChildEMSD_FNS_3ipc9IPCResultERS3_RS6_RS8_RSA_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJKlS2_EE5applyINS_3net26HttpBackgroundChannelChildEMS6_FNS_3ipc9IPCResultERS2_S9_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJK8nsresultEE5applyINS_3net26HttpBackgroundChannelChildEMS7_FNS_3ipc9IPCResultERS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net26HttpBackgroundChannelChildEMS5_FNS_3ipc9IPCResultEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net27HttpBackgroundChannelParentEMS5_FbvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJK8nsresultS3_KmKjK9nsTStringIcEEE5applyINS_3net27HttpBackgroundChannelParentEMSC_FbRS3_SD_RS4_RS5_RS8_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJK8nsresultKNS_3net20ResourceTimingStructEKNS4_17nsHttpHeaderArrayEEE5applyINS4_27HttpBackgroundChannelParentEMSB_FbRS3_RS6_RS8_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJKlS2_EE5applyINS_3net27HttpBackgroundChannelParentEMS6_FbRS2_S7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJK8nsresultEE5applyINS_3net27HttpBackgroundChannelParentEMS7_FbRS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_3net27HttpBackgroundChannelParentEMS5_FbbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJK9nsTStringIcES4_S4_EE5applyINS_3net27HttpBackgroundChannelParentEMS8_FbRK12nsTSubstringIcESC_SC_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsresultEE5applyINS_3net15HttpBaseChannelEMS6_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net16HttpChannelChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net16HttpChannelChildEMS5_FjvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net26HttpBackgroundChannelChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJK9nsTStringIcES4_S4_EE5applyINS_3net16HttpChannelChildEMNS7_15HttpBaseChannelEF8nsresultRK12nsTSubstringIcESE_SE_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net16HttpChannelChildEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsresultEE5applyINS_3net16HttpChannelChildEMS6_FS2_S2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3net16HttpChannelChildEEEE5applyINS3_26HttpBackgroundChannelChildEMS8_F8nsresultPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsresultEE5applyINS_3net16HttpChannelChildEMS6_FvRKS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsresultEE5applyINS_3net16HttpChannelChildEMNS5_15HttpBaseChannelEFvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net17HttpChannelParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsresultEE5applyI21nsIInterceptedChannelMS5_FS2_S2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net22InterceptedHttpChannelEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net13nsHttpChannelEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net13nsHttpChannelEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net22ExtensionJARFileOpenerEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net16WebSocketChannelEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net16WebSocketChannelEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsresultEE5applyINS_3net16WebSocketChannelEMS6_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3net21WebSocketChannelChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI16nsWyciwygChannelMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom13ContentParentEMS5_FjvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyIN12_GLOBAL__N_110ParentImplEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS2_17PBackgroundParentEEEEE5applyINS_3dom12ContentChildEMNS9_13PContentChildEFbRKS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEEEE5applyINS_3ipc21GeckoChildProcessHostEMSF_FbSB_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNS2_16integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3ipc14MessageChannelEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_3ipc14MessageChannelENS2_4SideEEE5applyIS3_MS3_FvS4_S5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3ipc11ProcessLinkEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPN3IPC7MessageEEE5applyINS_3ipc11ProcessLinkEMS8_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPN3IPC7MessageEEE5applyINS2_7ChannelEMS7_FbS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_15ScriptPreloaderEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_12URLPreloaderEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Line
Count
Source
1183
3
  {
1184
3
    return applyImpl(o, m, mArguments,
1185
3
        std::index_sequence_for<Ts...>{});
1186
3
  }
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrI15nsJARInputThunkEbEE5applyI12nsJARChannelMS7_F8nsresultPS3_bEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsresultbEE5applyI12nsJARChannelMS5_FS2_S2_bEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJmEE5applyI12nsJARChannelMS4_FvmEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_7storage10ConnectionEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_7storage10ConnectionEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_7storage22AsyncExecuteStatementsEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsCOMPtrI16mozIStorageErrorEEE5applyINS_7storage22AsyncExecuteStatementsEMS8_F8nsresultPS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_7storage9ResultSetEEEE5applyINS3_22AsyncExecuteStatementsEMS8_F8nsresultPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJK9nsTStringIcEEE5applyINS_7storage10ConnectionEMS8_F8nsresultRK12nsTSubstringIcEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ20StoreRefPtrPassByPtrINS_6layers5ImageEENS_3gfx12IntSizeTypedINS6_12UnknownUnitsEEEbEE5applyINS_19VideoFrameConverterEMSC_FvPS4_S9_bEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_22GenericReceiveListenerEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_19VideoSessionConduitEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI20nsOfflineCacheUpdateMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI13nsHtml5ParserMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers11PaintThreadEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers25AsyncImagePipelineManagerEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers8LayersIdENS2_19LayersObserverEpochEiEE5applyINS2_26CompositorBridgeParentBaseEMS7_FvS3_S4_bEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3gfx10PointTypedINS_16ParentLayerPixelEfEEEE5applyINS_6layers22AsyncPanZoomControllerEMS9_FvRKS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers22GeckoContentControllerEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers19ScrollableLayerGuidENS_5MaybeINS2_15ZoomConstraintsEEEEE5applyINS2_15APZCTreeManagerEMS9_FvRKS3_RKS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers10InputQueueEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers8LayersIdES3_NS2_11FocusTargetEEE5applyINS2_15APZCTreeManagerEMS7_FvS3_S3_RKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers8LayersIdE6RefPtrINS2_15APZCTreeManagerEEEE5applyIS5_MS5_FvS3_RKS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers22AsyncPanZoomControllerEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_6layers22AsyncPanZoomControllerEEE5applyIKNS2_22OverscrollHandoffChainEMS7_KFvPKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3gfx10PointTypedINS_16ParentLayerPixelEfEE6RefPtrIKNS_6layers22OverscrollHandoffChainEES6_IKNS7_22AsyncPanZoomControllerEEEE5applyISB_MSB_FvRKS5_RKSA_RKSD_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers22GeckoContentController7TapTypeENS_3gfx10PointTypedINS_17LayoutDevicePixelEfEEtNS2_19ScrollableLayerGuidEmEE5applyIS3_MS3_FvS4_RKS8_tRKS9_mEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_6layers22AsyncPanZoomControllerEMS5_FvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers12FrameMetricsENS_3gfx10PointTypedINS_16ParentLayerPixelEfEEEE5applyINS2_22AsyncPanZoomControllerEMSA_FvRKS3_RKS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers20GestureEventListenerEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_6layers20GestureEventListenerEMS5_FvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJmEE5applyINS_6layers10InputQueueEMS5_FvmEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsCOMPtrINS_3dom7ElementEEEE5applyINS_6layers20ActiveElementManagerEMS9_FvRKS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers23ChromeProcessControllerEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers19ScrollableLayerGuidENS_3gfx9RectTypedINS_8CSSPixelEfEEjEE5applyINS2_16IAPZCTreeManagerEMSA_FvRKS3_RKS7_jEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers22GeckoContentController7TapTypeENS_3gfx10PointTypedINS_17LayoutDevicePixelEfEEtNS2_19ScrollableLayerGuidEmEE5applyINS2_23ChromeProcessControllerEMSC_FvS4_RKS8_tRKS9_mEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_17PinchGestureInput16PinchGestureTypeENS_6layers19ScrollableLayerGuidENS_3gfx10CoordTypedINS_17LayoutDevicePixelEfEEtEE5applyINS4_23ChromeProcessControllerEMSC_FvS3_RKS5_S9_tEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers19ScrollableLayerGuidENS2_22GeckoContentController14APZStateChangeEiEE5applyINS2_23ChromeProcessControllerEMS8_FvRKS3_S5_iEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJm9nsTStringIDsEEE5applyINS_6layers23ChromeProcessControllerEMS7_FvRKmRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJmEE5applyINS_6layers23ChromeProcessControllerEMS5_FvRKmEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers19ScrollableLayerGuidEEE5applyINS2_23ChromeProcessControllerEMS6_FvRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers11KeyboardMapEEE5applyINS2_15APZCTreeManagerEMNS2_16IAPZCTreeManagerEFvRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers19ScrollableLayerGuidENS_3gfx9RectTypedINS_8CSSPixelEfEEjEE5applyINS2_15APZCTreeManagerEMNS2_16IAPZCTreeManagerEFvRKS3_RKS7_jEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJmbEE5applyINS_6layers15APZCTreeManagerEMNS4_16IAPZCTreeManagerEFvmbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJm19StoreCopyPassByRRefI8nsTArrayINS_6layers19ScrollableLayerGuidEEEEE5applyINS4_15APZCTreeManagerEMNS4_16IAPZCTreeManagerEFvmRKS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJfEE5applyINS_6layers15APZCTreeManagerEMNS4_16IAPZCTreeManagerEFvfEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJm19StoreCopyPassByRRefI8nsTArrayIjEEEE5applyINS_6layers15APZCTreeManagerEMNS8_16IAPZCTreeManagerEFvmRKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers19ScrollableLayerGuidENS2_16AsyncDragMetricsEEE5applyINS2_15APZCTreeManagerEMNS2_16IAPZCTreeManagerEFvRKS3_RKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers19ScrollableLayerGuidENS_3gfx10PointTypedINS_11ScreenPixelEfEEEE5applyINS2_15APZCTreeManagerEMNS2_16IAPZCTreeManagerEFbRKS3_RKS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers19ScrollableLayerGuidEEE5applyINS2_15APZCTreeManagerEMNS2_16IAPZCTreeManagerEFvRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_6layers15APZCTreeManagerEMNS4_16IAPZCTreeManagerEFvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers21CompositorBridgeChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJN4base14FileDescriptorES3_NS_6layers8LayersIdEjEE5applyINS4_26CompositorBridgeParentBaseEMS8_FbS3_S3_S5_jEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJmjEE5applyINS_6layers26CompositorBridgeParentBaseEMS5_FbmjEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers22CompositorBridgeParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJiiEE5applyINS_6layers22CompositorBridgeParentEMS5_FviiEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJm24StoreCopyPassByConstLRefI8nsTArrayINS_6layers19ScrollableLayerGuidEEEEE5applyINS4_15APZCTreeManagerEMSA_FvmRKS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_6layers24PCompositorManagerParentEEEEE5applyINS4_23CompositorManagerParentEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers23CompositorManagerParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_9TimeStampEEE5applyINS_6layers24CompositorVsyncSchedulerEMS6_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers34CrossProcessCompositorBridgeParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_6layers17PImageBridgeChildEEEEE5applyINS4_16ImageBridgeChildEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_6layers18PImageBridgeParentEEEEE5applyINS4_17ImageBridgeParentEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers17ImageBridgeParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers22GeckoContentController7TapTypeENS_3gfx10PointTypedINS_17LayoutDevicePixelEfEEtNS2_19ScrollableLayerGuidEmEE5applyINS2_23RemoteContentControllerEMSC_FvS4_S8_tS9_mEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_17PinchGestureInput16PinchGestureTypeENS_6layers19ScrollableLayerGuidENS_3gfx10CoordTypedINS_17LayoutDevicePixelEfEEtEE5applyINS4_23RemoteContentControllerEMSC_FvS3_RKS5_S9_tEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers19ScrollableLayerGuidENS2_22GeckoContentController14APZStateChangeEiEE5applyINS2_23RemoteContentControllerEMS8_FvRKS3_S5_iEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJffbEE5applyINS_6layers23RemoteContentControllerEMS5_FvffbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJm9nsTStringIDsEEE5applyINS_6layers23RemoteContentControllerEMS7_FvRKmRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJmEE5applyINS_6layers23RemoteContentControllerEMS5_FvRKmEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers19ScrollableLayerGuidEEE5applyINS2_23RemoteContentControllerEMS6_FvRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers21LayerTransactionChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers27UiCompositorControllerChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_6layers28PUiCompositorControllerChildEEEEE5applyINS4_27UiCompositorControllerChildEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_6layers29PUiCompositorControllerParentEEEEE5applyINS4_28UiCompositorControllerParentEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJiEE5applyINS_6layers28UiCompositorControllerParentEMS5_FviEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6layers28UiCompositorControllerParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyIN14GtkVsyncSource10GLXDisplayEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI15SoftwareDisplayMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_9TimeStampEEE5applyI15SoftwareDisplayMS5_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_3gfx17PVsyncBridgeChildEEEEE5applyINS4_16VsyncBridgeChildEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gfx16VsyncBridgeChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_3gfx18PVsyncBridgeParentEEEEE5applyINS4_17VsyncBridgeParentEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gfx17VsyncBridgeParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ24StoreCopyPassByConstLRefINS_6layers17SurfaceDescriptorEEmS2_INS_3gfx9RectTypedINS6_12UnknownUnitsEfEEESA_EE5applyINS6_13VRDisplayHostEMSD_FvRKS4_mRKS9_SH_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPN2vr9IVRSystemEjddm24StoreCopyPassByConstLRefINS_3gfx16VRManagerPromiseEEEE5applyINS6_4impl18VRControllerOpenVREMSC_FvS4_jddmRKS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ24StoreCopyPassByConstLRefINS_3gfx16VRManagerPromiseEEEE5applyINS3_9VRManagerEMS8_FvRKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_9TimeStampEEE5applyINS_3gfx8VRThreadEMS6_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gfx11VRGPUParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_3gfx12PVRGPUParentEEEEE5applyINS4_11VRGPUParentEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJjEE5applyINS_3gfx14VRManagerChildEMS5_FvjEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJj6RefPtrINS_3dom15VREventObserverEEEE5applyINS_3gfx14VRManagerChildEMS9_FvjPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_3gfx16PVRManagerParentEEEEE5applyINS4_15VRManagerParentEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gfx15VRManagerParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gfx9VRServiceEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_2wr12MemoryReportE6RefPtrINS_10MozPromiseIS3_bLb1EE7PrivateEEEE5applyINS2_12RenderThreadEMSB_FvS3_RKS8_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_2wr10WrWindowIdEEE5applyINS2_12RenderThreadEMS6_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_2wr10WrWindowIdEONS_9UniquePtrINS2_13RendererEventENS_13DefaultDeleteIS5_EEEEEE5applyINS2_12RenderThreadEMSC_FvS3_S8_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_2wr12RenderThreadEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_2wr17RenderTextureHostEEE5applyINS2_24RenderTextureHostWrapperEMS7_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJiij9nsTStringIDsES3_P11nsIObserverEE5applyI9nsIWidgetMS8_F8nsresultiijRK12nsTSubstringIDsESD_S5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEiiP11nsIObserverEE5applyI9nsIWidgetMSA_F8nsresultS5_jjS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEP11nsIObserverEE5applyI9nsIWidgetMSA_F8nsresultS5_S7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEjdddjjP11nsIObserverEE5applyI9nsIWidgetMSA_F8nsresultS5_jdddjjS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJjN9nsIWidget17TouchPointerStateENS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEdjP11nsIObserverEE5applyIS2_MS2_F8nsresultjS3_S7_djS9_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEbP11nsIObserverEE5applyI9nsIWidgetMSA_F8nsresultS5_bS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJP11nsIObserverEE5applyI9nsIWidgetMS6_F8nsresultS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI19nsGlobalWindowOuterMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI19nsGlobalWindowInnerMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI12nsXBLBindingMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom15EventSourceImplEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom17ScreenOrientationEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI13nsContentSinkMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI11nsIDocumentMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI10nsDocumentMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_13TimedMetadataEEE5applyINS0_8ListenerIJS2_EEEMS7_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJNS_13TimedMetadataEEEEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI7nsRangeMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI19nsAttributeTextNodeMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_12WatchManagerINS_3dom12TextTrackCueEE18PerCallbackWatcherEMS8_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom5cache7Context16ThreadsafeHandleEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsresultEE5applyINS_3dom5cache7Manager17CachePutAllActionEMS8_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom5cache10ReadStream5InnerEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom24CanvasRenderingContext2DEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_20EventListenerServiceEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom20HTMLCanvasPrintStateEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom17HTMLCanvasElementEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_3dom4BlobEPKcEE5applyINS2_12BlobCallbackEMS9_FvS4_S6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom16HTMLEmbedElementEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_3dom16HTMLImageElementEMS5_FvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom16HTMLInputElementEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom15HTMLLinkElementEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3gfx12IntSizeTypedINS2_12UnknownUnitsEEEEE5applyINS_3dom16HTMLMediaElement18StreamSizeListenerEMSA_FvS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_3dom16HTMLMediaElementEEE5applyINS3_13ChannelLoaderEMS7_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom16HTMLMediaElement14StreamListenerEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom16HTMLMediaElementEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ9nsTStringIcEEE5applyINS_3dom16HTMLMediaElementEMS7_FvRK12nsTSubstringIcEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom16MediaStreamTrackEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ20StoreRefPtrPassByPtrINS_3dom16MediaStreamTrackEEEE5applyINS_14DOMMediaStreamEMS8_FvPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_12WatchManagerINS_3dom16HTMLMediaElementEE18PerCallbackWatcherEMS8_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom17HTMLObjectElementEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom16HTMLStyleElementEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom16HTMLTrackElementEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJK9nsTStringIDsEEE5applyINS_3dom16HTMLTrackElementEMS8_FvRK12nsTSubstringIDsEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom13ImageDocumentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom16TextTrackManagerEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI15HTMLContentSinkMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI14nsHTMLDocumentMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI11nsJSChannelMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyIKNS_41BackgroundVideoDecodingPermissionObserverEMS4_KFvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_16MediaStreamGraphEiNS_12MediaSegment4TypeE6RefPtrINS_11MediaStreamEEiEE5applyINS_14DOMMediaStream19OwnedStreamListenerEMSC_FvS3_iS5_PS7_iEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3dom16MediaStreamTrackEEEE5applyINS_14DOMMediaStreamEMS8_FvPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_16MediaStreamGraphE6RefPtrINS_11MediaStreamEEiiEE5applyINS_14DOMMediaStream19OwnedStreamListenerEMSA_FvS3_PS5_iiEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_14DOMMediaStream22PlaybackStreamListenerEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_14DOMMediaStreamEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_21MediaResourceCallbackEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_21MediaResourceCallbackEMS4_FvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_20ChannelMediaResourceEMS4_FvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_20ChannelMediaResourceEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsresultEE5applyINS_21MediaResourceCallbackEMS5_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJdEE5applyINS_24MediaDecoderStateMachineEMS4_FvdEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_14FileBlockCacheEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_9CanonicalIdE4ImplEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJdEE5applyINS_14AbstractMirrorIdEEMS5_FvRKdEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_14AbstractMirrorIbEEMS5_FvRKbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_12MediaDecoder9PlayStateEEE5applyINS_14AbstractMirrorIS3_EEMS7_FvRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ21nsMainThreadPtrHandleI12nsIPrincipalEEE5applyINS_14AbstractMirrorIS4_EEMS8_FvRKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_12WatchManagerINS_12MediaDecoderEE18PerCallbackWatcherEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_9CanonicalIbE4ImplEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_9CanonicalI21nsMainThreadPtrHandleI12nsIPrincipalEE4ImplEMS9_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_9CanonicalINS_12MediaDecoder9PlayStateEE4ImplEMS8_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJO16already_AddRefedINS_6layers15KnowsCompositorEEEE5applyINS_17MediaFormatReaderEMS9_FvS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ20StoreRefPtrPassByPtrINS_14AbstractMirrorINS_5MaybeINS_5media8TimeUnitEEEEEEEE5applyINS_17AbstractCanonicalIS7_EEMSD_FvPS8_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ20StoreRefPtrPassByPtrINS_14AbstractMirrorINS_5media13TimeIntervalsEEEEEE5applyINS_17AbstractCanonicalIS5_EEMSB_FvPS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ20StoreRefPtrPassByPtrINS_14AbstractMirrorINS_5media8TimeUnitEEEEEE5applyINS_17AbstractCanonicalIS5_EEMSB_FvPS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ20StoreRefPtrPassByPtrINS_14AbstractMirrorIbEEEEE5applyINS_17AbstractCanonicalIbEEMS9_FvPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17MediaFormatReaderEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_8CDMProxyEEEE5applyINS_17MediaFormatReaderEMS7_FS2_INS_10MozPromiseIbNS_11MediaResultELb1EEEEPS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_18MediaPlaybackEvent9EventTypeEEE5applyINS0_8ListenerIJS2_EEEMS8_FvOS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJNS_18MediaPlaybackEventEEEEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_17MediaDecoderOwner15NextFrameStatusEEE5applyINS0_8ListenerIJS3_EEEMS8_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJNS_17MediaDecoderOwner15NextFrameStatusEEEEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJO6RefPtrINS_9AudioDataEEEE5applyINS0_8ListenerIJS4_EEEMS9_FvS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJ6RefPtrINS_9AudioDataEEEEEMS8_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJO6RefPtrINS_9VideoDataEEEE5applyINS0_8ListenerIJS4_EEEMS9_FvS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJ6RefPtrINS_9VideoDataEEEEEMS8_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_9CanonicalINS_5MaybeINS_5media8TimeUnitEEEE4ImplEMSA_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_5MaybeINS_5media8TimeUnitEEEEE5applyINS_14AbstractMirrorIS5_EEMS9_FvRKS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_9UniquePtrINS_9MediaInfoENS_13DefaultDeleteIS3_EEEEONS2_I15nsDataHashtableI16nsCStringHashKey9nsTStringIcEENS4_ISC_EEEEONS_27MediaDecoderEventVisibilityEEE5applyINS0_8ListenerIJS6_SE_SG_EEEMSL_FvS7_SF_SH_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJNS_9UniquePtrINS_9MediaInfoENS_13DefaultDeleteIS6_EEEENS5_I15nsDataHashtableI16nsCStringHashKey9nsTStringIcEENS7_ISE_EEEENS_27MediaDecoderEventVisibilityEEEEMSI_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ20StoreRefPtrPassByPtrINS_14AbstractMirrorINS_12MediaDecoder9PlayStateEEEEEE5applyINS_17AbstractCanonicalIS5_EEMSB_FvPS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ20StoreRefPtrPassByPtrINS_14AbstractMirrorIdEEEEE5applyINS_17AbstractCanonicalIdEEMS9_FvPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ20StoreRefPtrPassByPtrINS_14AbstractMirrorI21nsMainThreadPtrHandleI12nsIPrincipalEEEEEE5applyINS_17AbstractCanonicalIS6_EEMSC_FvPS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_14AbstractMirrorINS_5MaybeINS_5media8TimeUnitEEEEEMS9_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_14AbstractMirrorINS_5media8TimeUnitEEEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_14AbstractMirrorIbEEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_5media8TimeUnitEEE5applyINS_14AbstractMirrorIS3_EEMS7_FvRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_12WatchManagerINS_24MediaDecoderStateMachineEE18PerCallbackWatcherEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_12MediaDecoderEEEE5applyINS_24MediaDecoderStateMachineEMS7_FvPS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_18MediaPlaybackEventEEE5applyINS0_8ListenerIJS2_EEEMS7_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_9CanonicalINS_5media8TimeUnitEE4ImplEMS8_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_15VideoDecodeModeEEE5applyINS_24MediaDecoderStateMachineEMS5_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefINS_10SeekTargetEEEE5applyINS_24MediaDecoderStateMachineEMS7_F6RefPtrINS_10MozPromiseIbbLb1EEEERKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_11MediaResultEEE5applyINS0_8ListenerIJS2_EEEMS7_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJNS_11MediaResultEEEEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJO9nsAutoPtrINS_9MediaInfoEEONS_27MediaDecoderEventVisibilityEEE5applyINS0_8ListenerIJS4_S6_EEEMSB_FvS5_S7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJ9nsAutoPtrINS_9MediaInfoEENS_27MediaDecoderEventVisibilityEEEEMS9_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_24MediaDecoderStateMachineEMS4_F6RefPtrINS_10MozPromiseIbbLb0EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_24MediaDecoderStateMachineEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_18DecoderDoctorEventEEE5applyINS0_8ListenerIJS2_EEEMS7_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJNS_18DecoderDoctorEventEEEEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_24MediaDecoderStateMachineEMS4_FvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_14SourceListenerEEEE5applyINS_26GetUserMediaWindowListenerEMS7_FbPS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_14SourceListenerEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsresultEE5applyINS_3dom13MediaRecorderEMS6_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsresultEE5applyINS_3dom13MediaRecorder7SessionEMS7_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3dom13MediaRecorder7Session15EncoderListenerEEEE5applyINS_12MediaEncoderEMSA_FvPNS_20MediaEncoderListenerEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_5media13TimeIntervalsEEE5applyINS_14AbstractMirrorIS3_EEMS7_FvRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_14AbstractMirrorINS_5media13TimeIntervalsEEEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJO8nsTArrayIhEO9nsTStringIDsEEE5applyINS0_8ListenerIJS3_S6_EEEMSB_FvS4_S7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJ8nsTArrayIhE9nsTStringIDsEEEEMS9_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_9TrackInfo9TrackTypeEEE5applyINS_17MediaFormatReaderEMS6_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_9CanonicalINS_5media13TimeIntervalsEE4ImplEMS8_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_26GetUserMediaWindowListenerEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ24StoreCopyPassByConstLRefI21nsMainThreadPtrHandleI12nsIPrincipalEEEE5applyINS_3dom16MediaStreamTrack23PrincipalHandleListenerEMSB_FvRKS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_13MediaResourceEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_10MediaTimerEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17MediaFormatReaderEMS4_F6RefPtrINS_10MozPromiseINS_14MetadataHolderENS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17MediaFormatReaderEMS4_F6RefPtrINS_10MozPromiseIS5_INS_9AudioDataEENS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefINS_5media8TimeUnitEEEE5applyINS_17MediaFormatReaderEMS8_F6RefPtrINS_10MozPromiseIS9_INS_9VideoDataEENS_11MediaResultELb1EEEERKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefINS_10SeekTargetEEEE5applyINS_17MediaFormatReaderEMS7_F6RefPtrINS_10MozPromiseINS_5media8TimeUnitENS_15SeekRejectValueELb1EEEERKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefINS_9MediaData4TypeEEEE5applyINS_17MediaFormatReaderEMS8_F6RefPtrINS_10MozPromiseIS4_NS_22WaitForDataRejectValueELb1EEEES4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_7EnumSetINS_9TrackInfo9TrackTypeEjEEEE5applyINS_17MediaFormatReaderEMS8_F8nsresultS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_17MediaFormatReaderEMS4_FvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_12WatchManagerINS_11ReaderProxyEE18PerCallbackWatcherEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_12MediaEncoderEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_12MediaEncoder15EncoderListenerEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJlEE5applyINS_17AudioTrackEncoderEMS4_FvlEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17AudioTrackEncoderEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefINS_12AudioSegmentEEEE5applyINS_17AudioTrackEncoderEMS7_FvOS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_12MediaEncoder15EncoderListenerEEEE5applyINS_17AudioTrackEncoderEMNS_12TrackEncoderEFvPNS_20TrackEncoderListenerEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJlEE5applyINS_17VideoTrackEncoderEMS4_FvlEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17VideoTrackEncoderEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefINS_12VideoSegmentEEEE5applyINS_17VideoTrackEncoderEMS7_FvOS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_12MediaEncoder15EncoderListenerEEEE5applyINS_17VideoTrackEncoderEMNS_12TrackEncoderEFvPNS_20TrackEncoderListenerEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_20MediaEncoderListenerEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJiEE5applyINS_17VideoTrackEncoderEMS4_FviEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJj21NS_ConvertUTF8toUTF16EE5applyINS_16ChromiumCDMProxyEMS5_FvjRK12nsTSubstringIDsEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJjbEE5applyINS_16ChromiumCDMProxyEMS4_FvjbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJjEE5applyINS_16ChromiumCDMProxyEMS4_FvjEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJj8nsresult9nsTStringIcEEE5applyINS_16ChromiumCDMProxyEMS7_FvjS2_RKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ21NS_ConvertUTF8toUTF16NS_3dom19MediaKeyMessageTypeE8nsTArrayIhEEE5applyINS_16ChromiumCDMProxyEMS9_FvRK12nsTSubstringIDsES4_RKS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJjNS_3dom14MediaKeyStatusEEE5applyINS_16ChromiumCDMProxyEMS6_FvjS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ21NS_ConvertUTF8toUTF16EE5applyINS_16ChromiumCDMProxyEMS5_FvRK12nsTSubstringIDsEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ21NS_ConvertUTF8toUTF16lEE5applyINS_16ChromiumCDMProxyEMS5_FvRK12nsTSubstringIDsElEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_16ChromiumCDMProxyEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJMNS_3gmp17PChromiumCDMChildEFbRKjS5_ES4_S4_EE5applyINS2_16ChromiumCDMChildEMSA_FvS7_S5_S5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJMNS_3gmp16ChromiumCDMChildEFbjRK9nsTStringIcEEKjS6_EE5applyIS3_MS3_FvS9_RSA_S7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJMNS_3gmp17PChromiumCDMChildEFbRKjES4_EE5applyINS2_16ChromiumCDMChildEMSA_FvS7_S5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJMNS_3gmp17PChromiumCDMChildEFbRKjS5_S5_RK9nsTStringIcEES4_S4_S4_S8_EE5applyINS2_16ChromiumCDMChildEMSE_FvSB_S5_S5_S5_S9_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERKjRK8nsTArrayIhEES6_S8_SC_EE5applyINS2_16ChromiumCDMChildEMSI_FvSF_S7_S9_SD_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERK8nsTArrayINS2_17CDMKeyInformationEEES6_SB_EE5applyINS2_16ChromiumCDMChildEMSH_FvSE_S7_SC_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERKdES6_S8_EE5applyINS2_16ChromiumCDMChildEMSE_FvSB_S7_S9_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcEES6_EE5applyINS2_16ChromiumCDMChildEMSC_FvS9_S7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJjjjj8nsTArrayIhEEE5applyINS_3gmp17ChromiumCDMParentEMS7_FvjjjjRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJjj9nsTStringIDsEEE5applyINS_3gmp17ChromiumCDMParentEMS7_FvjjS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJj8nsTArrayIhEEE5applyINS_3gmp17ChromiumCDMParentEMS7_FvjRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ9nsTStringIcEj8nsTArrayIhEEE5applyINS_3gmp17ChromiumCDMParentEMS9_FvRKS3_jRKS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ9nsTStringIcEjEE5applyINS_3gmp17ChromiumCDMParentEMS7_FvRKS3_jEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJj9nsTStringIcEEE5applyINS_3gmp17ChromiumCDMParentEMS7_FvjRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gmp16GMPContentParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_14GMPCrashHelperEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3gmp9GMPParentEEEE5applyINS3_29GeckoMediaPluginServiceParentEMS8_FvRKS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gmp9GMPParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefI21NS_ConvertUTF8toUTF16EEE5applyINS_3gmp9GMPParentEMS8_F6RefPtrINS_10MozPromiseIb8nsresultLb0EEEERK12nsTSubstringIDsEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gmp15GMPSyncRunnableEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gmp11GMPRunnableEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gmp16GMPProcessParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gmp29GeckoMediaPluginServiceParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJlEE5applyINS_3gmp29GeckoMediaPluginServiceParentEMS5_FvlEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gmp29GeckoMediaPluginServiceParentEMS5_F6RefPtrINS_10MozPromiseI8nsTArrayIbE8nsresultLb0EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefI9nsTStringIDsEEEE5applyINS_3gmp29GeckoMediaPluginServiceParentEMS9_F6RefPtrINS_10MozPromiseIb8nsresultLb0EEEES4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ9nsTStringIcENS_23OriginAttributesPatternEEE5applyINS_3gmp29GeckoMediaPluginServiceParentEMS8_FvRK12nsTSubstringIcERKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_7MonitorEPbEE5applyINS_3gmp16GMPServiceParentEMS8_FvS3_S4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gmp20GMPVideoDecoderChildEMS5_FNS_3ipc9IPCResultEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3gmp20GMPVideoEncoderChildEMS5_FNS_3ipc9IPCResultEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_3dom26PVideoDecoderManagerParentEEEEE5applyINS4_25VideoDecoderManagerParentEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJOlEE5applyINS0_8ListenerIJlEEEMS6_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJlEEEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_26DecodedStreamGraphListenerEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_11MediaStreamEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJO6RefPtrINS_19TrackBuffersManagerEEEE5applyINS_18MediaSourceDemuxerEMS8_FvS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefINS_5media8TimeUnitEEEE5applyINS_23MediaSourceTrackDemuxerEMS8_F6RefPtrINS_10MozPromiseIS4_NS_11MediaResultELb1EEEERKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefIiEEE5applyINS_23MediaSourceTrackDemuxerEMS6_F6RefPtrINS_10MozPromiseIS7_INS_17MediaTrackDemuxer13SamplesHolderEENS_11MediaResultELb1EEEEiEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefINS_5media8TimeUnitEEEE5applyINS_23MediaSourceTrackDemuxerEMS8_F6RefPtrINS_10MozPromiseIjNS_17MediaTrackDemuxer17SkipFailureHolderELb1EEEERKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefI16already_AddRefedINS_15MediaByteBufferEEES2_INS_22SourceBufferAttributesEEEE5applyINS_19TrackBuffersManagerEMSB_F6RefPtrINS_10MozPromiseINS_4PairIbS7_EENS_11MediaResultELb1EEEES5_RKS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_16SourceBufferTaskEEEE5applyINS_19TrackBuffersManagerEMS7_FvPS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_19TrackBuffersManagerEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefINS_5media8IntervalINS3_8TimeUnitEEEEEE5applyINS_19TrackBuffersManagerEMSA_F6RefPtrINS_10MozPromiseIb8nsresultLb1EEEES6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJlEE5applyINS_18MediaSourceDecoderEMS4_FvlEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_12MediaRawDataEEE5applyINS_10AOMDecoderEMS6_F6RefPtrINS_10MozPromiseI8nsTArrayIS7_INS_9MediaDataEEENS_11MediaResultELb1EEEES3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_12MediaRawDataEEE5applyINS_15OpusDataDecoderEMS6_F6RefPtrINS_10MozPromiseI8nsTArrayIS7_INS_9MediaDataEEENS_11MediaResultELb1EEEES3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_12MediaRawDataEEE5applyINS_13TheoraDecoderEMS6_F6RefPtrINS_10MozPromiseI8nsTArrayIS7_INS_9MediaDataEEENS_11MediaResultELb1EEEES3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_12MediaRawDataEEE5applyINS_10VPXDecoderEMS6_F6RefPtrINS_10MozPromiseI8nsTArrayIS7_INS_9MediaDataEEENS_11MediaResultELb1EEEES3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_12MediaRawDataEEE5applyINS_17VorbisDataDecoderEMS6_F6RefPtrINS_10MozPromiseI8nsTArrayIS7_INS_9MediaDataEEENS_11MediaResultELb1EEEES3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_12MediaRawDataEEE5applyINS_15WaveDataDecoderEMS6_F6RefPtrINS_10MozPromiseI8nsTArrayIS7_INS_9MediaDataEEENS_11MediaResultELb1EEEES3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_9TrackInfo9TrackTypeEEE5applyINS0_8ListenerIJS3_EEEMS8_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJNS_9TrackInfo9TrackTypeEEEEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_12WatchManagerINS_14OmxDataDecoderEE18PerCallbackWatcherEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_14OmxDataDecoderEMS4_F6RefPtrINS_10MozPromiseIbNS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_14OmxDataDecoderEMS4_F6RefPtrINS_10MozPromiseIbbLb0EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_12MediaRawDataEEE5applyINS_17FFmpegDataDecoderILi46465650EEEMS7_F6RefPtrINS_10MozPromiseI8nsTArrayIS8_INS_9MediaDataEEENS_11MediaResultELb1EEEES3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17FFmpegDataDecoderILi46465650EEEMS5_F6RefPtrINS_10MozPromiseIbNS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17FFmpegDataDecoderILi46465650EEEMS5_F6RefPtrINS_10MozPromiseI8nsTArrayIS6_INS_9MediaDataEEENS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_12MediaRawDataEEE5applyINS_17FFmpegDataDecoderILi53EEEMS7_F6RefPtrINS_10MozPromiseI8nsTArrayIS8_INS_9MediaDataEEENS_11MediaResultELb1EEEES3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17FFmpegDataDecoderILi53EEEMS5_F6RefPtrINS_10MozPromiseIbNS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17FFmpegDataDecoderILi53EEEMS5_F6RefPtrINS_10MozPromiseI8nsTArrayIS6_INS_9MediaDataEEENS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_12MediaRawDataEEE5applyINS_17FFmpegDataDecoderILi54EEEMS7_F6RefPtrINS_10MozPromiseI8nsTArrayIS8_INS_9MediaDataEEENS_11MediaResultELb1EEEES3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17FFmpegDataDecoderILi54EEEMS5_F6RefPtrINS_10MozPromiseIbNS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17FFmpegDataDecoderILi54EEEMS5_F6RefPtrINS_10MozPromiseI8nsTArrayIS6_INS_9MediaDataEEENS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_12MediaRawDataEEE5applyINS_17FFmpegDataDecoderILi55EEEMS7_F6RefPtrINS_10MozPromiseI8nsTArrayIS8_INS_9MediaDataEEENS_11MediaResultELb1EEEES3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17FFmpegDataDecoderILi55EEEMS5_F6RefPtrINS_10MozPromiseIbNS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17FFmpegDataDecoderILi55EEEMS5_F6RefPtrINS_10MozPromiseI8nsTArrayIS6_INS_9MediaDataEEENS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_12MediaRawDataEEE5applyINS_17FFmpegDataDecoderILi57EEEMS7_F6RefPtrINS_10MozPromiseI8nsTArrayIS8_INS_9MediaDataEEENS_11MediaResultELb1EEEES3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17FFmpegDataDecoderILi57EEEMS5_F6RefPtrINS_10MozPromiseIbNS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17FFmpegDataDecoderILi57EEEMS5_F6RefPtrINS_10MozPromiseI8nsTArrayIS6_INS_9MediaDataEEENS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_12MediaRawDataEEE5applyINS_17FFmpegDataDecoderILi58EEEMS7_F6RefPtrINS_10MozPromiseI8nsTArrayIS8_INS_9MediaDataEEENS_11MediaResultELb1EEEES3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17FFmpegDataDecoderILi58EEEMS5_F6RefPtrINS_10MozPromiseIbNS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_17FFmpegDataDecoderILi58EEEMS5_F6RefPtrINS_10MozPromiseI8nsTArrayIS6_INS_9MediaDataEEENS_11MediaResultELb1EEEEvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6camera13CaptureEngineE9nsTStringIcEEE5applyINS2_12CamerasChildEMNS2_13PCamerasChildEFbRKS3_RKS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6camera13CaptureEngineEEE5applyINS2_12CamerasChildEMNS2_13PCamerasChildEFbRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6camera13CaptureEngineE9nsTStringIcEjEE5applyINS2_12CamerasChildEMNS2_13PCamerasChildEFbRKS3_RKS5_RKiEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6camera13CaptureEngineEjEE5applyINS2_12CamerasChildEMNS2_13PCamerasChildEFbRKS3_RKiEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6camera13CaptureEngineE9nsTStringIcERKNS_3ipc13PrincipalInfoEEE5applyINS2_12CamerasChildEMNS2_13PCamerasChildEFbRKS3_RKS5_S9_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6camera13CaptureEngineEiEE5applyINS2_12CamerasChildEMNS2_13PCamerasChildEFbRKS3_RKiEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6camera13CaptureEngineEiNS2_22VideoCaptureCapabilityEEE5applyINS2_12CamerasChildEMNS2_13PCamerasChildEFbRKS3_RKiRKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6camera12CamerasChildEMNS4_13PCamerasChildEFbvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJjEE5applyINS_26MediaSystemResourceManagerEMS4_FvjEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJjbEE5applyINS_26MediaSystemResourceManagerEMS4_FvjbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom20AudioDestinationNodeEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_15MediaDecodeTaskEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyIN7WebCore15ReverbConvolverEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom19nsFakeSynthServicesEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJj19SPDNotificationTypeEE5applyINS_3dom23SpeechDispatcherServiceEMS6_FvjjEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom23SpeechDispatcherServiceEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19SPDNotificationTypeEE5applyINS_3dom24SpeechDispatcherCallbackEMS6_FbS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom29NotificationPermissionRequestEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom5quota12_GLOBAL__N_15QuotaEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom5quota12QuotaManagerEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom23LocalStorageCacheBridgeEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom15StorageDBThreadEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom15StorageDBParent17CacheParentBridgeEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom15StorageDBParent17UsageParentBridgeEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom15StorageDBParent12ObserverSinkEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ9nsTStringIcES2_IDsES3_EE5applyINS_3dom15StorageDBParent12ObserverSinkEMS9_FvRKS3_RKS4_SB_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom17SVGFEImageElementEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom15SVGImageElementEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom15SVGStyleElementEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ14gfxSurfaceTypeNS_7plugins14NPRemoteWindowEbEE5applyINS3_19PluginInstanceChildEMS7_FvRKS2_RKS4_bEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_7plugins19PluginInstanceChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_7plugins20PFunctionBrokerChildEEEEE5applyINS4_19FunctionBrokerChildEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_7plugins19FunctionBrokerChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_7plugins21PFunctionBrokerParentEEEEE5applyINS4_20FunctionBrokerParentEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_7plugins20FunctionBrokerParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_7plugins19PluginProcessParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: ActorsParent.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom9indexedDB12_GLOBAL__N_18DatabaseEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: ActorsParent.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom9indexedDB12_GLOBAL__N_114OpenDatabaseOpEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom9indexedDB12_GLOBAL__N_113StreamWrapperEMS7_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom11IDBDatabaseEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom12ContentChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: ProcessHangMonitor.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3dom6IdTypeINS2_9TabParentEEE9nsTStringIcES6_IDsEEE5applyIN12_GLOBAL__N_116HangMonitorChildEMSC_FvS5_RKS7_RKS8_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: ProcessHangMonitor.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJjEE5applyIN12_GLOBAL__N_116HangMonitorChildEMS5_FvjEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: ProcessHangMonitor.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyIN12_GLOBAL__N_116HangMonitorChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: ProcessHangMonitor.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyIN12_GLOBAL__N_117HangMonitorParentEMS5_FvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: ProcessHangMonitor.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyIN12_GLOBAL__N_117HangMonitorParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: ProcessHangMonitor.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_25PProcessHangMonitorParentEEEEE5applyIN12_GLOBAL__N_117HangMonitorParentEMSA_FvS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: ProcessHangMonitor.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3dom6IdTypeINS2_9TabParentEEEbNS_6layers19LayersObserverEpochEEE5applyIN12_GLOBAL__N_117HangMonitorParentEMSB_FvS5_bRKS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: ProcessHangMonitor.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_24PProcessHangMonitorChildEEEEE5applyIN12_GLOBAL__N_116HangMonitorChildEMSA_FvS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom18ContentBridgeChildEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom19ContentBridgeParentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3dom13ContentParent14ShutDownMethodEEE5applyIS3_MS3_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_30PreallocatedProcessManagerImplEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom3ipc17WritableSharedMapEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom12_GLOBAL__N_120ScriptLoaderRunnableEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_9UniquePtrINS_3dom9U2FResultENS_13DefaultDeleteIS4_EEEEEE5applyINS3_18U2FHIDTokenManagerEMSB_FvS8_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ9nsTStringIDsEEE5applyINS_3dom15U2FTokenManagerEMS7_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJmbEE5applyINS_3dom15U2FTokenManagerEMS5_FvmbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJmEE5applyINS_3dom15U2FTokenManagerEMS5_FvmEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI16nsBindingManagerMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom34XMLStylesheetProcessingInstructionEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI16nsXMLContentSinkMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI18nsXMLPrettyPrinterMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPNS_3dom7ElementEiP6nsAtomEE5applyINS2_11XULDocumentEMS9_FvS4_iS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom11XULDocumentEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsresultEE5applyI36nsIWebBrowserPersistDocumentReceiverMS5_FS2_S2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsCOMPtrI28nsIWebBrowserPersistDocumentE8nsresultEE5applyI35nsIWebBrowserPersistResourceVisitorMS8_FS5_PS3_S5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ8nsCOMPtrI28nsIWebBrowserPersistDocumentES2_I15nsIOutputStreamE9nsTStringIcE8nsresultEE5applyI35nsIWebBrowserPersistWriteCompletionMSC_FS9_PS3_PS5_RK12nsTSubstringIcES9_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI19nsWebBrowserPersistMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefINS_9UniquePtrIN19nsWebBrowserPersist8WalkDataENS_13DefaultDeleteIS5_EEEEEEE5applyIS4_MS4_F8nsresultOS8_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3dom24XMLHttpRequestMainThread17ProgressEventTypeEEE5applyIS3_MS3_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom13WorkletThreadEM8nsThreadF8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI16nsIScriptElementMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom12ScriptLoaderEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom12_GLOBAL__N_116WaitUntilHandlerEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_3dom12_GLOBAL__N_133CheckScriptEvaluationWithCallbackEMS6_FvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJtEE5applyINS_3dom12_GLOBAL__N_117PushErrorReporterEMS6_FvtEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJjEE5applyINS_3dom22ServiceWorkerRegistrarEMS5_FvjEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3dom35ServiceWorkerRegistrationDescriptorEEE5applyINS2_14WorkerListenerEMS6_FvRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom16ServiceWorkerJobEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom18ServiceWorkerProxyEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom22ServiceWorkerRegistrarEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom25ServiceWorkerRegistrationEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom35ServiceWorkerRegistrationMainThreadEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom14WorkerListenerEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom29ServiceWorkerRegistrationInfoEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_3dom29ServiceWorkerRegistrationInfoEMS5_FvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom30ServiceWorkerRegistrationProxyEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3dom35ServiceWorkerRegistrationDescriptorEEE5applyINS2_30ServiceWorkerRegistrationProxyEMS6_FvRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom12_GLOBAL__N_110ConnectionEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom12_GLOBAL__N_16OpenOpEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3dom10SDBRequestEEEE5applyI14nsISDBCallbackMS8_F8nsresultP13nsISDBRequestEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_3dom24PresentationAvailabilityEMS5_FvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom22PresentationConnectionEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom25PresentationDeviceManagerEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ9nsTStringIDsE6RefPtrINS_3dom7PromiseEEEE5applyINS5_19PresentationRequestEMSA_FvRK12nsTSubstringIDsEPS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ9nsTStringIcEEE5applyINS_3dom27PresentationControllingInfoEMS7_F8nsresultRK12nsTSubstringIcEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJP31nsIPresentationSessionTransportEE5applyI46nsIPresentationSessionTransportBuilderListenerMS6_F8nsresultS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_3dom31PresentationTCPSessionTransport10ReadyStateEEE5applyIS3_MS3_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom12presentation26MulticastDNSDeviceProviderEMS6_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJfEE5applyINS_6layers16IAPZCTreeManagerEMS5_FvfEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers11KeyboardMapEEE5applyINS2_16IAPZCTreeManagerEMS6_FvRKS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJmbEE5applyINS_6layers16IAPZCTreeManagerEMS5_FvmbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJm19StoreCopyPassByLRefI8nsTArrayIjEEEE5applyINS_6layers16IAPZCTreeManagerEMS9_FvmRKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJm19StoreCopyPassByRRefI8nsTArrayINS_6layers19ScrollableLayerGuidEEEEE5applyINS4_16IAPZCTreeManagerEMSA_FvmRKS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_6layers19ScrollableLayerGuidENS2_16AsyncDragMetricsEEE5applyINS2_16IAPZCTreeManagerEMS7_FvRKS3_RKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJbEE5applyINS_25CompositorVsyncDispatcherEMS4_FvbEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_27RefreshTimerVsyncDispatcherEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI8nsWindowMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI22nsDeviceContextSpecGTKMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_13HTMLEditRulesEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_10HTMLEditorEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3dom11FontFaceSetEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_23VsyncRefreshDriverTimer26RefreshDriverVsyncObserverEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI15nsRefreshDriverMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_9PresShellEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI21ZoomConstraintsClientMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI13nsPresContextMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI20nsIDateTimeInputAreaMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJNS_9TimeStampEEE5applyINS_6layout11VsyncParentEMS6_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI10nsDocShellMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_14PProfilerChildEEEEE5applyINS_23ChildProfilerControllerEMS9_FvS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJP9nsTStringIcEEE5applyINS_23ChildProfilerControllerEMS7_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPKcEE5applyINS_11DataStorageEMS6_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_11DataStorageEMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_3psm24PSMContentStreamListenerEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_10extensions18PStreamFilterChildEEEEE5applyINS4_12StreamFilterEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_3ipc8EndpointINS_10extensions19PStreamFilterParentEEEEE5applyINS4_18StreamFilterParentEMSA_FvS7_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_10extensions18StreamFilterParentEMNS_3ipc17IToplevelProtocolEFvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJO8nsTArrayIhEEE5applyINS_10extensions18StreamFilterParentEMS8_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: Unified_cpp_components_places0.cpp:_ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6places12_GLOBAL__N_112VisitedQueryEMS6_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6places8DatabaseEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6places27AsyncFetchAndSetIconForPageEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_6places23AsyncReplaceFaviconDataEMS5_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ9nsTStringIcEiS3_blEE5applyI12nsNavHistoryMS6_FvRK12nsTSubstringIcEiSA_blEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3ELm4EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI30nsUrlClassifierDBServiceWorkerMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI30nsUrlClassifierDBServiceWorkerMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrINS_3dom16HTMLInputElementEEEE5applyI20nsFormFillControllerMS8_FvPS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI22nsNativeAppSupportUnixMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI17nsUpdateProcessorMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS_12WatchManagerIN17TestStateWatching3FooEE18PerCallbackWatcherEMS8_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI5nsBarMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyIK5nsBarMS4_KFvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI5nsBarMS4_F8nsresultvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrI5nsFooEEE5applyI5nsBarMS7_FvPS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ6RefPtrI5nsFooEEE5applyI5nsBarMS7_F8nsresultPS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJP5nsFooEE5applyI5nsBarMS6_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPcEE5applyI5nsBarMS5_F8nsresultS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI10IdleObjectMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPbEE5applyI5nsFooMS5_F8nsresultS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPKcjEE5applyI10IdleObjectMS6_FvS3_jEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI28IdleObjectWithoutSetDeadlineMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI30IdleObjectInheritedSetDeadlineMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJiEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMS5_FviEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMNS4_34ThreadUtilsObjectNonRefCountedBaseEFvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJiiEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMS5_FviiEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJiiiEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMS5_FviiiEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJiiiiEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMS5_FviiiiEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPiEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMS6_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPKiEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMS7_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ18StoreCopyPassByPtrIiEEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMS7_FvPiEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ23StoreCopyPassByConstPtrIiEEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMS7_FvPKiEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJRiEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMS6_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJOiEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMS6_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_9UniquePtrIiNS_13DefaultDeleteIiEEEEEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMSA_FvS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefINS_9UniquePtrIiNS_13DefaultDeleteIiEEEEEEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMSB_FvS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJRNS_9UniquePtrIiNS_13DefaultDeleteIiEEEEEE5applyIN15TestThreadUtils17ThreadUtilsObjectEMSA_FvS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ20StoreCopyPassByValueIN15TestThreadUtils3SpyEEEE5applyINS3_17ThreadUtilsObjectEMS8_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ24StoreCopyPassByConstLRefIN15TestThreadUtils3SpyEEEE5applyINS3_17ThreadUtilsObjectEMS8_FvRKS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ19StoreCopyPassByRRefIN15TestThreadUtils3SpyEEEE5applyINS3_17ThreadUtilsObjectEMS8_FvOS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJRN15TestThreadUtils3SpyEEE5applyINS2_17ThreadUtilsObjectEMS7_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ20StoreRefPtrPassByPtrIN15TestThreadUtils16SpyWithISupportsEEEE5applyINS3_17ThreadUtilsObjectEMS8_FvPNS3_3SpyEEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPN15TestThreadUtils3SpyEEE5applyINS2_17ThreadUtilsObjectEMS7_FvS4_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJPKN15TestThreadUtils3SpyEEE5applyINS2_17ThreadUtilsObjectEMS8_FvS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI14CDMStorageTestMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ9nsTStringIcEEE5applyI14CDMStorageTestMS6_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_9UniquePtrIN14CDMStorageTest8NodeInfoENS_13DefaultDeleteIS4_EEEEEE5applyIS3_MS3_FvS8_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI14GMPTestMonitorMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJR14GMPTestMonitorEE5applyI13GMPTestRunnerMS6_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJ9nsTStringIcEPP20GMPVideoDecoderProxyPP12GMPVideoHostEE5applyI13GMPRemoveTestMSC_FvS3_S6_S9_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJRK13GMPVideoCodecRK8nsTArrayIhEP28GMPVideoDecoderCallbackProxyiEE5applyI20GMPVideoDecoderProxyMSD_F8nsresultS4_S8_SA_iEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0ELm1ELm2ELm3EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI20GMPVideoDecoderProxyMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyI13GMPRemoveTestMS4_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJOiEE5applyINS0_8ListenerIJiEEEMS6_FvS2_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJiEEEMS5_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJO9SomeEventEE5applyINS0_8ListenerIJS2_EEEMS7_FvS3_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJ9SomeEventEEEMS6_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJONS_9UniquePtrIiNS_13DefaultDeleteIiEEEEEE5applyINS0_8ListenerIJS5_EEEMSA_FvS6_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJNS_9UniquePtrIiNS_13DefaultDeleteIiEEEEEEEMS9_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJO6RefPtrI10RefCounterEEE5applyINS0_8ListenerIJS4_EEEMS9_FvS5_EEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJLm0EEEEEEEPT_T0_
Unexecuted instantiation: _ZN7mozilla6detail23RunnableMethodArgumentsIJEE5applyINS0_8ListenerIJ6RefPtrI10RefCounterEEEEMS8_FvvEEEDTcl9applyImplfp_fp0_dtdefpT10mArgumentstlNSt3__116integer_sequenceImJEEEEEEPT_T0_
1187
};
1188
1189
template<typename PtrType, typename Method, bool Owning, RunnableKind Kind, typename... Storages>
1190
class RunnableMethodImpl final
1191
  : public ::nsRunnableMethodTraits<PtrType, Method, Owning, Kind>::base_type
1192
{
1193
  typedef typename ::nsRunnableMethodTraits<PtrType, Method, Owning, Kind> Traits;
1194
1195
  typedef typename Traits::class_type ClassType;
1196
  typedef typename Traits::base_type BaseType;
1197
  ::nsRunnableMethodReceiver<ClassType, Owning> mReceiver;
1198
  Method mMethod;
1199
  RunnableMethodArguments<Storages...> mArgs;
1200
  using BaseType::GetTimer;
1201
  using BaseType::CancelTimer;
1202
private:
1203
13
  virtual ~RunnableMethodImpl() { Revoke(); };
mozilla::detail::RunnableMethodImpl<FdWatcher*, void (FdWatcher::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Line
Count
Source
1203
3
  virtual ~RunnableMethodImpl() { Revoke(); };
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsMemoryReporterManager*, nsresult (nsMemoryReporterManager::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsObserverService>, void (nsObserverService::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::EventTargetWrapper*, void (mozilla::EventTargetWrapper::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::LazyIdleThread*, void (mozilla::LazyIdleThread::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::LazyIdleThread*, void (mozilla::LazyIdleThread::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIBlockThreadedExecutionCallback*, nsresult (nsIBlockThreadedExecutionCallback::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIThreadPool>, nsresult (nsIThreadPool::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsProcess>, void (nsProcess::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIThread*, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Preferences*, nsresult (mozilla::Preferences::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsStringBundleBase*, nsresult (nsStringBundleBase::*)(), true, (mozilla::RunnableKind)2>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::BackgroundFileSaver*, nsresult (mozilla::net::BackgroundFileSaver::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::BackgroundFileSaverStreamListener*, nsresult (mozilla::net::BackgroundFileSaverStreamListener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::ConnectionData> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::LookupHelper*, nsresult (mozilla::net::LookupHelper::*)(mozilla::net::LookupArgument*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::LookupArgument> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::SocketData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::SocketData> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::HttpData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::HttpData> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::WebSocketRequest*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::WebSocketRequest> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::DnsData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::DnsData> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::RcwnData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::RcwnData> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsAsyncStreamCopier>, void (nsAsyncStreamCopier::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsICaptivePortalService>, nsresult (nsICaptivePortalService::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsInputStreamPump*, nsresult (nsInputStreamPump::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsPACMan*, void (mozilla::net::nsPACMan::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsServerSocket*, void (mozilla::net::nsServerSocket::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsProtocolProxyService*, nsresult (mozilla::net::nsProtocolProxyService::*)(bool, bool, nsresult, nsTSubstring<char> const&), false, (mozilla::RunnableKind)1, bool, bool, nsresult, nsTString<char> >::~RunnableMethodImpl()
mozilla::detail::RunnableMethodImpl<mozilla::net::nsSocketTransportService*, void (mozilla::net::nsSocketTransportService::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Line
Count
Source
1203
7
  virtual ~RunnableMethodImpl() { Revoke(); };
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsUDPSocket*, void (mozilla::net::nsUDPSocket::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsHostResolver*, void (nsHostResolver::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::DNSRequestChild*, void (mozilla::net::DNSRequestChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCacheService*, void (nsCacheService::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheEntry*, void (mozilla::net::CacheEntry::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheEntry*, void (mozilla::net::CacheEntry::*)(double), true, (mozilla::RunnableKind)0, double>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileChunk*, unsigned int (mozilla::net::CacheFileChunk::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileContextEvictor*, nsresult (mozilla::net::CacheFileContextEvictor::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileHandle*, unsigned int (mozilla::net::CacheFileHandle::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::CacheFileIOManager>, nsresult (mozilla::net::CacheFileIOManager::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileIOManager*, nsresult (mozilla::net::CacheFileIOManager::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::CacheFileIOManager>, nsresult (mozilla::net::CacheFileIOManager::*)(nsILoadContextInfo*, bool, nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, nsCOMPtr<nsILoadContextInfo>, bool, nsTString<char16_t> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::CacheIndex>, void (mozilla::net::CacheIndex::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheObserver*, void (mozilla::net::CacheObserver::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheStorageService*, void (mozilla::net::CacheStorageService::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsAboutCache::Channel*, void (nsAboutCache::Channel::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsFileUploadContentStream*, void (nsFileUploadContentStream::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::FTPChannelParent*, void (mozilla::net::FTPChannelParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::nsHttpConnectionMgr>, nsresult (mozilla::net::nsHttpConnectionMgr::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::AltSvcMapping*, void (mozilla::net::AltSvcMapping::*)(nsTString<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Http2Session*, void (mozilla::net::Http2Session::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&), true, (mozilla::RunnableKind)0, nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::TimeStamp const, mozilla::net::nsHttpHeaderArray const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(long const&, long const&), true, (mozilla::RunnableKind)0, long const, long const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&), true, (mozilla::RunnableKind)0, nsresult const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&), true, (mozilla::RunnableKind)0, nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::net::nsHttpHeaderArray const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(long const&, long const&), true, (mozilla::RunnableKind)0, long const, long const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&), true, (mozilla::RunnableKind)0, nsresult const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(bool), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> const, nsTString<char> const, nsTString<char> const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBaseChannel*, void (mozilla::net::HttpBaseChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, unsigned int (mozilla::net::HttpChannelChild::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::HttpBackgroundChannelChild>, void (mozilla::net::HttpBackgroundChannelChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpBaseChannel::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> const, nsTString<char> const, nsTString<char> const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpChannelChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpChannelChild::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::HttpBackgroundChannelChild>, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::HttpChannelChild> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(nsresult const&), true, (mozilla::RunnableKind)0, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpBaseChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelParent*, void (mozilla::net::HttpChannelParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIInterceptedChannel*, nsresult (nsIInterceptedChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::InterceptedHttpChannel*, void (mozilla::net::InterceptedHttpChannel::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsHttpChannel*, void (mozilla::net::nsHttpChannel::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsHttpChannel*, nsresult (mozilla::net::nsHttpChannel::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::ExtensionJARFileOpener*, nsresult (mozilla::net::ExtensionJARFileOpener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::ExtensionJARFileOpener>, nsresult (mozilla::net::ExtensionJARFileOpener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannel*, nsresult (mozilla::net::WebSocketChannel::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannel*, void (mozilla::net::WebSocketChannel::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannel*, void (mozilla::net::WebSocketChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannelChild*, void (mozilla::net::WebSocketChannelChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWyciwygChannel*, void (nsWyciwygChannel::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::ContentParent>, unsigned int (mozilla::dom::ContentParent::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::ParentImpl*, void ((anonymous namespace)::ParentImpl::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::ContentChild>, bool (mozilla::dom::PContentChild::*)(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> const&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::GeckoChildProcessHost*, bool (mozilla::ipc::GeckoChildProcessHost::*)(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> > > >), false, (mozilla::RunnableKind)0, 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> > > > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::MessageChannel*, void (mozilla::ipc::MessageChannel::*)(), false, (mozilla::RunnableKind)1>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::MessageChannel*, void (mozilla::ipc::MessageChannel::*)(mozilla::ipc::MessageChannel*, mozilla::ipc::Side), false, (mozilla::RunnableKind)0, mozilla::ipc::MessageChannel*, mozilla::ipc::Side>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::ProcessLink*, void (mozilla::ipc::ProcessLink::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::ProcessLink*, void (mozilla::ipc::ProcessLink::*)(IPC::Message*), false, (mozilla::RunnableKind)0, IPC::Message*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IPC::Channel*, bool (IPC::Channel::*)(IPC::Message*), false, (mozilla::RunnableKind)0, IPC::Message*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ScriptPreloader*, void (mozilla::ScriptPreloader::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
mozilla::detail::RunnableMethodImpl<mozilla::URLPreloader*, void (mozilla::URLPreloader::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Line
Count
Source
1203
3
  virtual ~RunnableMethodImpl() { Revoke(); };
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIThread>, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsJARChannel>, nsresult (nsJARChannel::*)(nsJARInputThunk*, bool), true, (mozilla::RunnableKind)0, RefPtr<nsJARInputThunk>, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsJARChannel>, nsresult (nsJARChannel::*)(nsresult, bool), true, (mozilla::RunnableKind)0, nsresult, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsJARChannel*, void (nsJARChannel::*)(unsigned long), true, (mozilla::RunnableKind)0, unsigned long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::storage::Connection>, void (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::Connection*, nsresult (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::Connection*, void (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozIStorageError*), true, (mozilla::RunnableKind)0, nsCOMPtr<mozIStorageError> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozilla::storage::ResultSet*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::storage::ResultSet> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::storage::Connection>, nsresult (mozilla::storage::Connection::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::VideoFrameConverter*, void (mozilla::VideoFrameConverter::*)(mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::layers::Image>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::GenericReceiveListener*, void (mozilla::GenericReceiveListener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoSessionConduit>, void (mozilla::VideoSessionConduit::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsOfflineCacheUpdate*, void (nsOfflineCacheUpdate::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsHtml5Parser*, nsresult (nsHtml5Parser::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::PaintThread*, void (mozilla::layers::PaintThread::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncImagePipelineManager*, void (mozilla::layers::AsyncImagePipelineManager::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorBridgeParentBase>, void (mozilla::layers::CompositorBridgeParentBase::*)(mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, bool), true, (mozilla::RunnableKind)0, mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), true, (mozilla::RunnableKind)0, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::GeckoContentController>, void (mozilla::layers::GeckoContentController::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::Maybe<mozilla::layers::ZoomConstraints> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::InputQueue>, void (mozilla::layers::InputQueue::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&), true, (mozilla::RunnableKind)0, mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> const&), true, (mozilla::RunnableKind)0, mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::OverscrollHandoffChain const*, void (mozilla::layers::OverscrollHandoffChain::*)(mozilla::layers::AsyncPanZoomController const*) const, true, (mozilla::RunnableKind)0, mozilla::layers::AsyncPanZoomController*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&, RefPtr<mozilla::layers::OverscrollHandoffChain const> const&, RefPtr<mozilla::layers::AsyncPanZoomController const> const&), true, (mozilla::RunnableKind)0, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>, RefPtr<mozilla::layers::OverscrollHandoffChain const>, RefPtr<mozilla::layers::AsyncPanZoomController const> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::GeckoContentController>, void (mozilla::layers::GeckoContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), true, (mozilla::RunnableKind)0, mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(bool), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::layers::FrameMetrics const&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), true, (mozilla::RunnableKind)0, mozilla::layers::FrameMetrics, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(), true, (mozilla::RunnableKind)1>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(bool), true, (mozilla::RunnableKind)1, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::InputQueue*, void (mozilla::layers::InputQueue::*)(unsigned long), true, (mozilla::RunnableKind)0, unsigned long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ActiveElementManager*, void (mozilla::layers::ActiveElementManager::*)(nsCOMPtr<mozilla::dom::Element> const&), true, (mozilla::RunnableKind)1, nsCOMPtr<mozilla::dom::Element> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), true, (mozilla::RunnableKind)0, mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), true, (mozilla::RunnableKind)0, mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&, nsTString<char16_t> const&), true, (mozilla::RunnableKind)0, unsigned long, nsTString<char16_t> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&), true, (mozilla::RunnableKind)0, unsigned long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), true, (mozilla::RunnableKind)0, mozilla::layers::KeyboardMap>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0, unsigned long, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(float), true, (mozilla::RunnableKind)0, float>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByRRef<nsTArray<unsigned int> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, bool (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(bool), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorBridgeChild>, void (mozilla::layers::CompositorBridgeChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParentBase*, bool (mozilla::layers::CompositorBridgeParentBase::*)(base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int), true, (mozilla::RunnableKind)0, base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParentBase*, bool (mozilla::layers::CompositorBridgeParentBase::*)(unsigned long, unsigned int), true, (mozilla::RunnableKind)0, unsigned long, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(int, int), true, (mozilla::RunnableKind)0, int, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(), true, (mozilla::RunnableKind)1>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorManagerParent>, void (mozilla::layers::CompositorManagerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorManagerParent*, void (mozilla::layers::CompositorManagerParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorVsyncScheduler*, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)1, mozilla::TimeStamp>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorVsyncScheduler*, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0, mozilla::TimeStamp>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CrossProcessCompositorBridgeParent*, void (mozilla::layers::CrossProcessCompositorBridgeParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::ImageBridgeChild>, void (mozilla::layers::ImageBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::ImageBridgeParent>, void (mozilla::layers::ImageBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ImageBridgeParent*, void (mozilla::layers::ImageBridgeParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long), true, (mozilla::RunnableKind)0, mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), true, (mozilla::RunnableKind)0, mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(float, float, bool), true, (mozilla::RunnableKind)0, float, float, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(unsigned long const&, nsTString<char16_t> const&), true, (mozilla::RunnableKind)0, unsigned long, nsTString<char16_t> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(unsigned long const&), true, (mozilla::RunnableKind)0, unsigned long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::LayerTransactionChild>, void (mozilla::layers::LayerTransactionChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerChild>, void (mozilla::layers::UiCompositorControllerChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerChild>, void (mozilla::layers::UiCompositorControllerChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::UiCompositorControllerChild*, void (mozilla::layers::UiCompositorControllerChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerParent>, void (mozilla::layers::UiCompositorControllerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)(int), true, (mozilla::RunnableKind)0, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GtkVsyncSource::GLXDisplay*, void (GtkVsyncSource::GLXDisplay::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<SoftwareDisplay*, void (SoftwareDisplay::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<SoftwareDisplay*, void (SoftwareDisplay::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)1, mozilla::TimeStamp>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VsyncBridgeChild>, void (mozilla::gfx::VsyncBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VsyncBridgeChild*, void (mozilla::gfx::VsyncBridgeChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VsyncBridgeParent>, void (mozilla::gfx::VsyncBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VsyncBridgeParent*, void (mozilla::gfx::VsyncBridgeParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsIThread>, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRDisplayHost*, void (mozilla::gfx::VRDisplayHost::*)(mozilla::layers::SurfaceDescriptor const&, unsigned long, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::impl::VRControllerOpenVR*, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), true, (mozilla::RunnableKind)0, vr::IVRSystem*, unsigned int, double, double, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManager*, void (mozilla::gfx::VRManager::*)(mozilla::gfx::VRManagerPromise const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRThread*, void (mozilla::gfx::VRThread::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0, mozilla::TimeStamp>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRGPUParent*, void (mozilla::gfx::VRGPUParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VRGPUParent>, void (mozilla::gfx::VRGPUParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManagerChild*, void (mozilla::gfx::VRManagerChild::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManagerChild*, void (mozilla::gfx::VRManagerChild::*)(unsigned int, mozilla::dom::VREventObserver*), true, (mozilla::RunnableKind)0, unsigned int, RefPtr<mozilla::dom::VREventObserver> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VRManagerParent>, void (mozilla::gfx::VRManagerParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManagerParent*, void (mozilla::gfx::VRManagerParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRService*, void (mozilla::gfx::VRService::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> const&), true, (mozilla::RunnableKind)0, mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId), true, (mozilla::RunnableKind)0, mozilla::wr::WrWindowId>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >), true, (mozilla::RunnableKind)0, mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderTextureHostWrapper*, void (mozilla::wr::RenderTextureHostWrapper::*)(mozilla::wr::RenderTextureHost*), true, (mozilla::RunnableKind)0, mozilla::wr::RenderTextureHost*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(int, int, unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*), true, (mozilla::RunnableKind)0, int, int, unsigned int, nsTString<char16_t>, nsTString<char16_t>, nsIObserver*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, int, int, nsIObserver*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0, unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(nsIObserver*), true, (mozilla::RunnableKind)0, nsIObserver*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsGlobalWindowOuter*, void (nsGlobalWindowOuter::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsGlobalWindowInner>, void (nsGlobalWindowInner::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsGlobalWindowOuter>, void (nsGlobalWindowOuter::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsXBLBinding>, void (nsXBLBinding::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::EventSourceImpl*, void (mozilla::dom::EventSourceImpl::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ScreenOrientation*, void (mozilla::dom::ScreenOrientation::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsContentSink*, void (nsContentSink::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIDocument*, void (nsIDocument::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIDocument*, void (nsIDocument::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDocument*, void (nsDocument::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsRange*, void (nsRange::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsAttributeTextNode*, void (nsAttributeTextNode::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::Context::ThreadsafeHandle*, void (mozilla::dom::cache::Context::ThreadsafeHandle::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::Manager::CachePutAllAction*, void (mozilla::dom::cache::Manager::CachePutAllAction::*)(nsresult), false, (mozilla::RunnableKind)0, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::ReadStream::Inner*, void (mozilla::dom::cache::ReadStream::Inner::*)(), true, (mozilla::RunnableKind)1>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::CanvasRenderingContext2D*, void (mozilla::dom::CanvasRenderingContext2D::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::EventListenerService*, void (mozilla::EventListenerService::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLCanvasPrintState*, void (mozilla::dom::HTMLCanvasPrintState::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLCanvasElement*, void (mozilla::dom::HTMLCanvasElement::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::BlobCallback*, void (mozilla::dom::BlobCallback::*)(mozilla::dom::Blob*, char const*), true, (mozilla::RunnableKind)0, mozilla::dom::Blob*, char const*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLEmbedElement*, void (mozilla::dom::HTMLEmbedElement::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLImageElement*, void (mozilla::dom::HTMLImageElement::*)(bool), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLInputElement*, void (mozilla::dom::HTMLInputElement::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLLinkElement*, void (mozilla::dom::HTMLLinkElement::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::StreamSizeListener*, void (mozilla::dom::HTMLMediaElement::StreamSizeListener::*)(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>), true, (mozilla::RunnableKind)0, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::ChannelLoader*, void (mozilla::dom::HTMLMediaElement::ChannelLoader::*)(mozilla::dom::HTMLMediaElement*), true, (mozilla::RunnableKind)0, mozilla::dom::HTMLMediaElement*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::StreamListener*, void (mozilla::dom::HTMLMediaElement::StreamListener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement*, void (mozilla::dom::HTMLMediaElement::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement*, void (mozilla::dom::HTMLMediaElement::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::MediaStreamTrack*, void (mozilla::dom::MediaStreamTrack::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::DOMMediaStream>, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::MediaStreamTrack>, void (mozilla::dom::MediaStreamTrack::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLObjectElement*, void (mozilla::dom::HTMLObjectElement::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLStyleElement*, void (mozilla::dom::HTMLStyleElement::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLTrackElement*, void (mozilla::dom::HTMLTrackElement::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLTrackElement*, void (mozilla::dom::HTMLTrackElement::*)(nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, nsTString<char16_t> const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ImageDocument*, void (mozilla::dom::ImageDocument::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::TextTrackManager*, void (mozilla::dom::TextTrackManager::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<HTMLContentSink*, void (HTMLContentSink::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsHTMLDocument*, void (nsHTMLDocument::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsJSChannel*, void (nsJSChannel::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::BackgroundVideoDecodingPermissionObserver*, void (mozilla::BackgroundVideoDecodingPermissionObserver::*)() const, true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream::OwnedStreamListener*, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, mozilla::MediaStream*, int), true, (mozilla::RunnableKind)0, mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, RefPtr<mozilla::MediaStream>, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream*, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::MediaStreamTrack> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream::OwnedStreamListener*, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, mozilla::MediaStream*, int, int), true, (mozilla::RunnableKind)0, mozilla::MediaStreamGraph*, RefPtr<mozilla::MediaStream>, int, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream::PlaybackStreamListener*, void (mozilla::DOMMediaStream::PlaybackStreamListener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream*, void (mozilla::DOMMediaStream::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(bool), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChannelMediaResource*, void (mozilla::ChannelMediaResource::*)(bool), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChannelMediaResource*, void (mozilla::ChannelMediaResource::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::FileBlockCache*, void (mozilla::FileBlockCache::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(double), true, (mozilla::RunnableKind)0, double>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TimedMetadata>*, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(mozilla::TimedMetadata&&), true, (mozilla::RunnableKind)0, mozilla::TimedMetadata&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TimedMetadata>*, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<double>::Impl*, void (mozilla::Canonical<double>::Impl::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<double>*, void (mozilla::AbstractMirror<double>::*)(double const&), true, (mozilla::RunnableKind)0, double>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<bool>*, void (mozilla::AbstractMirror<bool>::*)(bool const&), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*, void (mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>::*)(mozilla::MediaDecoder::PlayState const&), true, (mozilla::RunnableKind)0, mozilla::MediaDecoder::PlayState>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*, void (mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), true, (mozilla::RunnableKind)0, nsMainThreadPtrHandle<nsIPrincipal> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<bool>::Impl*, void (mozilla::Canonical<bool>::Impl::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*, void (mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl*, void (mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader>, void (mozilla::MediaFormatReader::*)(already_AddRefed<mozilla::layers::KnowsCompositor>), true, (mozilla::RunnableKind)0, already_AddRefed<mozilla::layers::KnowsCompositor>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::media::TimeIntervals>*, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::media::TimeUnit>*, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<bool>*, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> > >, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeIntervals> >, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeUnit> >, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<bool> >, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(bool&&), true, (mozilla::RunnableKind)0, bool&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), true, (mozilla::RunnableKind)0, mozilla::MediaPlaybackEvent::EventType&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(mozilla::MediaDecoderOwner::NextFrameStatus&&), true, (mozilla::RunnableKind)0, mozilla::MediaDecoderOwner::NextFrameStatus&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(RefPtr<mozilla::AudioData>&&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::AudioData>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(RefPtr<mozilla::VideoData>&&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::VideoData>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*, void (mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::Maybe<mozilla::media::TimeUnit> const&), true, (mozilla::RunnableKind)0, mozilla::Maybe<mozilla::media::TimeUnit> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState> >, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<double> >, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> > >, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<bool> >, void (mozilla::AbstractMirror<bool>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::media::TimeUnit>*, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(mozilla::media::TimeUnit const&), true, (mozilla::RunnableKind)0, mozilla::media::TimeUnit>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>*, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<double>*, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >*, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(mozilla::MediaDecoder*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::MediaDecoder> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), true, (mozilla::RunnableKind)0, mozilla::MediaPlaybackEvent&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::media::TimeUnit>::Impl*, void (mozilla::Canonical<mozilla::media::TimeUnit>::Impl::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(mozilla::VideoDecodeMode), true, (mozilla::RunnableKind)0, mozilla::VideoDecodeMode>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaResult>*, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(mozilla::MediaResult&&), true, (mozilla::RunnableKind)0, mozilla::MediaResult&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaResult>*, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&), true, (mozilla::RunnableKind)0, nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(mozilla::DecoderDoctorEvent&&), true, (mozilla::RunnableKind)0, mozilla::DecoderDoctorEvent&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(bool), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::GetUserMediaWindowListener>, bool (mozilla::GetUserMediaWindowListener::*)(mozilla::SourceListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::SourceListener> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::SourceListener>, void (mozilla::SourceListener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::MediaRecorder>, void (mozilla::dom::MediaRecorder::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::MediaRecorder::Session*, void (mozilla::dom::MediaRecorder::Session::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaEncoder>, void (mozilla::MediaEncoder::*)(mozilla::MediaEncoderListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::media::TimeIntervals>*, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(mozilla::media::TimeIntervals const&), true, (mozilla::RunnableKind)0, mozilla::media::TimeIntervals>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(nsTArray<unsigned char>&&, nsTString<char16_t>&&), true, (mozilla::RunnableKind)0, nsTArray<unsigned char>&&, nsTString<char16_t>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(mozilla::TrackInfo::TrackType), true, (mozilla::RunnableKind)0, mozilla::TrackInfo::TrackType>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl*, void (mozilla::Canonical<mozilla::media::TimeIntervals>::Impl::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::GetUserMediaWindowListener*, void (mozilla::GetUserMediaWindowListener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::MediaStreamTrack::PrincipalHandleListener*, void (mozilla::dom::MediaStreamTrack::PrincipalHandleListener::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResource*, void (mozilla::MediaResource::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaTimer*, void (mozilla::MediaTimer::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaTimer*, void (mozilla::MediaTimer::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const, void (mozilla::MediaFormatReader::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const, nsresult (mozilla::MediaFormatReader::*)(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>), true, (mozilla::RunnableKind)0, mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const, void (mozilla::MediaFormatReader::*)(bool), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaEncoder>, void (mozilla::MediaEncoder::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaEncoder::EncoderListener*, void (mozilla::MediaEncoder::EncoderListener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(long), true, (mozilla::RunnableKind)0, long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(mozilla::AudioSegment&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::AudioSegment> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::MediaEncoder::EncoderListener> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(long), true, (mozilla::RunnableKind)0, long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(mozilla::VideoSegment&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::VideoSegment> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::MediaEncoder::EncoderListener> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaEncoderListener>, void (mozilla::MediaEncoderListener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(int), true, (mozilla::RunnableKind)0, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, unsigned int, NS_ConvertUTF8toUTF16>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, bool), true, (mozilla::RunnableKind)0, unsigned int, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsresult, nsTString<char> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, NS_ConvertUTF8toUTF16, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, mozilla::dom::MediaKeyStatus), true, (mozilla::RunnableKind)0, unsigned int, mozilla::dom::MediaKeyStatus>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, NS_ConvertUTF8toUTF16>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, long), true, (mozilla::RunnableKind)0, NS_ConvertUTF8toUTF16, long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const&, unsigned int const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const, unsigned int const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const, nsTString<char> const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const, unsigned int const, unsigned int const, nsTString<char> const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const, unsigned int const, nsTArray<unsigned char> const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const, nsTArray<mozilla::gmp::CDMKeyInformation> const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const&, double const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const, double const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, nsTString<char16_t>), true, (mozilla::RunnableKind)0, unsigned int, unsigned int, nsTString<char16_t> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsTArray<unsigned char> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, nsTString<char>, unsigned int, nsTArray<unsigned char> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int), true, (mozilla::RunnableKind)0, nsTString<char>, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTString<char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsTString<char> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::GMPContentParent>, void (mozilla::gmp::GMPContentParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::GMPCrashHelper*, void (mozilla::GMPCrashHelper::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::GeckoMediaPluginServiceParent>, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(RefPtr<mozilla::gmp::GMPParent> const&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::gmp::GMPParent> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPParent*, void (mozilla::gmp::GMPParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPSyncRunnable*, void (mozilla::gmp::GMPSyncRunnable::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::GMPRunnable>, void (mozilla::gmp::GMPRunnable::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPRunnable*, void (mozilla::gmp::GMPRunnable::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPProcessParent*, void (mozilla::gmp::GMPProcessParent::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(long), true, (mozilla::RunnableKind)0, long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(nsTSubstring<char> const&, mozilla::OriginAttributesPattern const&), true, (mozilla::RunnableKind)0, nsTString<char>, mozilla::OriginAttributesPattern>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPServiceParent*, void (mozilla::gmp::GMPServiceParent::*)(mozilla::Monitor*, bool*), false, (mozilla::RunnableKind)0, mozilla::Monitor*, bool*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPVideoDecoderChild*, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoDecoderChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPVideoEncoderChild*, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoEncoderChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::VideoDecoderManagerParent>, void (mozilla::dom::VideoDecoderManagerParent::*)(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<long>*, void (mozilla::detail::Listener<long>::*)(long&&), true, (mozilla::RunnableKind)0, long&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<long>*, void (mozilla::detail::Listener<long>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DecodedStreamGraphListener*, void (mozilla::DecodedStreamGraphListener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaStream*, void (mozilla::MediaStream::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSourceDemuxer*, void (mozilla::MediaSourceDemuxer::*)(RefPtr<mozilla::TrackBuffersManager>&&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::TrackBuffersManager>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::TrackBuffersManager*, void (mozilla::TrackBuffersManager::*)(mozilla::SourceBufferTask*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::SourceBufferTask> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::TrackBuffersManager*, void (mozilla::TrackBuffersManager::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSourceDecoder*, void (mozilla::MediaSourceDecoder::*)(long), true, (mozilla::RunnableKind)0, long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(mozilla::TrackInfo::TrackType&&), true, (mozilla::RunnableKind)0, mozilla::TrackInfo::TrackType&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, nsTString<char> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, int const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, nsTString<char>, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, mozilla::ipc::PrincipalInfo const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, nsTString<char>, mozilla::ipc::PrincipalInfo const&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&, mozilla::camera::VideoCaptureCapability const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, int, mozilla::camera::VideoCaptureCapability>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSystemResourceManager*, void (mozilla::MediaSystemResourceManager::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSystemResourceManager*, void (mozilla::MediaSystemResourceManager::*)(unsigned int, bool), true, (mozilla::RunnableKind)0, unsigned int, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::AudioDestinationNode*, void (mozilla::dom::AudioDestinationNode::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecodeTask*, void (mozilla::MediaDecodeTask::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<WebCore::ReverbConvolver*, void (WebCore::ReverbConvolver::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::nsFakeSynthServices*, void (mozilla::dom::nsFakeSynthServices::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SpeechDispatcherService*, void (mozilla::dom::SpeechDispatcherService::*)(unsigned int, unsigned int), true, (mozilla::RunnableKind)0, unsigned int, SPDNotificationType>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SpeechDispatcherService*, void (mozilla::dom::SpeechDispatcherService::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::SpeechDispatcherCallback>, bool (mozilla::dom::SpeechDispatcherCallback::*)(SPDNotificationType), true, (mozilla::RunnableKind)0, SPDNotificationType>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::NotificationPermissionRequest*, nsresult (mozilla::dom::NotificationPermissionRequest::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::quota::(anonymous namespace)::Quota*, void (mozilla::dom::quota::(anonymous namespace)::Quota::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::quota::QuotaManager*, void (mozilla::dom::quota::QuotaManager::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::LocalStorageCacheBridge*, void (mozilla::dom::LocalStorageCacheBridge::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBThread*, void (mozilla::dom::StorageDBThread::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::CacheParentBridge*, void (mozilla::dom::StorageDBParent::CacheParentBridge::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::UsageParentBridge*, void (mozilla::dom::StorageDBParent::UsageParentBridge::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::ObserverSink*, void (mozilla::dom::StorageDBParent::ObserverSink::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::ObserverSink*, void (mozilla::dom::StorageDBParent::ObserverSink::*)(nsTString<char> const&, nsTString<char16_t> const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, nsTString<char>, nsTString<char16_t>, nsTString<char> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SVGFEImageElement*, void (mozilla::dom::SVGFEImageElement::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SVGImageElement*, void (mozilla::dom::SVGImageElement::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SVGStyleElement*, void (mozilla::dom::SVGStyleElement::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool), false, (mozilla::RunnableKind)1, gfxSurfaceType, mozilla::plugins::NPRemoteWindow, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(), false, (mozilla::RunnableKind)1>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerChild*, void (mozilla::plugins::FunctionBrokerChild::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerChild*, void (mozilla::plugins::FunctionBrokerChild::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerParent*, void (mozilla::plugins::FunctionBrokerParent::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerParent*, void (mozilla::plugins::FunctionBrokerParent::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginProcessParent*, void (mozilla::plugins::PluginProcessParent::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: ActorsParent.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::Database*, void (mozilla::dom::indexedDB::(anonymous namespace)::Database::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: ActorsParent.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp*, void (mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper*, void (mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::IDBDatabase*, void (mozilla::dom::IDBDatabase::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentChild*, void (mozilla::dom::ContentChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char> const&, nsTString<char16_t> const&), false, (mozilla::RunnableKind)0, mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char>, nsTString<char16_t> >::~RunnableMethodImpl()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(unsigned int), false, (mozilla::RunnableKind)0, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(bool), false, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&>::~RunnableMethodImpl()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch const&), false, (mozilla::RunnableKind)0, mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch>::~RunnableMethodImpl()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentBridgeChild*, void (mozilla::dom::ContentBridgeChild::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentBridgeParent*, void (mozilla::dom::ContentBridgeParent::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentParent*, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), true, (mozilla::RunnableKind)0, mozilla::dom::ContentParent::ShutDownMethod>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::PreallocatedProcessManagerImpl*, void (mozilla::PreallocatedProcessManagerImpl::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ipc::WritableSharedMap*, void (mozilla::dom::ipc::WritableSharedMap::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable> const, void (mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FHIDTokenManager*, void (mozilla::dom::U2FHIDTokenManager::*)(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(nsTString<char16_t>), true, (mozilla::RunnableKind)0, nsTString<char16_t> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0, unsigned long, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(unsigned long), true, (mozilla::RunnableKind)0, unsigned long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsBindingManager*, void (nsBindingManager::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XMLStylesheetProcessingInstruction*, void (mozilla::dom::XMLStylesheetProcessingInstruction::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsXMLContentSink*, void (nsXMLContentSink::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsXMLPrettyPrinter*, void (nsXMLPrettyPrinter::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XULDocument*, void (mozilla::dom::XULDocument::*)(mozilla::dom::Element*, int, nsAtom*), true, (mozilla::RunnableKind)0, mozilla::dom::Element*, int, nsAtom*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XULDocument*, void (mozilla::dom::XULDocument::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistDocumentReceiver>, nsresult (nsIWebBrowserPersistDocumentReceiver::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistResourceVisitor>, nsresult (nsIWebBrowserPersistResourceVisitor::*)(nsIWebBrowserPersistDocument*, nsresult), true, (mozilla::RunnableKind)0, nsCOMPtr<nsIWebBrowserPersistDocument>, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistWriteCompletion>, nsresult (nsIWebBrowserPersistWriteCompletion::*)(nsIWebBrowserPersistDocument*, nsIOutputStream*, nsTSubstring<char> const&, nsresult), true, (mozilla::RunnableKind)0, nsCOMPtr<nsIWebBrowserPersistDocument>, nsCOMPtr<nsIOutputStream>, nsTString<char>, nsresult>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWebBrowserPersist*, void (nsWebBrowserPersist::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsWebBrowserPersist>, void (nsWebBrowserPersist::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWebBrowserPersist*, nsresult (nsWebBrowserPersist::*)(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XMLHttpRequestMainThread*, void (mozilla::dom::XMLHttpRequestMainThread::*)(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType), true, (mozilla::RunnableKind)0, mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::WorkletThread*, nsresult (nsThread::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIScriptElement*, nsresult (nsIScriptElement::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ScriptLoader*, void (mozilla::dom::ScriptLoader::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::WaitUntilHandler*, void (mozilla::dom::(anonymous namespace)::WaitUntilHandler::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback*, void (mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback::*)(bool), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::PushErrorReporter*, void (mozilla::dom::(anonymous namespace)::PushErrorReporter::*)(unsigned short), true, (mozilla::RunnableKind)0, unsigned short>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::ServiceWorkerRegistrar>, void (mozilla::dom::ServiceWorkerRegistrar::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::WorkerListener*, void (mozilla::dom::WorkerListener::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), true, (mozilla::RunnableKind)1, mozilla::dom::ServiceWorkerRegistrationDescriptor>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerJob*, void (mozilla::dom::ServiceWorkerJob::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerProxy*, void (mozilla::dom::ServiceWorkerProxy::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrar*, void (mozilla::dom::ServiceWorkerRegistrar::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistration*, void (mozilla::dom::ServiceWorkerRegistration::*)(), true, (mozilla::RunnableKind)1>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationMainThread*, void (mozilla::dom::ServiceWorkerRegistrationMainThread::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::WorkerListener>, void (mozilla::dom::WorkerListener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::WorkerListener>, void (mozilla::dom::WorkerListener::*)(), true, (mozilla::RunnableKind)1>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationInfo*, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationInfo*, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(bool), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationProxy*, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationProxy*, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), true, (mozilla::RunnableKind)0, mozilla::dom::ServiceWorkerRegistrationDescriptor>::~RunnableMethodImpl()
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::Connection*, void (mozilla::dom::(anonymous namespace)::Connection::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::OpenOp*, void (mozilla::dom::(anonymous namespace)::OpenOp::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsISDBCallback>, nsresult (nsISDBCallback::*)(nsISDBRequest*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::SDBRequest> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationAvailability*, void (mozilla::dom::PresentationAvailability::*)(bool), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationConnection*, nsresult (mozilla::dom::PresentationConnection::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationDeviceManager*, nsresult (mozilla::dom::PresentationDeviceManager::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationRequest*, void (mozilla::dom::PresentationRequest::*)(nsTSubstring<char16_t> const&, mozilla::dom::Promise*), true, (mozilla::RunnableKind)0, nsTString<char16_t>, RefPtr<mozilla::dom::Promise> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationControllingInfo*, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIPresentationSessionTransportBuilderListener>, nsresult (nsIPresentationSessionTransportBuilderListener::*)(nsIPresentationSessionTransport*), true, (mozilla::RunnableKind)0, nsIPresentationSessionTransport*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationTCPSessionTransport*, void (mozilla::dom::PresentationTCPSessionTransport::*)(mozilla::dom::PresentationTCPSessionTransport::ReadyState), true, (mozilla::RunnableKind)0, mozilla::dom::PresentationTCPSessionTransport::ReadyState>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::presentation::MulticastDNSDeviceProvider*, nsresult (mozilla::dom::presentation::MulticastDNSDeviceProvider::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(float), true, (mozilla::RunnableKind)0, float>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), true, (mozilla::RunnableKind)0, mozilla::layers::KeyboardMap>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0, unsigned long, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByLRef<nsTArray<unsigned int> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::CompositorVsyncDispatcher*, void (mozilla::CompositorVsyncDispatcher::*)(bool), true, (mozilla::RunnableKind)0, bool>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::RefreshTimerVsyncDispatcher*, void (mozilla::RefreshTimerVsyncDispatcher::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWindow*, void (nsWindow::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDeviceContextSpecGTK*, void (nsDeviceContextSpecGTK::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::HTMLEditRules*, void (mozilla::HTMLEditRules::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::HTMLEditor*, void (mozilla::HTMLEditor::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::FontFaceSet*, void (mozilla::dom::FontFaceSet::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver*, void (mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsRefreshDriver*, void (nsRefreshDriver::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::PresShell*, void (mozilla::PresShell::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<ZoomConstraintsClient*, void (ZoomConstraintsClient::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsPresContext*, void (nsPresContext::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIDateTimeInputArea>, nsresult (nsIDateTimeInputArea::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layout::VsyncParent*, void (mozilla::layout::VsyncParent::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0, mozilla::TimeStamp>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDocShell*, void (nsDocShell::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChildProfilerController*, void (mozilla::ChildProfilerController::*)(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChildProfilerController*, void (mozilla::ChildProfilerController::*)(nsTString<char>*), true, (mozilla::RunnableKind)0, nsTString<char>*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::DataStorage>, void (mozilla::DataStorage::*)(char const*), true, (mozilla::RunnableKind)0, char const*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DataStorage*, void (mozilla::DataStorage::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::psm::PSMContentStreamListener*, void (mozilla::psm::PSMContentStreamListener::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::extensions::StreamFilter*, void (mozilla::extensions::StreamFilter::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::extensions::StreamFilterParent>, void (mozilla::extensions::StreamFilterParent::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::extensions::StreamFilterParent*, void (mozilla::ipc::IToplevelProtocol::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::extensions::StreamFilterParent*, void (mozilla::extensions::StreamFilterParent::*)(nsTArray<unsigned char>&&), true, (mozilla::RunnableKind)0, nsTArray<unsigned char>&&>::~RunnableMethodImpl()
Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::places::(anonymous namespace)::VisitedQuery>, nsresult (mozilla::places::(anonymous namespace)::VisitedQuery::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::places::Database*, nsresult (mozilla::places::Database::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::places::AsyncFetchAndSetIconForPage*, nsresult (mozilla::places::AsyncFetchAndSetIconForPage::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::places::AsyncReplaceFaviconData*, nsresult (mozilla::places::AsyncReplaceFaviconData::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsNavHistory*, void (nsNavHistory::*)(nsTSubstring<char> const&, int, nsTSubstring<char> const&, bool, long), true, (mozilla::RunnableKind)0, nsTString<char>, int, nsTString<char>, bool, long>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsUrlClassifierDBServiceWorker>, void (nsUrlClassifierDBServiceWorker::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsUrlClassifierDBServiceWorker> const, nsresult (nsUrlClassifierDBServiceWorker::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsFormFillController*, void (nsFormFillController::*)(mozilla::dom::HTMLInputElement*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::HTMLInputElement> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsNativeAppSupportUnix*, void (nsNativeAppSupportUnix::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsUpdateProcessor*, void (nsUpdateProcessor::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher*, void (mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, void (nsBar::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar const>, void (nsBar::*)() const, true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, nsresult (nsBar::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, void (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0, RefPtr<nsFoo> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, nsresult (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0, RefPtr<nsFoo> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, void (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0, nsFoo*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, nsresult (nsBar::*)(char*), true, (mozilla::RunnableKind)0, char*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IdleObject*, void (IdleObject::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IdleObject*, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsFoo>, nsresult (nsFoo::*)(bool*), true, (mozilla::RunnableKind)0, bool*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)2>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(char const*, unsigned int), true, (mozilla::RunnableKind)2, char const*, unsigned int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectWithoutSetDeadline>, void (IdleObjectWithoutSetDeadline::*)(), true, (mozilla::RunnableKind)2>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectInheritedSetDeadline>, void (IdleObjectInheritedSetDeadline::*)(), true, (mozilla::RunnableKind)2>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int), true, (mozilla::RunnableKind)0, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObjectNonRefCountedBase::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int, int), true, (mozilla::RunnableKind)0, int, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int), true, (mozilla::RunnableKind)0, int, int, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int, int), true, (mozilla::RunnableKind)0, int, int, int, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int*), true, (mozilla::RunnableKind)0, int*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), true, (mozilla::RunnableKind)0, int const*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int*), true, (mozilla::RunnableKind)0, StoreCopyPassByPtr<int> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), true, (mozilla::RunnableKind)0, StoreCopyPassByConstPtr<int> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int&), true, (mozilla::RunnableKind)0, int&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int&&), true, (mozilla::RunnableKind)0, int&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), true, (mozilla::RunnableKind)0, StoreCopyPassByValue<TestThreadUtils::Spy> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<TestThreadUtils::Spy> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&), true, (mozilla::RunnableKind)0, TestThreadUtils::Spy&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), true, (mozilla::RunnableKind)0, TestThreadUtils::Spy*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const*), true, (mozilla::RunnableKind)0, TestThreadUtils::Spy const*>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<CDMStorageTest*, void (CDMStorageTest::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<CDMStorageTest*, void (CDMStorageTest::*)(nsTString<char>), true, (mozilla::RunnableKind)0, nsTString<char> >::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<CDMStorageTest*, void (CDMStorageTest::*)(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPTestMonitor*, void (GMPTestMonitor::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPTestRunner*, void (GMPTestRunner::*)(GMPTestMonitor&), true, (mozilla::RunnableKind)0, GMPTestMonitor&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPRemoveTest*, void (GMPRemoveTest::*)(nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**), false, (mozilla::RunnableKind)0, nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPVideoDecoderProxy*, nsresult (GMPVideoDecoderProxy::*)(GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int), false, (mozilla::RunnableKind)0, GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPVideoDecoderProxy*, void (GMPVideoDecoderProxy::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPRemoveTest*, void (GMPRemoveTest::*)(), false, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<int>*, void (mozilla::detail::Listener<int>::*)(int&&), true, (mozilla::RunnableKind)0, int&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<int>*, void (mozilla::detail::Listener<int>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<SomeEvent>*, void (mozilla::detail::Listener<SomeEvent>::*)(SomeEvent&&), true, (mozilla::RunnableKind)0, SomeEvent&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<SomeEvent>*, void (mozilla::detail::Listener<SomeEvent>::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<RefCounter> >*, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(RefPtr<RefCounter>&&), true, (mozilla::RunnableKind)0, RefPtr<RefCounter>&&>::~RunnableMethodImpl()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<RefCounter> >*, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(), true, (mozilla::RunnableKind)0>::~RunnableMethodImpl()
1204
  static void TimedOut(nsITimer* aTimer, void* aClosure)
1205
0
  {
1206
0
    static_assert(IsIdle(Kind), "Don't use me!");
1207
0
    RefPtr<IdleRunnable> r = static_cast<IdleRunnable*>(aClosure);
1208
0
    r->SetDeadline(TimeStamp());
1209
0
    r->Run();
1210
0
    r->Cancel();
1211
0
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsStringBundleBase*, nsresult (nsStringBundleBase::*)(), true, (mozilla::RunnableKind)2>::TimedOut(nsITimer*, void*)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IdleObject*, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::TimedOut(nsITimer*, void*)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)2>::TimedOut(nsITimer*, void*)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::TimedOut(nsITimer*, void*)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(char const*, unsigned int), true, (mozilla::RunnableKind)2, char const*, unsigned int>::TimedOut(nsITimer*, void*)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectWithoutSetDeadline>, void (IdleObjectWithoutSetDeadline::*)(), true, (mozilla::RunnableKind)2>::TimedOut(nsITimer*, void*)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectInheritedSetDeadline>, void (IdleObjectInheritedSetDeadline::*)(), true, (mozilla::RunnableKind)2>::TimedOut(nsITimer*, void*)
1212
public:
1213
  template<typename ForwardedPtrType, typename... Args>
1214
  explicit RunnableMethodImpl(const char* aName, ForwardedPtrType&& aObj,
1215
                              Method aMethod, Args&&... aArgs)
1216
    : BaseType(aName)
1217
    , mReceiver(std::forward<ForwardedPtrType>(aObj))
1218
    , mMethod(aMethod)
1219
    , mArgs(std::forward<Args>(aArgs)...)
1220
19
  {
1221
19
    static_assert(sizeof...(Storages) == sizeof...(Args), "Storages and Args should have equal sizes");
1222
19
  }
mozilla::detail::RunnableMethodImpl<FdWatcher*, void (FdWatcher::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<FdWatcher*>(char const*, FdWatcher*&&, void (FdWatcher::*)())
Line
Count
Source
1220
3
  {
1221
3
    static_assert(sizeof...(Storages) == sizeof...(Args), "Storages and Args should have equal sizes");
1222
3
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsMemoryReporterManager*, nsresult (nsMemoryReporterManager::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsMemoryReporterManager*>(char const*, nsMemoryReporterManager*&&, nsresult (nsMemoryReporterManager::*)())
mozilla::detail::RunnableMethodImpl<RefPtr<nsObserverService>, void (nsObserverService::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsObserverService>&>(char const*, RefPtr<nsObserverService>&, void (nsObserverService::*)())
Line
Count
Source
1220
3
  {
1221
3
    static_assert(sizeof...(Storages) == sizeof...(Args), "Storages and Args should have equal sizes");
1222
3
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::EventTargetWrapper*, void (mozilla::EventTargetWrapper::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::EventTargetWrapper*>(char const*, mozilla::EventTargetWrapper*&&, void (mozilla::EventTargetWrapper::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::LazyIdleThread*, void (mozilla::LazyIdleThread::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::LazyIdleThread*>(char const*, mozilla::LazyIdleThread*&&, void (mozilla::LazyIdleThread::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::LazyIdleThread*, void (mozilla::LazyIdleThread::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::LazyIdleThread*>(char const*, mozilla::LazyIdleThread*&&, void (mozilla::LazyIdleThread::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIBlockThreadedExecutionCallback*, nsresult (nsIBlockThreadedExecutionCallback::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsIBlockThreadedExecutionCallback*&>(char const*, nsIBlockThreadedExecutionCallback*&, nsresult (nsIBlockThreadedExecutionCallback::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIThreadPool>, nsresult (nsIThreadPool::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsCOMPtr<nsIThreadPool>&>(char const*, nsCOMPtr<nsIThreadPool>&, nsresult (nsIThreadPool::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsProcess>, void (nsProcess::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsProcess>&>(char const*, RefPtr<nsProcess>&, void (nsProcess::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIThread*, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsIThread*&>(char const*, nsIThread*&, nsresult (nsIThread::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Preferences*, nsresult (mozilla::Preferences::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::Preferences*>(char const*, mozilla::Preferences*&&, nsresult (mozilla::Preferences::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsStringBundleBase*, nsresult (nsStringBundleBase::*)(), true, (mozilla::RunnableKind)2>::RunnableMethodImpl<nsStringBundleBase*>(char const*, nsStringBundleBase*&&, nsresult (nsStringBundleBase::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::BackgroundFileSaver*, nsresult (mozilla::net::BackgroundFileSaver::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::BackgroundFileSaver*>(char const*, mozilla::net::BackgroundFileSaver*&&, nsresult (mozilla::net::BackgroundFileSaver::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::BackgroundFileSaverStreamListener*, nsresult (mozilla::net::BackgroundFileSaverStreamListener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::BackgroundFileSaverStreamListener*&>(char const*, mozilla::net::BackgroundFileSaverStreamListener*&, nsresult (mozilla::net::BackgroundFileSaverStreamListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::ConnectionData> >::RunnableMethodImpl<mozilla::net::Dashboard*&, mozilla::net::ConnectionData*>(char const*, mozilla::net::Dashboard*&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), mozilla::net::ConnectionData*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::LookupHelper*, nsresult (mozilla::net::LookupHelper::*)(mozilla::net::LookupArgument*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::LookupArgument> >::RunnableMethodImpl<mozilla::net::LookupHelper*, RefPtr<mozilla::net::LookupArgument>&>(char const*, mozilla::net::LookupHelper*&&, nsresult (mozilla::net::LookupHelper::*)(mozilla::net::LookupArgument*), RefPtr<mozilla::net::LookupArgument>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::SocketData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::SocketData> >::RunnableMethodImpl<mozilla::net::Dashboard*, RefPtr<mozilla::net::SocketData>&>(char const*, mozilla::net::Dashboard*&&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::SocketData*), RefPtr<mozilla::net::SocketData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::HttpData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::HttpData> >::RunnableMethodImpl<mozilla::net::Dashboard*, RefPtr<mozilla::net::HttpData>&>(char const*, mozilla::net::Dashboard*&&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::HttpData*), RefPtr<mozilla::net::HttpData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::WebSocketRequest*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::WebSocketRequest> >::RunnableMethodImpl<mozilla::net::Dashboard*, RefPtr<mozilla::net::WebSocketRequest>&>(char const*, mozilla::net::Dashboard*&&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::WebSocketRequest*), RefPtr<mozilla::net::WebSocketRequest>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::DnsData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::DnsData> >::RunnableMethodImpl<mozilla::net::Dashboard*, RefPtr<mozilla::net::DnsData>&>(char const*, mozilla::net::Dashboard*&&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::DnsData*), RefPtr<mozilla::net::DnsData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::RcwnData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::RcwnData> >::RunnableMethodImpl<mozilla::net::Dashboard*, RefPtr<mozilla::net::RcwnData>&>(char const*, mozilla::net::Dashboard*&&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::RcwnData*), RefPtr<mozilla::net::RcwnData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::ConnectionData> >::RunnableMethodImpl<mozilla::net::Dashboard*, RefPtr<mozilla::net::ConnectionData>&>(char const*, mozilla::net::Dashboard*&&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), RefPtr<mozilla::net::ConnectionData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsAsyncStreamCopier>, void (nsAsyncStreamCopier::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsAsyncStreamCopier>&>(char const*, RefPtr<nsAsyncStreamCopier>&, void (nsAsyncStreamCopier::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsICaptivePortalService>, nsresult (nsICaptivePortalService::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsCOMPtr<nsICaptivePortalService>&>(char const*, nsCOMPtr<nsICaptivePortalService>&, nsresult (nsICaptivePortalService::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsInputStreamPump*, nsresult (nsInputStreamPump::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsInputStreamPump*>(char const*, nsInputStreamPump*&&, nsresult (nsInputStreamPump::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsPACMan*, void (mozilla::net::nsPACMan::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::nsPACMan*>(char const*, mozilla::net::nsPACMan*&&, void (mozilla::net::nsPACMan::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsServerSocket*, void (mozilla::net::nsServerSocket::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::nsServerSocket*&>(char const*, mozilla::net::nsServerSocket*&, void (mozilla::net::nsServerSocket::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsProtocolProxyService*, nsresult (mozilla::net::nsProtocolProxyService::*)(bool, bool, nsresult, nsTSubstring<char> const&), false, (mozilla::RunnableKind)1, bool, bool, nsresult, nsTString<char> >::RunnableMethodImpl<mozilla::net::nsProtocolProxyService*&, bool&, bool&, nsresult&, nsTString<char>&>(char const*, mozilla::net::nsProtocolProxyService*&, nsresult (mozilla::net::nsProtocolProxyService::*)(bool, bool, nsresult, nsTSubstring<char> const&), bool&, bool&, nsresult&, nsTString<char>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsServerSocket*, void (mozilla::net::nsServerSocket::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::nsServerSocket*>(char const*, mozilla::net::nsServerSocket*&&, void (mozilla::net::nsServerSocket::*)())
mozilla::detail::RunnableMethodImpl<mozilla::net::nsSocketTransportService*, void (mozilla::net::nsSocketTransportService::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::nsSocketTransportService*>(char const*, mozilla::net::nsSocketTransportService*&&, void (mozilla::net::nsSocketTransportService::*)())
Line
Count
Source
1220
7
  {
1221
7
    static_assert(sizeof...(Storages) == sizeof...(Args), "Storages and Args should have equal sizes");
1222
7
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsUDPSocket*, void (mozilla::net::nsUDPSocket::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::nsUDPSocket*&>(char const*, mozilla::net::nsUDPSocket*&, void (mozilla::net::nsUDPSocket::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsUDPSocket*, void (mozilla::net::nsUDPSocket::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::nsUDPSocket*>(char const*, mozilla::net::nsUDPSocket*&&, void (mozilla::net::nsUDPSocket::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsHostResolver*, void (nsHostResolver::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsHostResolver*>(char const*, nsHostResolver*&&, void (nsHostResolver::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::DNSRequestChild*, void (mozilla::net::DNSRequestChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::DNSRequestChild*>(char const*, mozilla::net::DNSRequestChild*&&, void (mozilla::net::DNSRequestChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCacheService*, void (nsCacheService::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsCacheService*>(char const*, nsCacheService*&&, void (nsCacheService::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheEntry*, void (mozilla::net::CacheEntry::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::CacheEntry*>(char const*, mozilla::net::CacheEntry*&&, void (mozilla::net::CacheEntry::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheEntry*, void (mozilla::net::CacheEntry::*)(double), true, (mozilla::RunnableKind)0, double>::RunnableMethodImpl<mozilla::net::CacheEntry*, double&>(char const*, mozilla::net::CacheEntry*&&, void (mozilla::net::CacheEntry::*)(double), double&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileChunk*, unsigned int (mozilla::net::CacheFileChunk::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::CacheFileChunk*>(char const*, mozilla::net::CacheFileChunk*&&, unsigned int (mozilla::net::CacheFileChunk::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileContextEvictor*, nsresult (mozilla::net::CacheFileContextEvictor::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::CacheFileContextEvictor*>(char const*, mozilla::net::CacheFileContextEvictor*&&, nsresult (mozilla::net::CacheFileContextEvictor::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileHandle*, unsigned int (mozilla::net::CacheFileHandle::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::CacheFileHandle*>(char const*, mozilla::net::CacheFileHandle*&&, unsigned int (mozilla::net::CacheFileHandle::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::CacheFileIOManager>, nsresult (mozilla::net::CacheFileIOManager::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::net::CacheFileIOManager>&>(char const*, RefPtr<mozilla::net::CacheFileIOManager>&, nsresult (mozilla::net::CacheFileIOManager::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileIOManager*, nsresult (mozilla::net::CacheFileIOManager::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::CacheFileIOManager*>(char const*, mozilla::net::CacheFileIOManager*&&, nsresult (mozilla::net::CacheFileIOManager::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::CacheFileIOManager>, nsresult (mozilla::net::CacheFileIOManager::*)(nsILoadContextInfo*, bool, nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, nsCOMPtr<nsILoadContextInfo>, bool, nsTString<char16_t> >::RunnableMethodImpl<RefPtr<mozilla::net::CacheFileIOManager>&, nsILoadContextInfo*&, bool&, nsTSubstring<char16_t> const&>(char const*, RefPtr<mozilla::net::CacheFileIOManager>&, nsresult (mozilla::net::CacheFileIOManager::*)(nsILoadContextInfo*, bool, nsTSubstring<char16_t> const&), nsILoadContextInfo*&, bool&, nsTSubstring<char16_t> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::CacheIndex>, void (mozilla::net::CacheIndex::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::net::CacheIndex>&>(char const*, RefPtr<mozilla::net::CacheIndex>&, void (mozilla::net::CacheIndex::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheObserver*, void (mozilla::net::CacheObserver::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::CacheObserver*&>(char const*, mozilla::net::CacheObserver*&, void (mozilla::net::CacheObserver::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheStorageService*, void (mozilla::net::CacheStorageService::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::CacheStorageService*>(char const*, mozilla::net::CacheStorageService*&&, void (mozilla::net::CacheStorageService::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsAboutCache::Channel*, void (nsAboutCache::Channel::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsAboutCache::Channel*>(char const*, nsAboutCache::Channel*&&, void (nsAboutCache::Channel::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsFileUploadContentStream*, void (nsFileUploadContentStream::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsFileUploadContentStream*>(char const*, nsFileUploadContentStream*&&, void (nsFileUploadContentStream::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::FTPChannelParent*, void (mozilla::net::FTPChannelParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::FTPChannelParent*>(char const*, mozilla::net::FTPChannelParent*&&, void (mozilla::net::FTPChannelParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::nsHttpConnectionMgr>, nsresult (mozilla::net::nsHttpConnectionMgr::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::net::nsHttpConnectionMgr>&>(char const*, RefPtr<mozilla::net::nsHttpConnectionMgr>&, nsresult (mozilla::net::nsHttpConnectionMgr::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::AltSvcMapping*, void (mozilla::net::AltSvcMapping::*)(nsTString<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::RunnableMethodImpl<mozilla::net::AltSvcMapping*, nsTString<char>&>(char const*, mozilla::net::AltSvcMapping*&&, void (mozilla::net::AltSvcMapping::*)(nsTString<char> const&), nsTString<char>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Http2Session*, void (mozilla::net::Http2Session::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::Http2Session*>(char const*, mozilla::net::Http2Session*&&, void (mozilla::net::Http2Session::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const>::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&>(char const*, mozilla::net::HttpBackgroundChannelChild*&&, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&), true, (mozilla::RunnableKind)0, nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::TimeStamp const, mozilla::net::nsHttpHeaderArray const>::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&>(char const*, mozilla::net::HttpBackgroundChannelChild*&&, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&), nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(long const&, long const&), true, (mozilla::RunnableKind)0, long const, long const>::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, long const&, long const&>(char const*, mozilla::net::HttpBackgroundChannelChild*&&, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(long const&, long const&), long const&, long const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&), true, (mozilla::RunnableKind)0, nsresult const>::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, nsresult const&>(char const*, mozilla::net::HttpBackgroundChannelChild*&&, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&), nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*>(char const*, mozilla::net::HttpBackgroundChannelChild*&&, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const>::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&), true, (mozilla::RunnableKind)0, nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::net::nsHttpHeaderArray const>::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&), nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(long const&, long const&), true, (mozilla::RunnableKind)0, long const, long const>::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, long const&, long const&>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)(long const&, long const&), long const&, long const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&), true, (mozilla::RunnableKind)0, nsresult const>::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, nsresult const&>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&), nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool&>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)(bool), bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> const, nsTString<char> const, nsTString<char> const>::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBaseChannel*, void (mozilla::net::HttpBaseChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::RunnableMethodImpl<mozilla::net::HttpBaseChannel*, nsresult&>(char const*, mozilla::net::HttpBaseChannel*&&, void (mozilla::net::HttpBaseChannel::*)(nsresult), nsresult&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::HttpChannelChild*&>(char const*, mozilla::net::HttpChannelChild*&, void (mozilla::net::HttpChannelChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, unsigned int (mozilla::net::HttpChannelChild::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::HttpChannelChild*>(char const*, mozilla::net::HttpChannelChild*&&, unsigned int (mozilla::net::HttpChannelChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::HttpBackgroundChannelChild>, void (mozilla::net::HttpBackgroundChannelChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::net::HttpBackgroundChannelChild>&>(char const*, RefPtr<mozilla::net::HttpBackgroundChannelChild>&, void (mozilla::net::HttpBackgroundChannelChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::HttpChannelChild*>(char const*, mozilla::net::HttpChannelChild*&&, void (mozilla::net::HttpChannelChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpBaseChannel::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> const, nsTString<char> const, nsTString<char> const>::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsTString<char> const&, nsTString<char> const&, nsTString<char> const&>(char const*, mozilla::net::HttpChannelChild*&&, nsresult (mozilla::net::HttpBaseChannel::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), nsTString<char> const&, nsTString<char> const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpChannelChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::HttpChannelChild*>(char const*, mozilla::net::HttpChannelChild*&&, nsresult (mozilla::net::HttpChannelChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpChannelChild::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult const&>(char const*, mozilla::net::HttpChannelChild*&&, nsresult (mozilla::net::HttpChannelChild::*)(nsresult), nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::HttpBackgroundChannelChild>, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::HttpChannelChild> >::RunnableMethodImpl<RefPtr<mozilla::net::HttpBackgroundChannelChild>&, RefPtr<mozilla::net::HttpChannelChild> >(char const*, RefPtr<mozilla::net::HttpBackgroundChannelChild>&, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), RefPtr<mozilla::net::HttpChannelChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(nsresult const&), true, (mozilla::RunnableKind)0, nsresult>::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult const&>(char const*, mozilla::net::HttpChannelChild*&&, void (mozilla::net::HttpChannelChild::*)(nsresult const&), nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::HttpBackgroundChannelChild>, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::HttpChannelChild> >::RunnableMethodImpl<RefPtr<mozilla::net::HttpBackgroundChannelChild>&, RefPtr<mozilla::net::HttpChannelChild>&>(char const*, RefPtr<mozilla::net::HttpBackgroundChannelChild>&, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), RefPtr<mozilla::net::HttpChannelChild>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::HttpChannelChild*>(char const*, mozilla::net::HttpChannelChild*&&, void (mozilla::net::HttpChannelChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpBaseChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult&>(char const*, mozilla::net::HttpChannelChild*&&, void (mozilla::net::HttpBaseChannel::*)(nsresult), nsresult&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelParent*, void (mozilla::net::HttpChannelParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::HttpChannelParent*>(char const*, mozilla::net::HttpChannelParent*&&, void (mozilla::net::HttpChannelParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIInterceptedChannel*, nsresult (nsIInterceptedChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::RunnableMethodImpl<nsIInterceptedChannel*&, nsresult const&>(char const*, nsIInterceptedChannel*&, nsresult (nsIInterceptedChannel::*)(nsresult), nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::InterceptedHttpChannel*, void (mozilla::net::InterceptedHttpChannel::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::InterceptedHttpChannel*>(char const*, mozilla::net::InterceptedHttpChannel*&&, void (mozilla::net::InterceptedHttpChannel::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsHttpChannel*, void (mozilla::net::nsHttpChannel::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::nsHttpChannel*&>(char const*, mozilla::net::nsHttpChannel*&, void (mozilla::net::nsHttpChannel::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsHttpChannel*, void (mozilla::net::nsHttpChannel::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::nsHttpChannel*>(char const*, mozilla::net::nsHttpChannel*&&, void (mozilla::net::nsHttpChannel::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsHttpChannel*, nsresult (mozilla::net::nsHttpChannel::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::nsHttpChannel*>(char const*, mozilla::net::nsHttpChannel*&&, nsresult (mozilla::net::nsHttpChannel::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::InterceptedHttpChannel*, void (mozilla::net::InterceptedHttpChannel::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::InterceptedHttpChannel*&>(char const*, mozilla::net::InterceptedHttpChannel*&, void (mozilla::net::InterceptedHttpChannel::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::ExtensionJARFileOpener*, nsresult (mozilla::net::ExtensionJARFileOpener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::ExtensionJARFileOpener*>(char const*, mozilla::net::ExtensionJARFileOpener*&&, nsresult (mozilla::net::ExtensionJARFileOpener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::ExtensionJARFileOpener>, nsresult (mozilla::net::ExtensionJARFileOpener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::net::ExtensionJARFileOpener>&>(char const*, RefPtr<mozilla::net::ExtensionJARFileOpener>&, nsresult (mozilla::net::ExtensionJARFileOpener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannel*, nsresult (mozilla::net::WebSocketChannel::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::WebSocketChannel*>(char const*, mozilla::net::WebSocketChannel*&&, nsresult (mozilla::net::WebSocketChannel::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannel*, void (mozilla::net::WebSocketChannel::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::WebSocketChannel*>(char const*, mozilla::net::WebSocketChannel*&&, void (mozilla::net::WebSocketChannel::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannel*, void (mozilla::net::WebSocketChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::RunnableMethodImpl<mozilla::net::WebSocketChannel*, nsresult&>(char const*, mozilla::net::WebSocketChannel*&&, void (mozilla::net::WebSocketChannel::*)(nsresult), nsresult&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannelChild*, void (mozilla::net::WebSocketChannelChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::net::WebSocketChannelChild*>(char const*, mozilla::net::WebSocketChannelChild*&&, void (mozilla::net::WebSocketChannelChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWyciwygChannel*, void (nsWyciwygChannel::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsWyciwygChannel*>(char const*, nsWyciwygChannel*&&, void (nsWyciwygChannel::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::ContentParent>, unsigned int (mozilla::dom::ContentParent::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::dom::ContentParent>&>(char const*, RefPtr<mozilla::dom::ContentParent>&, unsigned int (mozilla::dom::ContentParent::*)())
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::ParentImpl*, void ((anonymous namespace)::ParentImpl::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<(anonymous namespace)::ParentImpl*>(char const*, (anonymous namespace)::ParentImpl*&&, void ((anonymous namespace)::ParentImpl::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::ContentChild>, bool (mozilla::dom::PContentChild::*)(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> const&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&>::RunnableMethodImpl<RefPtr<mozilla::dom::ContentChild>&, mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> >(char const*, RefPtr<mozilla::dom::ContentChild>&, bool (mozilla::dom::PContentChild::*)(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> const&), mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::GeckoChildProcessHost*, bool (mozilla::ipc::GeckoChildProcessHost::*)(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> > > >), false, (mozilla::RunnableKind)0, 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> > > > >::RunnableMethodImpl<mozilla::ipc::GeckoChildProcessHost*, 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> > > >&>(char const*, mozilla::ipc::GeckoChildProcessHost*&&, bool (mozilla::ipc::GeckoChildProcessHost::*)(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> > > >), 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::RunnableMethodImpl<mozilla::ipc::MessageChannel*, void (mozilla::ipc::MessageChannel::*)(), false, (mozilla::RunnableKind)1>::RunnableMethodImpl<mozilla::ipc::MessageChannel*>(char const*, mozilla::ipc::MessageChannel*&&, void (mozilla::ipc::MessageChannel::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::MessageChannel*, void (mozilla::ipc::MessageChannel::*)(mozilla::ipc::MessageChannel*, mozilla::ipc::Side), false, (mozilla::RunnableKind)0, mozilla::ipc::MessageChannel*, mozilla::ipc::Side>::RunnableMethodImpl<mozilla::ipc::MessageChannel*&, mozilla::ipc::MessageChannel*, mozilla::ipc::Side&>(char const*, mozilla::ipc::MessageChannel*&, void (mozilla::ipc::MessageChannel::*)(mozilla::ipc::MessageChannel*, mozilla::ipc::Side), mozilla::ipc::MessageChannel*&&, mozilla::ipc::Side&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::ProcessLink*, void (mozilla::ipc::ProcessLink::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::ipc::ProcessLink*>(char const*, mozilla::ipc::ProcessLink*&&, void (mozilla::ipc::ProcessLink::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::ProcessLink*, void (mozilla::ipc::ProcessLink::*)(IPC::Message*), false, (mozilla::RunnableKind)0, IPC::Message*>::RunnableMethodImpl<mozilla::ipc::ProcessLink*, IPC::Message*&>(char const*, mozilla::ipc::ProcessLink*&&, void (mozilla::ipc::ProcessLink::*)(IPC::Message*), IPC::Message*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IPC::Channel*, bool (IPC::Channel::*)(IPC::Message*), false, (mozilla::RunnableKind)0, IPC::Message*>::RunnableMethodImpl<IPC::Channel*&, IPC::Message*&>(char const*, IPC::Channel*&, bool (IPC::Channel::*)(IPC::Message*), IPC::Message*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ScriptPreloader*, void (mozilla::ScriptPreloader::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::ScriptPreloader*>(char const*, mozilla::ScriptPreloader*&&, void (mozilla::ScriptPreloader::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ScriptPreloader*, void (mozilla::ScriptPreloader::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::ScriptPreloader*&>(char const*, mozilla::ScriptPreloader*&, void (mozilla::ScriptPreloader::*)())
mozilla::detail::RunnableMethodImpl<mozilla::URLPreloader*, void (mozilla::URLPreloader::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::URLPreloader*>(char const*, mozilla::URLPreloader*&&, void (mozilla::URLPreloader::*)())
Line
Count
Source
1220
3
  {
1221
3
    static_assert(sizeof...(Storages) == sizeof...(Args), "Storages and Args should have equal sizes");
1222
3
  }
mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIThread>, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsCOMPtr<nsIThread>&>(char const*, nsCOMPtr<nsIThread>&, nsresult (nsIThread::*)())
Line
Count
Source
1220
3
  {
1221
3
    static_assert(sizeof...(Storages) == sizeof...(Args), "Storages and Args should have equal sizes");
1222
3
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsJARChannel>, nsresult (nsJARChannel::*)(nsJARInputThunk*, bool), true, (mozilla::RunnableKind)0, RefPtr<nsJARInputThunk>, bool>::RunnableMethodImpl<RefPtr<nsJARChannel>&, RefPtr<nsJARInputThunk>&, bool>(char const*, RefPtr<nsJARChannel>&, nsresult (nsJARChannel::*)(nsJARInputThunk*, bool), RefPtr<nsJARInputThunk>&, bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsJARChannel>, nsresult (nsJARChannel::*)(nsresult, bool), true, (mozilla::RunnableKind)0, nsresult, bool>::RunnableMethodImpl<RefPtr<nsJARChannel>&, nsresult&, bool>(char const*, RefPtr<nsJARChannel>&, nsresult (nsJARChannel::*)(nsresult, bool), nsresult&, bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsJARChannel*, void (nsJARChannel::*)(unsigned long), true, (mozilla::RunnableKind)0, unsigned long>::RunnableMethodImpl<nsJARChannel*, unsigned long>(char const*, nsJARChannel*&&, void (nsJARChannel::*)(unsigned long), unsigned long&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::storage::Connection>, void (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::storage::Connection>&>(char const*, RefPtr<mozilla::storage::Connection>&, void (mozilla::storage::Connection::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::Connection*, nsresult (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::storage::Connection*>(char const*, mozilla::storage::Connection*&&, nsresult (mozilla::storage::Connection::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::Connection*, void (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::storage::Connection*>(char const*, mozilla::storage::Connection*&&, void (mozilla::storage::Connection::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*>(char const*, mozilla::storage::AsyncExecuteStatements*&&, nsresult (mozilla::storage::AsyncExecuteStatements::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozIStorageError*), true, (mozilla::RunnableKind)0, nsCOMPtr<mozIStorageError> >::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, mozIStorageError*&>(char const*, mozilla::storage::AsyncExecuteStatements*&&, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozIStorageError*), mozIStorageError*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozilla::storage::ResultSet*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::storage::ResultSet> >::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, already_AddRefed<mozilla::storage::ResultSet> >(char const*, mozilla::storage::AsyncExecuteStatements*&&, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozilla::storage::ResultSet*), already_AddRefed<mozilla::storage::ResultSet>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::storage::Connection>, nsresult (mozilla::storage::Connection::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> const>::RunnableMethodImpl<RefPtr<mozilla::storage::Connection>&, nsTLiteralString<char> const&>(char const*, RefPtr<mozilla::storage::Connection>&, nsresult (mozilla::storage::Connection::*)(nsTSubstring<char> const&), nsTLiteralString<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::VideoFrameConverter*, void (mozilla::VideoFrameConverter::*)(mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::layers::Image>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool>::RunnableMethodImpl<mozilla::VideoFrameConverter*, mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, bool&>(char const*, mozilla::VideoFrameConverter*&&, void (mozilla::VideoFrameConverter::*)(mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool), mozilla::layers::Image*&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::GenericReceiveListener*, void (mozilla::GenericReceiveListener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::GenericReceiveListener*>(char const*, mozilla::GenericReceiveListener*&&, void (mozilla::GenericReceiveListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoSessionConduit>, void (mozilla::VideoSessionConduit::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::VideoSessionConduit>&>(char const*, RefPtr<mozilla::VideoSessionConduit>&, void (mozilla::VideoSessionConduit::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsOfflineCacheUpdate*, void (nsOfflineCacheUpdate::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsOfflineCacheUpdate*>(char const*, nsOfflineCacheUpdate*&&, void (nsOfflineCacheUpdate::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsHtml5Parser*, nsresult (nsHtml5Parser::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsHtml5Parser*>(char const*, nsHtml5Parser*&&, nsresult (nsHtml5Parser::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::PaintThread*, void (mozilla::layers::PaintThread::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::layers::PaintThread*>(char const*, mozilla::layers::PaintThread*&&, void (mozilla::layers::PaintThread::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncImagePipelineManager*, void (mozilla::layers::AsyncImagePipelineManager::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::layers::AsyncImagePipelineManager*>(char const*, mozilla::layers::AsyncImagePipelineManager*&&, void (mozilla::layers::AsyncImagePipelineManager::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorBridgeParentBase>, void (mozilla::layers::CompositorBridgeParentBase::*)(mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, bool), true, (mozilla::RunnableKind)0, mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, int>::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorBridgeParentBase>&, mozilla::layers::LayersId&, mozilla::layers::LayersObserverEpoch&, bool&>(char const*, RefPtr<mozilla::layers::CompositorBridgeParentBase>&, void (mozilla::layers::CompositorBridgeParentBase::*)(mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, bool), mozilla::layers::LayersId&, mozilla::layers::LayersObserverEpoch&, bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), true, (mozilla::RunnableKind)0, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&>(char const*, mozilla::layers::AsyncPanZoomController*&&, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::GeckoContentController>, void (mozilla::layers::GeckoContentController::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::layers::GeckoContentController>&>(char const*, RefPtr<mozilla::layers::GeckoContentController>&, void (mozilla::layers::GeckoContentController::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::Maybe<mozilla::layers::ZoomConstraints> >::RunnableMethodImpl<mozilla::layers::APZCTreeManager*, mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&>(char const*, mozilla::layers::APZCTreeManager*&&, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&), mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::InputQueue>, void (mozilla::layers::InputQueue::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::layers::InputQueue>&>(char const*, RefPtr<mozilla::layers::InputQueue>&, void (mozilla::layers::InputQueue::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&), true, (mozilla::RunnableKind)0, mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget>::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>&, mozilla::layers::LayersId&, mozilla::layers::LayersId&, mozilla::layers::FocusTarget const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&), mozilla::layers::LayersId&, mozilla::layers::LayersId&, mozilla::layers::FocusTarget const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> const&), true, (mozilla::RunnableKind)0, mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> >::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>&, mozilla::layers::LayersId&, RefPtr<mozilla::layers::APZCTreeManager> >(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> const&), mozilla::layers::LayersId&, RefPtr<mozilla::layers::APZCTreeManager>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*>(char const*, mozilla::layers::AsyncPanZoomController*&&, void (mozilla::layers::AsyncPanZoomController::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::OverscrollHandoffChain const*, void (mozilla::layers::OverscrollHandoffChain::*)(mozilla::layers::AsyncPanZoomController const*) const, true, (mozilla::RunnableKind)0, mozilla::layers::AsyncPanZoomController*>::RunnableMethodImpl<mozilla::layers::OverscrollHandoffChain const*, mozilla::layers::AsyncPanZoomController*>(char const*, mozilla::layers::OverscrollHandoffChain const*&&, void (mozilla::layers::OverscrollHandoffChain::*)(mozilla::layers::AsyncPanZoomController const*) const, mozilla::layers::AsyncPanZoomController*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&, RefPtr<mozilla::layers::OverscrollHandoffChain const> const&, RefPtr<mozilla::layers::AsyncPanZoomController const> const&), true, (mozilla::RunnableKind)0, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>, RefPtr<mozilla::layers::OverscrollHandoffChain const>, RefPtr<mozilla::layers::AsyncPanZoomController const> >::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, RefPtr<mozilla::layers::OverscrollHandoffChain const>&, RefPtr<mozilla::layers::AsyncPanZoomController const>&>(char const*, mozilla::layers::AsyncPanZoomController*&&, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&, RefPtr<mozilla::layers::OverscrollHandoffChain const> const&, RefPtr<mozilla::layers::AsyncPanZoomController const> const&), mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, RefPtr<mozilla::layers::OverscrollHandoffChain const>&, RefPtr<mozilla::layers::AsyncPanZoomController const>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::GeckoContentController>, void (mozilla::layers::GeckoContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), true, (mozilla::RunnableKind)0, mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::RunnableMethodImpl<RefPtr<mozilla::layers::GeckoContentController>&, mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, mozilla::layers::ScrollableLayerGuid, unsigned long>(char const*, RefPtr<mozilla::layers::GeckoContentController>&, void (mozilla::layers::GeckoContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, mozilla::layers::ScrollableLayerGuid&&, unsigned long&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, bool&>(char const*, mozilla::layers::AsyncPanZoomController*&&, void (mozilla::layers::AsyncPanZoomController::*)(bool), bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::layers::FrameMetrics const&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), true, (mozilla::RunnableKind)0, mozilla::layers::FrameMetrics, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, mozilla::layers::FrameMetrics&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&>(char const*, mozilla::layers::AsyncPanZoomController*&&, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::layers::FrameMetrics const&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), mozilla::layers::FrameMetrics&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(), true, (mozilla::RunnableKind)1>::RunnableMethodImpl<mozilla::layers::GestureEventListener*>(char const*, mozilla::layers::GestureEventListener*&&, void (mozilla::layers::GestureEventListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(bool), true, (mozilla::RunnableKind)1, bool>::RunnableMethodImpl<mozilla::layers::GestureEventListener*, bool>(char const*, mozilla::layers::GestureEventListener*&&, void (mozilla::layers::GestureEventListener::*)(bool), bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::InputQueue*, void (mozilla::layers::InputQueue::*)(unsigned long), true, (mozilla::RunnableKind)0, unsigned long>::RunnableMethodImpl<mozilla::layers::InputQueue*, unsigned long>(char const*, mozilla::layers::InputQueue*&&, void (mozilla::layers::InputQueue::*)(unsigned long), unsigned long&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ActiveElementManager*, void (mozilla::layers::ActiveElementManager::*)(nsCOMPtr<mozilla::dom::Element> const&), true, (mozilla::RunnableKind)1, nsCOMPtr<mozilla::dom::Element> >::RunnableMethodImpl<mozilla::layers::ActiveElementManager*, nsCOMPtr<mozilla::dom::Element>&>(char const*, mozilla::layers::ActiveElementManager*&&, void (mozilla::layers::ActiveElementManager::*)(nsCOMPtr<mozilla::dom::Element> const&), nsCOMPtr<mozilla::dom::Element>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::layers::ChromeProcessController*>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>&, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&, mozilla::layers::ZoomToRectBehavior>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), mozilla::layers::ScrollableLayerGuid&&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&, mozilla::layers::ZoomToRectBehavior&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), true, (mozilla::RunnableKind)0, mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), true, (mozilla::RunnableKind)0, mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short>::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int>::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&, nsTString<char16_t> const&), true, (mozilla::RunnableKind)0, unsigned long, nsTString<char16_t> >::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, unsigned long const&, nsTString<char16_t> const&>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&, nsTString<char16_t> const&), unsigned long const&, nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&), true, (mozilla::RunnableKind)0, unsigned long>::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, unsigned long const&>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&), unsigned long const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid>::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, mozilla::layers::ScrollableLayerGuid const&>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&), mozilla::layers::ScrollableLayerGuid const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), true, (mozilla::RunnableKind)0, mozilla::layers::KeyboardMap>::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>&, mozilla::layers::KeyboardMap const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), mozilla::layers::KeyboardMap const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0, unsigned long, bool>::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>&, unsigned long const&, bool const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), unsigned long const&, bool const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>&, unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid>&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(float), true, (mozilla::RunnableKind)0, float>::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>&, float const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(float), float const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByRRef<nsTArray<unsigned int> > >::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>&, unsigned long const&, nsTArray<unsigned int> >(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), unsigned long const&, nsTArray<unsigned int>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics>::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>&, mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, bool (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> >::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, bool (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&), mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid>::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>&, mozilla::layers::ScrollableLayerGuid const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&), mozilla::layers::ScrollableLayerGuid const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>&, bool const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(bool), bool const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorBridgeChild>, void (mozilla::layers::CompositorBridgeChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorBridgeChild>&>(char const*, RefPtr<mozilla::layers::CompositorBridgeChild>&, void (mozilla::layers::CompositorBridgeChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParentBase*, bool (mozilla::layers::CompositorBridgeParentBase::*)(base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int), true, (mozilla::RunnableKind)0, base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int>::RunnableMethodImpl<mozilla::layers::CompositorBridgeParentBase*, base::FileDescriptor&, base::FileDescriptor&, mozilla::layers::LayersId&, unsigned int&>(char const*, mozilla::layers::CompositorBridgeParentBase*&&, bool (mozilla::layers::CompositorBridgeParentBase::*)(base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int), base::FileDescriptor&, base::FileDescriptor&, mozilla::layers::LayersId&, unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParentBase*, bool (mozilla::layers::CompositorBridgeParentBase::*)(unsigned long, unsigned int), true, (mozilla::RunnableKind)0, unsigned long, unsigned int>::RunnableMethodImpl<mozilla::layers::CompositorBridgeParentBase*, unsigned long&, unsigned int&>(char const*, mozilla::layers::CompositorBridgeParentBase*&&, bool (mozilla::layers::CompositorBridgeParentBase::*)(unsigned long, unsigned int), unsigned long&, unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*>(char const*, mozilla::layers::CompositorBridgeParent*&&, void (mozilla::layers::CompositorBridgeParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(int, int), true, (mozilla::RunnableKind)0, int, int>::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, int&, int&>(char const*, mozilla::layers::CompositorBridgeParent*&&, void (mozilla::layers::CompositorBridgeParent::*)(int, int), int&, int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(), true, (mozilla::RunnableKind)1>::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*>(char const*, mozilla::layers::CompositorBridgeParent*&&, void (mozilla::layers::CompositorBridgeParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::RunnableMethodImpl<mozilla::layers::APZCTreeManager*, unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&>(char const*, mozilla::layers::APZCTreeManager*&&, void (mozilla::layers::APZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorManagerParent>, void (mozilla::layers::CompositorManagerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&>::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorManagerParent>&, mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> >(char const*, RefPtr<mozilla::layers::CompositorManagerParent>&, void (mozilla::layers::CompositorManagerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&), mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorManagerParent*, void (mozilla::layers::CompositorManagerParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::layers::CompositorManagerParent*>(char const*, mozilla::layers::CompositorManagerParent*&&, void (mozilla::layers::CompositorManagerParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorVsyncScheduler*, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)1, mozilla::TimeStamp>::RunnableMethodImpl<mozilla::layers::CompositorVsyncScheduler*, mozilla::TimeStamp&>(char const*, mozilla::layers::CompositorVsyncScheduler*&&, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorVsyncScheduler*, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0, mozilla::TimeStamp>::RunnableMethodImpl<mozilla::layers::CompositorVsyncScheduler*, mozilla::TimeStamp&>(char const*, mozilla::layers::CompositorVsyncScheduler*&&, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CrossProcessCompositorBridgeParent*, void (mozilla::layers::CrossProcessCompositorBridgeParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::layers::CrossProcessCompositorBridgeParent*>(char const*, mozilla::layers::CrossProcessCompositorBridgeParent*&&, void (mozilla::layers::CrossProcessCompositorBridgeParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::ImageBridgeChild>, void (mozilla::layers::ImageBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&>::RunnableMethodImpl<RefPtr<mozilla::layers::ImageBridgeChild>&, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> >(char const*, RefPtr<mozilla::layers::ImageBridgeChild>&, void (mozilla::layers::ImageBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&), mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::ImageBridgeParent>, void (mozilla::layers::ImageBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&>::RunnableMethodImpl<RefPtr<mozilla::layers::ImageBridgeParent>&, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> >(char const*, RefPtr<mozilla::layers::ImageBridgeParent>&, void (mozilla::layers::ImageBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&), mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ImageBridgeParent*, void (mozilla::layers::ImageBridgeParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::layers::ImageBridgeParent*>(char const*, mozilla::layers::ImageBridgeParent*&&, void (mozilla::layers::ImageBridgeParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long), true, (mozilla::RunnableKind)0, mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::RunnableMethodImpl<mozilla::layers::RemoteContentController*, mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long), mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), true, (mozilla::RunnableKind)0, mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short>::RunnableMethodImpl<mozilla::layers::RemoteContentController*, mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int>::RunnableMethodImpl<mozilla::layers::RemoteContentController*, mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(float, float, bool), true, (mozilla::RunnableKind)0, float, float, bool>::RunnableMethodImpl<mozilla::layers::RemoteContentController*, float&, float&, bool&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(float, float, bool), float&, float&, bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(unsigned long const&, nsTString<char16_t> const&), true, (mozilla::RunnableKind)0, unsigned long, nsTString<char16_t> >::RunnableMethodImpl<mozilla::layers::RemoteContentController*, unsigned long const&, nsTString<char16_t> const&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(unsigned long const&, nsTString<char16_t> const&), unsigned long const&, nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(unsigned long const&), true, (mozilla::RunnableKind)0, unsigned long>::RunnableMethodImpl<mozilla::layers::RemoteContentController*, unsigned long const&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(unsigned long const&), unsigned long const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid>::RunnableMethodImpl<mozilla::layers::RemoteContentController*, mozilla::layers::ScrollableLayerGuid const&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&), mozilla::layers::ScrollableLayerGuid const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::LayerTransactionChild>, void (mozilla::layers::LayerTransactionChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::layers::LayerTransactionChild>&>(char const*, RefPtr<mozilla::layers::LayerTransactionChild>&, void (mozilla::layers::LayerTransactionChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerChild>, void (mozilla::layers::UiCompositorControllerChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerChild>&>(char const*, RefPtr<mozilla::layers::UiCompositorControllerChild>&, void (mozilla::layers::UiCompositorControllerChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerChild>, void (mozilla::layers::UiCompositorControllerChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&>::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerChild>&, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild> >(char const*, RefPtr<mozilla::layers::UiCompositorControllerChild>&, void (mozilla::layers::UiCompositorControllerChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&), mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::UiCompositorControllerChild*, void (mozilla::layers::UiCompositorControllerChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::layers::UiCompositorControllerChild*>(char const*, mozilla::layers::UiCompositorControllerChild*&&, void (mozilla::layers::UiCompositorControllerChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerParent>, void (mozilla::layers::UiCompositorControllerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&>::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerParent>&, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> >(char const*, RefPtr<mozilla::layers::UiCompositorControllerParent>&, void (mozilla::layers::UiCompositorControllerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&), mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)(int), true, (mozilla::RunnableKind)0, int>::RunnableMethodImpl<mozilla::layers::UiCompositorControllerParent*, int&>(char const*, mozilla::layers::UiCompositorControllerParent*&&, void (mozilla::layers::UiCompositorControllerParent::*)(int), int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::layers::UiCompositorControllerParent*>(char const*, mozilla::layers::UiCompositorControllerParent*&&, void (mozilla::layers::UiCompositorControllerParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GtkVsyncSource::GLXDisplay*, void (GtkVsyncSource::GLXDisplay::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<GtkVsyncSource::GLXDisplay*>(char const*, GtkVsyncSource::GLXDisplay*&&, void (GtkVsyncSource::GLXDisplay::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<SoftwareDisplay*, void (SoftwareDisplay::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<SoftwareDisplay*>(char const*, SoftwareDisplay*&&, void (SoftwareDisplay::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<SoftwareDisplay*, void (SoftwareDisplay::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)1, mozilla::TimeStamp>::RunnableMethodImpl<SoftwareDisplay*, mozilla::TimeStamp&>(char const*, SoftwareDisplay*&&, void (SoftwareDisplay::*)(mozilla::TimeStamp), mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VsyncBridgeChild>, void (mozilla::gfx::VsyncBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&>::RunnableMethodImpl<RefPtr<mozilla::gfx::VsyncBridgeChild>&, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild> >(char const*, RefPtr<mozilla::gfx::VsyncBridgeChild>&, void (mozilla::gfx::VsyncBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&), mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VsyncBridgeChild*, void (mozilla::gfx::VsyncBridgeChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::gfx::VsyncBridgeChild*>(char const*, mozilla::gfx::VsyncBridgeChild*&&, void (mozilla::gfx::VsyncBridgeChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VsyncBridgeParent>, void (mozilla::gfx::VsyncBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&>::RunnableMethodImpl<RefPtr<mozilla::gfx::VsyncBridgeParent>&, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> >(char const*, RefPtr<mozilla::gfx::VsyncBridgeParent>&, void (mozilla::gfx::VsyncBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&), mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VsyncBridgeParent*, void (mozilla::gfx::VsyncBridgeParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::gfx::VsyncBridgeParent*>(char const*, mozilla::gfx::VsyncBridgeParent*&&, void (mozilla::gfx::VsyncBridgeParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsIThread>, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsIThread>&>(char const*, RefPtr<nsIThread>&, nsresult (nsIThread::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRDisplayHost*, void (mozilla::gfx::VRDisplayHost::*)(mozilla::layers::SurfaceDescriptor const&, unsigned long, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::RunnableMethodImpl<mozilla::gfx::VRDisplayHost*, mozilla::layers::SurfaceDescriptor const&, unsigned long&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&>(char const*, mozilla::gfx::VRDisplayHost*&&, void (mozilla::gfx::VRDisplayHost::*)(mozilla::layers::SurfaceDescriptor const&, unsigned long, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&), 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::RunnableMethodImpl<mozilla::gfx::impl::VRControllerOpenVR*, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), true, (mozilla::RunnableKind)0, vr::IVRSystem*, unsigned int, double, double, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::RunnableMethodImpl<mozilla::gfx::impl::VRControllerOpenVR*, vr::IVRSystem*&, unsigned int&, double&, double, unsigned long&, mozilla::gfx::VRManagerPromise const&>(char const*, mozilla::gfx::impl::VRControllerOpenVR*&&, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), vr::IVRSystem*&, unsigned int&, double&, double&&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManager*, void (mozilla::gfx::VRManager::*)(mozilla::gfx::VRManagerPromise const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::RunnableMethodImpl<mozilla::gfx::VRManager*&, mozilla::gfx::VRManagerPromise const&>(char const*, mozilla::gfx::VRManager*&, void (mozilla::gfx::VRManager::*)(mozilla::gfx::VRManagerPromise const&), mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::impl::VRControllerOpenVR*, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), true, (mozilla::RunnableKind)0, vr::IVRSystem*, unsigned int, double, double, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::RunnableMethodImpl<mozilla::gfx::impl::VRControllerOpenVR*, vr::IVRSystem*&, unsigned int&, double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&>(char const*, mozilla::gfx::impl::VRControllerOpenVR*&&, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), vr::IVRSystem*&, unsigned int&, double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRThread*, void (mozilla::gfx::VRThread::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0, mozilla::TimeStamp>::RunnableMethodImpl<mozilla::gfx::VRThread*, mozilla::TimeStamp>(char const*, mozilla::gfx::VRThread*&&, void (mozilla::gfx::VRThread::*)(mozilla::TimeStamp), mozilla::TimeStamp&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRGPUParent*, void (mozilla::gfx::VRGPUParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::gfx::VRGPUParent*>(char const*, mozilla::gfx::VRGPUParent*&&, void (mozilla::gfx::VRGPUParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VRGPUParent>, void (mozilla::gfx::VRGPUParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&>::RunnableMethodImpl<RefPtr<mozilla::gfx::VRGPUParent>&, mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> >(char const*, RefPtr<mozilla::gfx::VRGPUParent>&, void (mozilla::gfx::VRGPUParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&), mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManagerChild*, void (mozilla::gfx::VRManagerChild::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::RunnableMethodImpl<mozilla::gfx::VRManagerChild*, unsigned int&>(char const*, mozilla::gfx::VRManagerChild*&&, void (mozilla::gfx::VRManagerChild::*)(unsigned int), unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManagerChild*, void (mozilla::gfx::VRManagerChild::*)(unsigned int, mozilla::dom::VREventObserver*), true, (mozilla::RunnableKind)0, unsigned int, RefPtr<mozilla::dom::VREventObserver> >::RunnableMethodImpl<mozilla::gfx::VRManagerChild*, unsigned int, mozilla::dom::VREventObserver*&>(char const*, mozilla::gfx::VRManagerChild*&&, void (mozilla::gfx::VRManagerChild::*)(unsigned int, mozilla::dom::VREventObserver*), unsigned int&&, mozilla::dom::VREventObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VRManagerParent>, void (mozilla::gfx::VRManagerParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&>::RunnableMethodImpl<RefPtr<mozilla::gfx::VRManagerParent>&, mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> >(char const*, RefPtr<mozilla::gfx::VRManagerParent>&, void (mozilla::gfx::VRManagerParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&), mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManagerParent*, void (mozilla::gfx::VRManagerParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::gfx::VRManagerParent*>(char const*, mozilla::gfx::VRManagerParent*&&, void (mozilla::gfx::VRManagerParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRService*, void (mozilla::gfx::VRService::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::gfx::VRService*>(char const*, mozilla::gfx::VRService*&&, void (mozilla::gfx::VRService::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> const&), true, (mozilla::RunnableKind)0, mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >::RunnableMethodImpl<mozilla::wr::RenderThread*, mozilla::wr::MemoryReport&, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&>(char const*, mozilla::wr::RenderThread*&&, void (mozilla::wr::RenderThread::*)(mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> const&), mozilla::wr::MemoryReport&, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId), true, (mozilla::RunnableKind)0, mozilla::wr::WrWindowId>::RunnableMethodImpl<mozilla::wr::RenderThread*, mozilla::wr::WrWindowId&>(char const*, mozilla::wr::RenderThread*&&, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId), mozilla::wr::WrWindowId&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >), true, (mozilla::RunnableKind)0, mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&>::RunnableMethodImpl<mozilla::wr::RenderThread*, mozilla::wr::WrWindowId&, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > >(char const*, mozilla::wr::RenderThread*&&, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >), mozilla::wr::WrWindowId&, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::wr::RenderThread*>(char const*, mozilla::wr::RenderThread*&&, void (mozilla::wr::RenderThread::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderTextureHostWrapper*, void (mozilla::wr::RenderTextureHostWrapper::*)(mozilla::wr::RenderTextureHost*), true, (mozilla::RunnableKind)0, mozilla::wr::RenderTextureHost*>::RunnableMethodImpl<mozilla::wr::RenderTextureHostWrapper*&, RefPtr<mozilla::wr::RenderTextureHost>&>(char const*, mozilla::wr::RenderTextureHostWrapper*&, void (mozilla::wr::RenderTextureHostWrapper::*)(mozilla::wr::RenderTextureHost*), RefPtr<mozilla::wr::RenderTextureHost>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(int, int, unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*), true, (mozilla::RunnableKind)0, int, int, unsigned int, nsTString<char16_t>, nsTString<char16_t>, nsIObserver*>::RunnableMethodImpl<nsCOMPtr<nsIWidget>&, int&, int&, int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(int, int, unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*), int&, int&, int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, int, int, nsIObserver*>::RunnableMethodImpl<nsCOMPtr<nsIWidget>&, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, int&, int&, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, unsigned int, nsIObserver*), mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, int&, int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*>::RunnableMethodImpl<nsCOMPtr<nsIWidget>&, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*), mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*>::RunnableMethodImpl<nsCOMPtr<nsIWidget>&, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int&, double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*), mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, unsigned int&, double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0, unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*>::RunnableMethodImpl<nsCOMPtr<nsIWidget>&, unsigned int&, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double&, unsigned int&, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*), unsigned int&, nsIWidget::TouchPointerState&&, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, double&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*>::RunnableMethodImpl<nsCOMPtr<nsIWidget>&, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool&, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*), mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, bool&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(nsIObserver*), true, (mozilla::RunnableKind)0, nsIObserver*>::RunnableMethodImpl<nsCOMPtr<nsIWidget>&, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(nsIObserver*), nsIObserver*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsGlobalWindowOuter*, void (nsGlobalWindowOuter::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsGlobalWindowOuter*>(char const*, nsGlobalWindowOuter*&&, void (nsGlobalWindowOuter::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsGlobalWindowInner>, void (nsGlobalWindowInner::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsGlobalWindowInner>&>(char const*, RefPtr<nsGlobalWindowInner>&, void (nsGlobalWindowInner::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsGlobalWindowOuter>, void (nsGlobalWindowOuter::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsGlobalWindowOuter>&>(char const*, RefPtr<nsGlobalWindowOuter>&, void (nsGlobalWindowOuter::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsXBLBinding>, void (nsXBLBinding::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsXBLBinding>&>(char const*, RefPtr<nsXBLBinding>&, void (nsXBLBinding::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::EventSourceImpl*, void (mozilla::dom::EventSourceImpl::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::EventSourceImpl*>(char const*, mozilla::dom::EventSourceImpl*&&, void (mozilla::dom::EventSourceImpl::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ScreenOrientation*, void (mozilla::dom::ScreenOrientation::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ScreenOrientation*>(char const*, mozilla::dom::ScreenOrientation*&&, void (mozilla::dom::ScreenOrientation::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ScreenOrientation*, void (mozilla::dom::ScreenOrientation::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ScreenOrientation*&>(char const*, mozilla::dom::ScreenOrientation*&, void (mozilla::dom::ScreenOrientation::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsContentSink*, void (nsContentSink::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsContentSink*>(char const*, nsContentSink*&&, void (nsContentSink::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIDocument*, void (nsIDocument::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsIDocument*>(char const*, nsIDocument*&&, void (nsIDocument::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIDocument*, void (nsIDocument::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsIDocument*>(char const*, nsIDocument*&&, void (nsIDocument::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDocument*, void (nsDocument::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsDocument*>(char const*, nsDocument*&&, void (nsDocument::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsRange*, void (nsRange::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsRange*>(char const*, nsRange*&&, void (nsRange::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsAttributeTextNode*, void (nsAttributeTextNode::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsAttributeTextNode*>(char const*, nsAttributeTextNode*&&, void (nsAttributeTextNode::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::Context::ThreadsafeHandle*, void (mozilla::dom::cache::Context::ThreadsafeHandle::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::cache::Context::ThreadsafeHandle*>(char const*, mozilla::dom::cache::Context::ThreadsafeHandle*&&, void (mozilla::dom::cache::Context::ThreadsafeHandle::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::Manager::CachePutAllAction*, void (mozilla::dom::cache::Manager::CachePutAllAction::*)(nsresult), false, (mozilla::RunnableKind)0, nsresult>::RunnableMethodImpl<mozilla::dom::cache::Manager::CachePutAllAction*, nsresult&>(char const*, mozilla::dom::cache::Manager::CachePutAllAction*&&, void (mozilla::dom::cache::Manager::CachePutAllAction::*)(nsresult), nsresult&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::ReadStream::Inner*, void (mozilla::dom::cache::ReadStream::Inner::*)(), true, (mozilla::RunnableKind)1>::RunnableMethodImpl<mozilla::dom::cache::ReadStream::Inner*>(char const*, mozilla::dom::cache::ReadStream::Inner*&&, void (mozilla::dom::cache::ReadStream::Inner::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::CanvasRenderingContext2D*, void (mozilla::dom::CanvasRenderingContext2D::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::CanvasRenderingContext2D*>(char const*, mozilla::dom::CanvasRenderingContext2D*&&, void (mozilla::dom::CanvasRenderingContext2D::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::EventListenerService*, void (mozilla::EventListenerService::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::EventListenerService*>(char const*, mozilla::EventListenerService*&&, void (mozilla::EventListenerService::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLCanvasPrintState*, void (mozilla::dom::HTMLCanvasPrintState::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::HTMLCanvasPrintState*>(char const*, mozilla::dom::HTMLCanvasPrintState*&&, void (mozilla::dom::HTMLCanvasPrintState::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLCanvasElement*, void (mozilla::dom::HTMLCanvasElement::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::HTMLCanvasElement*>(char const*, mozilla::dom::HTMLCanvasElement*&&, void (mozilla::dom::HTMLCanvasElement::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::BlobCallback*, void (mozilla::dom::BlobCallback::*)(mozilla::dom::Blob*, char const*), true, (mozilla::RunnableKind)0, mozilla::dom::Blob*, char const*>::RunnableMethodImpl<mozilla::dom::BlobCallback*, decltype(nullptr), decltype(nullptr)>(char const*, mozilla::dom::BlobCallback*&&, void (mozilla::dom::BlobCallback::*)(mozilla::dom::Blob*, char const*), decltype(nullptr)&&, decltype(nullptr)&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLEmbedElement*, void (mozilla::dom::HTMLEmbedElement::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::HTMLEmbedElement*>(char const*, mozilla::dom::HTMLEmbedElement*&&, void (mozilla::dom::HTMLEmbedElement::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLImageElement*, void (mozilla::dom::HTMLImageElement::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<mozilla::dom::HTMLImageElement*, bool>(char const*, mozilla::dom::HTMLImageElement*&&, void (mozilla::dom::HTMLImageElement::*)(bool), bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLImageElement*, void (mozilla::dom::HTMLImageElement::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<mozilla::dom::HTMLImageElement*&, bool>(char const*, mozilla::dom::HTMLImageElement*&, void (mozilla::dom::HTMLImageElement::*)(bool), bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLInputElement*, void (mozilla::dom::HTMLInputElement::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::HTMLInputElement*>(char const*, mozilla::dom::HTMLInputElement*&&, void (mozilla::dom::HTMLInputElement::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLLinkElement*, void (mozilla::dom::HTMLLinkElement::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::HTMLLinkElement*>(char const*, mozilla::dom::HTMLLinkElement*&&, void (mozilla::dom::HTMLLinkElement::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::StreamSizeListener*, void (mozilla::dom::HTMLMediaElement::StreamSizeListener::*)(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>), true, (mozilla::RunnableKind)0, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::StreamSizeListener*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&>(char const*, mozilla::dom::HTMLMediaElement::StreamSizeListener*&&, void (mozilla::dom::HTMLMediaElement::StreamSizeListener::*)(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>), mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::ChannelLoader*, void (mozilla::dom::HTMLMediaElement::ChannelLoader::*)(mozilla::dom::HTMLMediaElement*), true, (mozilla::RunnableKind)0, mozilla::dom::HTMLMediaElement*>::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::ChannelLoader*, mozilla::dom::HTMLMediaElement*&>(char const*, mozilla::dom::HTMLMediaElement::ChannelLoader*&&, void (mozilla::dom::HTMLMediaElement::ChannelLoader::*)(mozilla::dom::HTMLMediaElement*), mozilla::dom::HTMLMediaElement*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::StreamListener*, void (mozilla::dom::HTMLMediaElement::StreamListener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::StreamListener*>(char const*, mozilla::dom::HTMLMediaElement::StreamListener*&&, void (mozilla::dom::HTMLMediaElement::StreamListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement*, void (mozilla::dom::HTMLMediaElement::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::HTMLMediaElement*>(char const*, mozilla::dom::HTMLMediaElement*&&, void (mozilla::dom::HTMLMediaElement::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement*, void (mozilla::dom::HTMLMediaElement::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::RunnableMethodImpl<mozilla::dom::HTMLMediaElement*, nsTString<char> >(char const*, mozilla::dom::HTMLMediaElement*&&, void (mozilla::dom::HTMLMediaElement::*)(nsTSubstring<char> const&), nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::MediaStreamTrack*, void (mozilla::dom::MediaStreamTrack::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::MediaStreamTrack*&>(char const*, mozilla::dom::MediaStreamTrack*&, void (mozilla::dom::MediaStreamTrack::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::DOMMediaStream>, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack> >::RunnableMethodImpl<RefPtr<mozilla::DOMMediaStream>&, RefPtr<mozilla::dom::MediaStreamTrack>&>(char const*, RefPtr<mozilla::DOMMediaStream>&, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), RefPtr<mozilla::dom::MediaStreamTrack>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher*>(char const*, mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher*&&, void (mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::MediaStreamTrack>, void (mozilla::dom::MediaStreamTrack::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::dom::MediaStreamTrack>&>(char const*, RefPtr<mozilla::dom::MediaStreamTrack>&, void (mozilla::dom::MediaStreamTrack::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLObjectElement*, void (mozilla::dom::HTMLObjectElement::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::HTMLObjectElement*>(char const*, mozilla::dom::HTMLObjectElement*&&, void (mozilla::dom::HTMLObjectElement::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLStyleElement*, void (mozilla::dom::HTMLStyleElement::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::HTMLStyleElement*>(char const*, mozilla::dom::HTMLStyleElement*&&, void (mozilla::dom::HTMLStyleElement::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLTrackElement*, void (mozilla::dom::HTMLTrackElement::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::HTMLTrackElement*>(char const*, mozilla::dom::HTMLTrackElement*&&, void (mozilla::dom::HTMLTrackElement::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLTrackElement*, void (mozilla::dom::HTMLTrackElement::*)(nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, nsTString<char16_t> const>::RunnableMethodImpl<mozilla::dom::HTMLTrackElement*, nsTString<char16_t> const&>(char const*, mozilla::dom::HTMLTrackElement*&&, void (mozilla::dom::HTMLTrackElement::*)(nsTSubstring<char16_t> const&), nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ImageDocument*, void (mozilla::dom::ImageDocument::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ImageDocument*>(char const*, mozilla::dom::ImageDocument*&&, void (mozilla::dom::ImageDocument::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::TextTrackManager*, void (mozilla::dom::TextTrackManager::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::TextTrackManager*>(char const*, mozilla::dom::TextTrackManager*&&, void (mozilla::dom::TextTrackManager::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<HTMLContentSink*, void (HTMLContentSink::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<HTMLContentSink*>(char const*, HTMLContentSink*&&, void (HTMLContentSink::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsHTMLDocument*, void (nsHTMLDocument::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsHTMLDocument*>(char const*, nsHTMLDocument*&&, void (nsHTMLDocument::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsJSChannel*, void (nsJSChannel::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsJSChannel*>(char const*, nsJSChannel*&&, void (nsJSChannel::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::BackgroundVideoDecodingPermissionObserver*, void (mozilla::BackgroundVideoDecodingPermissionObserver::*)() const, true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::BackgroundVideoDecodingPermissionObserver*>(char const*, mozilla::BackgroundVideoDecodingPermissionObserver*&&, void (mozilla::BackgroundVideoDecodingPermissionObserver::*)() const)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream::OwnedStreamListener*, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, mozilla::MediaStream*, int), true, (mozilla::RunnableKind)0, mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, RefPtr<mozilla::MediaStream>, int>::RunnableMethodImpl<mozilla::DOMMediaStream::OwnedStreamListener*, mozilla::MediaStreamGraph*&, int&, mozilla::MediaSegment::Type, mozilla::MediaStream*&, int&>(char const*, mozilla::DOMMediaStream::OwnedStreamListener*&&, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, mozilla::MediaStream*, int), mozilla::MediaStreamGraph*&, int&, mozilla::MediaSegment::Type&&, mozilla::MediaStream*&, int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream*, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::MediaStreamTrack> >::RunnableMethodImpl<mozilla::DOMMediaStream*&, RefPtr<mozilla::dom::MediaStreamTrack>&>(char const*, mozilla::DOMMediaStream*&, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), RefPtr<mozilla::dom::MediaStreamTrack>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream::OwnedStreamListener*, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, mozilla::MediaStream*, int, int), true, (mozilla::RunnableKind)0, mozilla::MediaStreamGraph*, RefPtr<mozilla::MediaStream>, int, int>::RunnableMethodImpl<mozilla::DOMMediaStream::OwnedStreamListener*, mozilla::MediaStreamGraph*&, mozilla::MediaStream*&, int&, int&>(char const*, mozilla::DOMMediaStream::OwnedStreamListener*&&, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, mozilla::MediaStream*, int, int), mozilla::MediaStreamGraph*&, mozilla::MediaStream*&, int&, int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream::PlaybackStreamListener*, void (mozilla::DOMMediaStream::PlaybackStreamListener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::DOMMediaStream::PlaybackStreamListener*>(char const*, mozilla::DOMMediaStream::PlaybackStreamListener*&&, void (mozilla::DOMMediaStream::PlaybackStreamListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream*, void (mozilla::DOMMediaStream::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::DOMMediaStream*&>(char const*, mozilla::DOMMediaStream*&, void (mozilla::DOMMediaStream::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::MediaResourceCallback*>(char const*, mozilla::MediaResourceCallback*&&, void (mozilla::MediaResourceCallback::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<mozilla::MediaResourceCallback*, bool&>(char const*, mozilla::MediaResourceCallback*&&, void (mozilla::MediaResourceCallback::*)(bool), bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChannelMediaResource*, void (mozilla::ChannelMediaResource::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<mozilla::ChannelMediaResource*, bool>(char const*, mozilla::ChannelMediaResource*&&, void (mozilla::ChannelMediaResource::*)(bool), bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChannelMediaResource*, void (mozilla::ChannelMediaResource::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::ChannelMediaResource*>(char const*, mozilla::ChannelMediaResource*&&, void (mozilla::ChannelMediaResource::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::RunnableMethodImpl<mozilla::MediaResourceCallback*, nsresult const&>(char const*, mozilla::MediaResourceCallback*&&, void (mozilla::MediaResourceCallback::*)(nsresult), nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::FileBlockCache*, void (mozilla::FileBlockCache::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::FileBlockCache*>(char const*, mozilla::FileBlockCache*&&, void (mozilla::FileBlockCache::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(double), true, (mozilla::RunnableKind)0, double>::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, double&>(char const*, mozilla::MediaDecoderStateMachine*&&, void (mozilla::MediaDecoderStateMachine::*)(double), double&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TimedMetadata>*, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(mozilla::TimedMetadata&&), true, (mozilla::RunnableKind)0, mozilla::TimedMetadata&&>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TimedMetadata>*, mozilla::TimedMetadata>(char const*, mozilla::detail::Listener<mozilla::TimedMetadata>*&&, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(mozilla::TimedMetadata&&), mozilla::TimedMetadata&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TimedMetadata>*, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TimedMetadata>*>(char const*, mozilla::detail::Listener<mozilla::TimedMetadata>*&&, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<double>::Impl*, void (mozilla::Canonical<double>::Impl::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::Canonical<double>::Impl*>(char const*, mozilla::Canonical<double>::Impl*&&, void (mozilla::Canonical<double>::Impl::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<double>*, void (mozilla::AbstractMirror<double>::*)(double const&), true, (mozilla::RunnableKind)0, double>::RunnableMethodImpl<mozilla::AbstractMirror<double>*&, double&>(char const*, mozilla::AbstractMirror<double>*&, void (mozilla::AbstractMirror<double>::*)(double const&), double&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<bool>*, void (mozilla::AbstractMirror<bool>::*)(bool const&), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<mozilla::AbstractMirror<bool>*&, bool&>(char const*, mozilla::AbstractMirror<bool>*&, void (mozilla::AbstractMirror<bool>::*)(bool const&), bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*, void (mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>::*)(mozilla::MediaDecoder::PlayState const&), true, (mozilla::RunnableKind)0, mozilla::MediaDecoder::PlayState>::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*&, mozilla::MediaDecoder::PlayState&>(char const*, mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*&, void (mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>::*)(mozilla::MediaDecoder::PlayState const&), mozilla::MediaDecoder::PlayState&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*, void (mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), true, (mozilla::RunnableKind)0, nsMainThreadPtrHandle<nsIPrincipal> >::RunnableMethodImpl<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*&, nsMainThreadPtrHandle<nsIPrincipal>&>(char const*, mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*&, void (mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), nsMainThreadPtrHandle<nsIPrincipal>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher*>(char const*, mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher*&&, void (mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<bool>::Impl*, void (mozilla::Canonical<bool>::Impl::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::Canonical<bool>::Impl*>(char const*, mozilla::Canonical<bool>::Impl*&&, void (mozilla::Canonical<bool>::Impl::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*, void (mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*>(char const*, mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*&&, void (mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl*, void (mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl*>(char const*, mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl*&&, void (mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader>, void (mozilla::MediaFormatReader::*)(already_AddRefed<mozilla::layers::KnowsCompositor>), true, (mozilla::RunnableKind)0, already_AddRefed<mozilla::layers::KnowsCompositor>&&>::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader>&, already_AddRefed<mozilla::layers::KnowsCompositor> >(char const*, RefPtr<mozilla::MediaFormatReader>&, void (mozilla::MediaFormatReader::*)(already_AddRefed<mozilla::layers::KnowsCompositor>), already_AddRefed<mozilla::layers::KnowsCompositor>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*&, mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*>(char const*, mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*&, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::media::TimeIntervals>*, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::media::TimeIntervals>*&, mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*>(char const*, mozilla::AbstractCanonical<mozilla::media::TimeIntervals>*&, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::media::TimeUnit>*, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::media::TimeUnit>*&, mozilla::Mirror<mozilla::media::TimeUnit>::Impl*>(char const*, mozilla::AbstractCanonical<mozilla::media::TimeUnit>*&, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), mozilla::Mirror<mozilla::media::TimeUnit>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<bool>*, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::RunnableMethodImpl<mozilla::AbstractCanonical<bool>*&, mozilla::Mirror<bool>::Impl*>(char const*, mozilla::AbstractCanonical<bool>*&, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), mozilla::Mirror<bool>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> > >, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> > >&, mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> > >&, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeIntervals> >, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeIntervals> >&, mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeIntervals> >&, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeUnit> >, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeUnit> >&, mozilla::Mirror<mozilla::media::TimeUnit>::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeUnit> >&, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), mozilla::Mirror<mozilla::media::TimeUnit>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<bool> >, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<bool> >&, mozilla::Mirror<bool>::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<bool> >&, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), mozilla::Mirror<bool>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::MediaFormatReader*>(char const*, mozilla::MediaFormatReader*&&, void (mozilla::MediaFormatReader::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(bool&&), true, (mozilla::RunnableKind)0, bool&&>::RunnableMethodImpl<mozilla::detail::Listener<bool>*, bool>(char const*, mozilla::detail::Listener<bool>*&&, void (mozilla::detail::Listener<bool>::*)(bool&&), bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<bool>*>(char const*, mozilla::detail::Listener<bool>*&&, void (mozilla::detail::Listener<bool>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), true, (mozilla::RunnableKind)0, mozilla::MediaPlaybackEvent::EventType&&>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, mozilla::MediaPlaybackEvent::EventType&>(char const*, mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*&&, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), mozilla::MediaPlaybackEvent::EventType&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*>(char const*, mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*&&, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(mozilla::MediaDecoderOwner::NextFrameStatus&&), true, (mozilla::RunnableKind)0, mozilla::MediaDecoderOwner::NextFrameStatus&&>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, mozilla::MediaDecoderOwner::NextFrameStatus&>(char const*, mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*&&, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(mozilla::MediaDecoderOwner::NextFrameStatus&&), mozilla::MediaDecoderOwner::NextFrameStatus&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*>(char const*, mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*&&, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(RefPtr<mozilla::AudioData>&&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::AudioData>&&>::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, RefPtr<mozilla::AudioData>&>(char const*, mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*&&, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(RefPtr<mozilla::AudioData>&&), RefPtr<mozilla::AudioData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*>(char const*, mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*&&, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(RefPtr<mozilla::VideoData>&&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::VideoData>&&>::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, RefPtr<mozilla::VideoData>&>(char const*, mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*&&, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(RefPtr<mozilla::VideoData>&&), RefPtr<mozilla::VideoData>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*>(char const*, mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*&&, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*, void (mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*>(char const*, mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*&&, void (mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::Maybe<mozilla::media::TimeUnit> const&), true, (mozilla::RunnableKind)0, mozilla::Maybe<mozilla::media::TimeUnit> >::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*&, mozilla::Maybe<mozilla::media::TimeUnit>&>(char const*, mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*&, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::Maybe<mozilla::media::TimeUnit> const&), mozilla::Maybe<mozilla::media::TimeUnit>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>(char const*, mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*&&, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&), 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::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*>(char const*, mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*&&, void (mozilla::detail::Listener<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::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState> >, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState> >&, mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState> >&, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<double> >, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<double> >&, mozilla::Mirror<double>::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<double> >&, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), mozilla::Mirror<double>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> > >, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> > >&, mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> > >&, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >&>(char const*, RefPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >&, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >&>(char const*, RefPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >&, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<bool> >, void (mozilla::AbstractMirror<bool>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<bool> >&>(char const*, RefPtr<mozilla::AbstractMirror<bool> >&, void (mozilla::AbstractMirror<bool>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::media::TimeUnit>*, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(mozilla::media::TimeUnit const&), true, (mozilla::RunnableKind)0, mozilla::media::TimeUnit>::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::media::TimeUnit>*&, mozilla::media::TimeUnit&>(char const*, mozilla::AbstractMirror<mozilla::media::TimeUnit>*&, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(mozilla::media::TimeUnit const&), mozilla::media::TimeUnit&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>*, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>*&, mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*>(char const*, mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>*&, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<double>*, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::RunnableMethodImpl<mozilla::AbstractCanonical<double>*&, mozilla::Mirror<double>::Impl*>(char const*, mozilla::AbstractCanonical<double>*&, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), mozilla::Mirror<double>::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >*, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::RunnableMethodImpl<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >*&, mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*>(char const*, mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >*&, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher*>(char const*, mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher*&&, void (mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(mozilla::MediaDecoder*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::MediaDecoder> >::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, mozilla::MediaDecoder*&>(char const*, mozilla::MediaDecoderStateMachine*&&, void (mozilla::MediaDecoderStateMachine::*)(mozilla::MediaDecoder*), mozilla::MediaDecoder*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), true, (mozilla::RunnableKind)0, mozilla::MediaPlaybackEvent&&>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, mozilla::MediaPlaybackEvent&>(char const*, mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*&&, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), mozilla::MediaPlaybackEvent&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::media::TimeUnit>::Impl*, void (mozilla::Canonical<mozilla::media::TimeUnit>::Impl::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::Canonical<mozilla::media::TimeUnit>::Impl*>(char const*, mozilla::Canonical<mozilla::media::TimeUnit>::Impl*&&, void (mozilla::Canonical<mozilla::media::TimeUnit>::Impl::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(mozilla::VideoDecodeMode), true, (mozilla::RunnableKind)0, mozilla::VideoDecodeMode>::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, mozilla::VideoDecodeMode&>(char const*, mozilla::MediaDecoderStateMachine*&&, void (mozilla::MediaDecoderStateMachine::*)(mozilla::VideoDecodeMode), mozilla::VideoDecodeMode&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaResult>*, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(mozilla::MediaResult&&), true, (mozilla::RunnableKind)0, mozilla::MediaResult&&>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaResult>*, mozilla::MediaResult const&>(char const*, mozilla::detail::Listener<mozilla::MediaResult>*&&, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(mozilla::MediaResult&&), mozilla::MediaResult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaResult>*, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaResult>*>(char const*, mozilla::detail::Listener<mozilla::MediaResult>*&&, void (mozilla::detail::Listener<mozilla::MediaResult>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&), true, (mozilla::RunnableKind)0, nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&>::RunnableMethodImpl<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility&>(char const*, mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*&&, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&), nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*>(char const*, mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*&&, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*>(char const*, mozilla::MediaDecoderStateMachine*&&, void (mozilla::MediaDecoderStateMachine::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(mozilla::DecoderDoctorEvent&&), true, (mozilla::RunnableKind)0, mozilla::DecoderDoctorEvent&&>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, mozilla::DecoderDoctorEvent&>(char const*, mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*&&, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(mozilla::DecoderDoctorEvent&&), mozilla::DecoderDoctorEvent&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*>(char const*, mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*&&, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, bool>(char const*, mozilla::MediaDecoderStateMachine*&&, void (mozilla::MediaDecoderStateMachine::*)(bool), bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::GetUserMediaWindowListener>, bool (mozilla::GetUserMediaWindowListener::*)(mozilla::SourceListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::SourceListener> >::RunnableMethodImpl<RefPtr<mozilla::GetUserMediaWindowListener>&, RefPtr<mozilla::SourceListener>&>(char const*, RefPtr<mozilla::GetUserMediaWindowListener>&, bool (mozilla::GetUserMediaWindowListener::*)(mozilla::SourceListener*), RefPtr<mozilla::SourceListener>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::SourceListener>, void (mozilla::SourceListener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::SourceListener>&>(char const*, RefPtr<mozilla::SourceListener>&, void (mozilla::SourceListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::MediaRecorder>, void (mozilla::dom::MediaRecorder::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::RunnableMethodImpl<RefPtr<mozilla::dom::MediaRecorder>&, nsresult&>(char const*, RefPtr<mozilla::dom::MediaRecorder>&, void (mozilla::dom::MediaRecorder::*)(nsresult), nsresult&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::MediaRecorder::Session*, void (mozilla::dom::MediaRecorder::Session::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::RunnableMethodImpl<mozilla::dom::MediaRecorder::Session*, nsresult const&>(char const*, mozilla::dom::MediaRecorder::Session*&&, void (mozilla::dom::MediaRecorder::Session::*)(nsresult), nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaEncoder>, void (mozilla::MediaEncoder::*)(mozilla::MediaEncoderListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener> >::RunnableMethodImpl<RefPtr<mozilla::MediaEncoder>&, RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>&>(char const*, RefPtr<mozilla::MediaEncoder>&, void (mozilla::MediaEncoder::*)(mozilla::MediaEncoderListener*), RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::media::TimeIntervals>*, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(mozilla::media::TimeIntervals const&), true, (mozilla::RunnableKind)0, mozilla::media::TimeIntervals>::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::media::TimeIntervals>*&, mozilla::media::TimeIntervals&>(char const*, mozilla::AbstractMirror<mozilla::media::TimeIntervals>*&, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(mozilla::media::TimeIntervals const&), mozilla::media::TimeIntervals&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >&>(char const*, RefPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >&, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(nsTArray<unsigned char>&&, nsTString<char16_t>&&), true, (mozilla::RunnableKind)0, nsTArray<unsigned char>&&, nsTString<char16_t>&&>::RunnableMethodImpl<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, nsTArray<unsigned char>&, nsTString<char16_t>&>(char const*, mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*&&, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(nsTArray<unsigned char>&&, nsTString<char16_t>&&), nsTArray<unsigned char>&, nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*>(char const*, mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*&&, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(mozilla::TrackInfo::TrackType), true, (mozilla::RunnableKind)0, mozilla::TrackInfo::TrackType>::RunnableMethodImpl<mozilla::MediaFormatReader*, mozilla::TrackInfo::TrackType&>(char const*, mozilla::MediaFormatReader*&&, void (mozilla::MediaFormatReader::*)(mozilla::TrackInfo::TrackType), mozilla::TrackInfo::TrackType&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl*, void (mozilla::Canonical<mozilla::media::TimeIntervals>::Impl::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl*>(char const*, mozilla::Canonical<mozilla::media::TimeIntervals>::Impl*&&, void (mozilla::Canonical<mozilla::media::TimeIntervals>::Impl::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::GetUserMediaWindowListener*, void (mozilla::GetUserMediaWindowListener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::GetUserMediaWindowListener*>(char const*, mozilla::GetUserMediaWindowListener*&&, void (mozilla::GetUserMediaWindowListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::MediaStreamTrack::PrincipalHandleListener*, void (mozilla::dom::MediaStreamTrack::PrincipalHandleListener::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >::RunnableMethodImpl<mozilla::dom::MediaStreamTrack::PrincipalHandleListener*, nsMainThreadPtrHandle<nsIPrincipal> const&>(char const*, mozilla::dom::MediaStreamTrack::PrincipalHandleListener*&&, void (mozilla::dom::MediaStreamTrack::PrincipalHandleListener::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), nsMainThreadPtrHandle<nsIPrincipal> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResource*, void (mozilla::MediaResource::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::MediaResource*>(char const*, mozilla::MediaResource*&&, void (mozilla::MediaResource::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaTimer*, void (mozilla::MediaTimer::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::MediaTimer*>(char const*, mozilla::MediaTimer*&&, void (mozilla::MediaTimer::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaTimer*, void (mozilla::MediaTimer::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::MediaTimer*>(char const*, mozilla::MediaTimer*&&, void (mozilla::MediaTimer::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher*>(char const*, mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher*&&, void (mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const, void (mozilla::MediaFormatReader::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const&>(char const*, RefPtr<mozilla::MediaFormatReader> const&, void (mozilla::MediaFormatReader::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const, nsresult (mozilla::MediaFormatReader::*)(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>), true, (mozilla::RunnableKind)0, mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> >::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const&, mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>&>(char const*, RefPtr<mozilla::MediaFormatReader> const&, nsresult (mozilla::MediaFormatReader::*)(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>), mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const, void (mozilla::MediaFormatReader::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const&, bool&>(char const*, RefPtr<mozilla::MediaFormatReader> const&, void (mozilla::MediaFormatReader::*)(bool), bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher*>(char const*, mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher*&&, void (mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaEncoder>, void (mozilla::MediaEncoder::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::MediaEncoder>&>(char const*, RefPtr<mozilla::MediaEncoder>&, void (mozilla::MediaEncoder::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaEncoder::EncoderListener*, void (mozilla::MediaEncoder::EncoderListener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::MediaEncoder::EncoderListener*>(char const*, mozilla::MediaEncoder::EncoderListener*&&, void (mozilla::MediaEncoder::EncoderListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(long), true, (mozilla::RunnableKind)0, long>::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>&, long&>(char const*, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::AudioTrackEncoder::*)(long), long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(long), true, (mozilla::RunnableKind)0, long>::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>&, long>(char const*, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::AudioTrackEncoder::*)(long), long&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>&>(char const*, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::AudioTrackEncoder::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(mozilla::AudioSegment&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::AudioSegment> >::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>&, mozilla::AudioSegment>(char const*, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::AudioTrackEncoder::*)(mozilla::AudioSegment&&), mozilla::AudioSegment&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::MediaEncoder::EncoderListener> >::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>&, RefPtr<mozilla::MediaEncoder::EncoderListener>&>(char const*, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), RefPtr<mozilla::MediaEncoder::EncoderListener>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(long), true, (mozilla::RunnableKind)0, long>::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>&, long&>(char const*, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)(long), long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(long), true, (mozilla::RunnableKind)0, long>::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>&, long>(char const*, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)(long), long&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>&>(char const*, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(mozilla::VideoSegment&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::VideoSegment> >::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>&, mozilla::VideoSegment>(char const*, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)(mozilla::VideoSegment&&), mozilla::VideoSegment&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::MediaEncoder::EncoderListener> >::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>&, RefPtr<mozilla::MediaEncoder::EncoderListener>&>(char const*, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), RefPtr<mozilla::MediaEncoder::EncoderListener>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaEncoderListener>, void (mozilla::MediaEncoderListener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::MediaEncoderListener>&>(char const*, RefPtr<mozilla::MediaEncoderListener>&, void (mozilla::MediaEncoderListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(int), true, (mozilla::RunnableKind)0, int>::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>&, int&>(char const*, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)(int), int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, unsigned int, NS_ConvertUTF8toUTF16>::RunnableMethodImpl<mozilla::ChromiumCDMProxy*&, unsigned int&, NS_ConvertUTF8toUTF16>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsTSubstring<char16_t> const&), unsigned int&, NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, bool), true, (mozilla::RunnableKind)0, unsigned int, bool>::RunnableMethodImpl<mozilla::ChromiumCDMProxy*&, unsigned int&, bool&>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, bool), unsigned int&, bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::RunnableMethodImpl<mozilla::ChromiumCDMProxy*&, unsigned int&>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int), unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsresult, nsTString<char> >::RunnableMethodImpl<mozilla::ChromiumCDMProxy*&, unsigned int&, nsresult&, nsTString<char> const&>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), unsigned int&, nsresult&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, NS_ConvertUTF8toUTF16, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> >::RunnableMethodImpl<mozilla::ChromiumCDMProxy*&, NS_ConvertUTF8toUTF16, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> >(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> const&), NS_ConvertUTF8toUTF16&&, mozilla::dom::MediaKeyMessageType&&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, mozilla::dom::MediaKeyStatus), true, (mozilla::RunnableKind)0, unsigned int, mozilla::dom::MediaKeyStatus>::RunnableMethodImpl<mozilla::ChromiumCDMProxy*&, unsigned int&, mozilla::dom::MediaKeyStatus>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, mozilla::dom::MediaKeyStatus), unsigned int&, mozilla::dom::MediaKeyStatus&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, NS_ConvertUTF8toUTF16>::RunnableMethodImpl<mozilla::ChromiumCDMProxy*&, NS_ConvertUTF8toUTF16>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&), NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, long), true, (mozilla::RunnableKind)0, NS_ConvertUTF8toUTF16, long>::RunnableMethodImpl<mozilla::ChromiumCDMProxy*&, NS_ConvertUTF8toUTF16, long>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, long), NS_ConvertUTF8toUTF16&&, long&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::ChromiumCDMProxy*&>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const&, unsigned int const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const, unsigned int const>::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&), unsigned int&, unsigned int>(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const&, unsigned int const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&), unsigned int&, unsigned int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const, nsTString<char> const>::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, bool (mozilla::gmp::ChromiumCDMChild::*&)(unsigned int, nsTString<char> const&), unsigned int&, nsTString<char> >(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const&, nsTString<char> const&), bool (mozilla::gmp::ChromiumCDMChild::*&)(unsigned int, nsTString<char> const&), unsigned int&, nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const>::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&), unsigned int&>(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&), unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const, unsigned int const, unsigned int const, nsTString<char> const>::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int&, unsigned int, unsigned int&, nsTString<char> >(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), 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::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const, unsigned int const, nsTArray<unsigned char> const>::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char>, unsigned int, nsTArray<unsigned char>&>(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), 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::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const, nsTArray<mozilla::gmp::CDMKeyInformation> const>::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char>, nsTArray<mozilla::gmp::CDMKeyInformation>&>(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char>&&, nsTArray<mozilla::gmp::CDMKeyInformation>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const&, double const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const, double const>::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, double const&), nsTString<char>, double&>(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const&, double const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, double const&), nsTString<char>&&, double&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const>::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&), nsTString<char> >(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&), nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, unsigned int&>(char const*, mozilla::ChromiumCDMProxy*&&, void (mozilla::ChromiumCDMProxy::*)(unsigned int), unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> >::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>&, unsigned int&, unsigned int&, unsigned int&, unsigned int&, nsTArray<unsigned char> >(char const*, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> const&), unsigned int&, unsigned int&, unsigned int&, unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, nsTString<char16_t>), true, (mozilla::RunnableKind)0, unsigned int, unsigned int, nsTString<char16_t> >::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>&, unsigned int&, unsigned int, nsTSubstring<char16_t> const&>(char const*, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, nsTString<char16_t>), unsigned int&, unsigned int&&, nsTSubstring<char16_t> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsTArray<unsigned char> >::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>&, unsigned int&, nsTArray<unsigned char> >(char const*, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTArray<unsigned char> const&), unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, nsTString<char>, unsigned int, nsTArray<unsigned char> >::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>&, NS_ConvertUTF16toUTF8, unsigned int&, nsTArray<unsigned char> >(char const*, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int, nsTArray<unsigned char> const&), NS_ConvertUTF16toUTF8&&, unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int), true, (mozilla::RunnableKind)0, nsTString<char>, unsigned int>::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>&, NS_ConvertUTF16toUTF8, unsigned int&>(char const*, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int), NS_ConvertUTF16toUTF8&&, unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsresult, nsTString<char> >::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, unsigned int&, nsresult&, nsTString<char> const&>(char const*, mozilla::ChromiumCDMProxy*&&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), unsigned int&, nsresult&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTString<char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsTString<char> >::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>&, unsigned int&, NS_ConvertUTF16toUTF8>(char const*, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTString<char> const&), unsigned int&, NS_ConvertUTF16toUTF8&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::GMPContentParent>, void (mozilla::gmp::GMPContentParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::gmp::GMPContentParent>&>(char const*, RefPtr<mozilla::gmp::GMPContentParent>&, void (mozilla::gmp::GMPContentParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::GMPCrashHelper*, void (mozilla::GMPCrashHelper::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::GMPCrashHelper*>(char const*, mozilla::GMPCrashHelper*&&, void (mozilla::GMPCrashHelper::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::GeckoMediaPluginServiceParent>, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(RefPtr<mozilla::gmp::GMPParent> const&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::gmp::GMPParent> >::RunnableMethodImpl<RefPtr<mozilla::gmp::GeckoMediaPluginServiceParent>&, RefPtr<mozilla::gmp::GMPParent>&>(char const*, RefPtr<mozilla::gmp::GeckoMediaPluginServiceParent>&, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(RefPtr<mozilla::gmp::GMPParent> const&), RefPtr<mozilla::gmp::GMPParent>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPParent*, void (mozilla::gmp::GMPParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::gmp::GMPParent*>(char const*, mozilla::gmp::GMPParent*&&, void (mozilla::gmp::GMPParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPSyncRunnable*, void (mozilla::gmp::GMPSyncRunnable::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::gmp::GMPSyncRunnable*>(char const*, mozilla::gmp::GMPSyncRunnable*&&, void (mozilla::gmp::GMPSyncRunnable::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::GMPRunnable>, void (mozilla::gmp::GMPRunnable::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::gmp::GMPRunnable>&>(char const*, RefPtr<mozilla::gmp::GMPRunnable>&, void (mozilla::gmp::GMPRunnable::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPRunnable*, void (mozilla::gmp::GMPRunnable::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::gmp::GMPRunnable*>(char const*, mozilla::gmp::GMPRunnable*&&, void (mozilla::gmp::GMPRunnable::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPProcessParent*, void (mozilla::gmp::GMPProcessParent::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::gmp::GMPProcessParent*>(char const*, mozilla::gmp::GMPProcessParent*&&, void (mozilla::gmp::GMPProcessParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*>(char const*, mozilla::gmp::GeckoMediaPluginServiceParent*&&, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(long), true, (mozilla::RunnableKind)0, long>::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, long&>(char const*, mozilla::gmp::GeckoMediaPluginServiceParent*&&, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(long), long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(nsTSubstring<char> const&, mozilla::OriginAttributesPattern const&), true, (mozilla::RunnableKind)0, nsTString<char>, mozilla::OriginAttributesPattern>::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, NS_ConvertUTF16toUTF8, mozilla::OriginAttributesPattern const&>(char const*, mozilla::gmp::GeckoMediaPluginServiceParent*&&, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(nsTSubstring<char> const&, mozilla::OriginAttributesPattern const&), NS_ConvertUTF16toUTF8&&, mozilla::OriginAttributesPattern const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPServiceParent*, void (mozilla::gmp::GMPServiceParent::*)(mozilla::Monitor*, bool*), false, (mozilla::RunnableKind)0, mozilla::Monitor*, bool*>::RunnableMethodImpl<mozilla::gmp::GMPServiceParent*, mozilla::Monitor*, bool*>(char const*, mozilla::gmp::GMPServiceParent*&&, void (mozilla::gmp::GMPServiceParent::*)(mozilla::Monitor*, bool*), mozilla::Monitor*&&, bool*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPVideoDecoderChild*, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoDecoderChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::gmp::GMPVideoDecoderChild*>(char const*, mozilla::gmp::GMPVideoDecoderChild*&&, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoDecoderChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPVideoEncoderChild*, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoEncoderChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::gmp::GMPVideoEncoderChild*>(char const*, mozilla::gmp::GMPVideoEncoderChild*&&, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoEncoderChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::VideoDecoderManagerParent>, void (mozilla::dom::VideoDecoderManagerParent::*)(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&>::RunnableMethodImpl<RefPtr<mozilla::dom::VideoDecoderManagerParent>&, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> >(char const*, RefPtr<mozilla::dom::VideoDecoderManagerParent>&, void (mozilla::dom::VideoDecoderManagerParent::*)(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&), mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<long>*, void (mozilla::detail::Listener<long>::*)(long&&), true, (mozilla::RunnableKind)0, long&&>::RunnableMethodImpl<mozilla::detail::Listener<long>*, long&>(char const*, mozilla::detail::Listener<long>*&&, void (mozilla::detail::Listener<long>::*)(long&&), long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<long>*, void (mozilla::detail::Listener<long>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<long>*>(char const*, mozilla::detail::Listener<long>*&&, void (mozilla::detail::Listener<long>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DecodedStreamGraphListener*, void (mozilla::DecodedStreamGraphListener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::DecodedStreamGraphListener*>(char const*, mozilla::DecodedStreamGraphListener*&&, void (mozilla::DecodedStreamGraphListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaStream*, void (mozilla::MediaStream::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::MediaStream*&>(char const*, mozilla::MediaStream*&, void (mozilla::MediaStream::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(bool&&), true, (mozilla::RunnableKind)0, bool&&>::RunnableMethodImpl<mozilla::detail::Listener<bool>*, bool&>(char const*, mozilla::detail::Listener<bool>*&&, void (mozilla::detail::Listener<bool>::*)(bool&&), bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSourceDemuxer*, void (mozilla::MediaSourceDemuxer::*)(RefPtr<mozilla::TrackBuffersManager>&&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::TrackBuffersManager>&&>::RunnableMethodImpl<mozilla::MediaSourceDemuxer*, RefPtr<mozilla::TrackBuffersManager>&>(char const*, mozilla::MediaSourceDemuxer*&&, void (mozilla::MediaSourceDemuxer::*)(RefPtr<mozilla::TrackBuffersManager>&&), RefPtr<mozilla::TrackBuffersManager>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::TrackBuffersManager*, void (mozilla::TrackBuffersManager::*)(mozilla::SourceBufferTask*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::SourceBufferTask> >::RunnableMethodImpl<mozilla::TrackBuffersManager*, mozilla::SourceBufferTask*&>(char const*, mozilla::TrackBuffersManager*&&, void (mozilla::TrackBuffersManager::*)(mozilla::SourceBufferTask*), mozilla::SourceBufferTask*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::TrackBuffersManager*, void (mozilla::TrackBuffersManager::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::TrackBuffersManager*>(char const*, mozilla::TrackBuffersManager*&&, void (mozilla::TrackBuffersManager::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSourceDecoder*, void (mozilla::MediaSourceDecoder::*)(long), true, (mozilla::RunnableKind)0, long>::RunnableMethodImpl<mozilla::MediaSourceDecoder*, long>(char const*, mozilla::MediaSourceDecoder*&&, void (mozilla::MediaSourceDecoder::*)(long), long&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(mozilla::TrackInfo::TrackType&&), true, (mozilla::RunnableKind)0, mozilla::TrackInfo::TrackType&&>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, mozilla::TrackInfo::TrackType const&>(char const*, mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*&&, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(mozilla::TrackInfo::TrackType&&), mozilla::TrackInfo::TrackType const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*>(char const*, mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*&&, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher*>(char const*, mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher*&&, void (mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, nsTString<char> >::RunnableMethodImpl<mozilla::camera::CamerasChild*, mozilla::camera::CaptureEngine&, nsTString<char>&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&), mozilla::camera::CaptureEngine&, nsTString<char>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine>::RunnableMethodImpl<mozilla::camera::CamerasChild*, mozilla::camera::CaptureEngine&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&), mozilla::camera::CaptureEngine&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, int const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, nsTString<char>, unsigned int>::RunnableMethodImpl<mozilla::camera::CamerasChild*, mozilla::camera::CaptureEngine&, nsTString<char>&, unsigned int const&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, int const&), mozilla::camera::CaptureEngine&, nsTString<char>&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, unsigned int>::RunnableMethodImpl<mozilla::camera::CamerasChild*, mozilla::camera::CaptureEngine&, unsigned int&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), mozilla::camera::CaptureEngine&, unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, mozilla::ipc::PrincipalInfo const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, nsTString<char>, mozilla::ipc::PrincipalInfo const&>::RunnableMethodImpl<mozilla::camera::CamerasChild*, mozilla::camera::CaptureEngine&, nsTString<char>&, mozilla::ipc::PrincipalInfo const&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, mozilla::ipc::PrincipalInfo const&), mozilla::camera::CaptureEngine&, nsTString<char>&, mozilla::ipc::PrincipalInfo const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, int>::RunnableMethodImpl<mozilla::camera::CamerasChild*, mozilla::camera::CaptureEngine&, int const&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), mozilla::camera::CaptureEngine&, int const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&, mozilla::camera::VideoCaptureCapability const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, int, mozilla::camera::VideoCaptureCapability>::RunnableMethodImpl<mozilla::camera::CamerasChild*, mozilla::camera::CaptureEngine&, int const&, mozilla::camera::VideoCaptureCapability&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&, mozilla::camera::VideoCaptureCapability const&), mozilla::camera::CaptureEngine&, int const&, mozilla::camera::VideoCaptureCapability&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::camera::CamerasChild*>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSystemResourceManager*, void (mozilla::MediaSystemResourceManager::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::RunnableMethodImpl<mozilla::MediaSystemResourceManager*, unsigned int const&>(char const*, mozilla::MediaSystemResourceManager*&&, void (mozilla::MediaSystemResourceManager::*)(unsigned int), unsigned int const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSystemResourceManager*, void (mozilla::MediaSystemResourceManager::*)(unsigned int, bool), true, (mozilla::RunnableKind)0, unsigned int, bool>::RunnableMethodImpl<mozilla::MediaSystemResourceManager*, unsigned int&, bool&>(char const*, mozilla::MediaSystemResourceManager*&&, void (mozilla::MediaSystemResourceManager::*)(unsigned int, bool), unsigned int&, bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::AudioDestinationNode*, void (mozilla::dom::AudioDestinationNode::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::AudioDestinationNode*>(char const*, mozilla::dom::AudioDestinationNode*&&, void (mozilla::dom::AudioDestinationNode::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecodeTask*, void (mozilla::MediaDecodeTask::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::MediaDecodeTask*>(char const*, mozilla::MediaDecodeTask*&&, void (mozilla::MediaDecodeTask::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<WebCore::ReverbConvolver*, void (WebCore::ReverbConvolver::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<WebCore::ReverbConvolver*>(char const*, WebCore::ReverbConvolver*&&, void (WebCore::ReverbConvolver::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::nsFakeSynthServices*, void (mozilla::dom::nsFakeSynthServices::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::nsFakeSynthServices*>(char const*, mozilla::dom::nsFakeSynthServices*&&, void (mozilla::dom::nsFakeSynthServices::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SpeechDispatcherService*, void (mozilla::dom::SpeechDispatcherService::*)(unsigned int, unsigned int), true, (mozilla::RunnableKind)0, unsigned int, SPDNotificationType>::RunnableMethodImpl<mozilla::dom::SpeechDispatcherService*&, unsigned int, SPDNotificationType&>(char const*, mozilla::dom::SpeechDispatcherService*&, void (mozilla::dom::SpeechDispatcherService::*)(unsigned int, unsigned int), unsigned int&&, SPDNotificationType&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SpeechDispatcherService*, void (mozilla::dom::SpeechDispatcherService::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::SpeechDispatcherService*>(char const*, mozilla::dom::SpeechDispatcherService*&&, void (mozilla::dom::SpeechDispatcherService::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::SpeechDispatcherCallback>, bool (mozilla::dom::SpeechDispatcherCallback::*)(SPDNotificationType), true, (mozilla::RunnableKind)0, SPDNotificationType>::RunnableMethodImpl<RefPtr<mozilla::dom::SpeechDispatcherCallback>&, SPDNotificationType>(char const*, RefPtr<mozilla::dom::SpeechDispatcherCallback>&, bool (mozilla::dom::SpeechDispatcherCallback::*)(SPDNotificationType), SPDNotificationType&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::NotificationPermissionRequest*, nsresult (mozilla::dom::NotificationPermissionRequest::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::NotificationPermissionRequest*>(char const*, mozilla::dom::NotificationPermissionRequest*&&, nsresult (mozilla::dom::NotificationPermissionRequest::*)())
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::quota::(anonymous namespace)::Quota*, void (mozilla::dom::quota::(anonymous namespace)::Quota::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::quota::(anonymous namespace)::Quota*>(char const*, mozilla::dom::quota::(anonymous namespace)::Quota*&&, void (mozilla::dom::quota::(anonymous namespace)::Quota::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::quota::QuotaManager*, void (mozilla::dom::quota::QuotaManager::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::quota::QuotaManager*>(char const*, mozilla::dom::quota::QuotaManager*&&, void (mozilla::dom::quota::QuotaManager::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::LocalStorageCacheBridge*, void (mozilla::dom::LocalStorageCacheBridge::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::LocalStorageCacheBridge*>(char const*, mozilla::dom::LocalStorageCacheBridge*&&, void (mozilla::dom::LocalStorageCacheBridge::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBThread*, void (mozilla::dom::StorageDBThread::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::StorageDBThread*>(char const*, mozilla::dom::StorageDBThread*&&, void (mozilla::dom::StorageDBThread::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::CacheParentBridge*, void (mozilla::dom::StorageDBParent::CacheParentBridge::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::StorageDBParent::CacheParentBridge*>(char const*, mozilla::dom::StorageDBParent::CacheParentBridge*&&, void (mozilla::dom::StorageDBParent::CacheParentBridge::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::UsageParentBridge*, void (mozilla::dom::StorageDBParent::UsageParentBridge::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::StorageDBParent::UsageParentBridge*>(char const*, mozilla::dom::StorageDBParent::UsageParentBridge*&&, void (mozilla::dom::StorageDBParent::UsageParentBridge::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::ObserverSink*, void (mozilla::dom::StorageDBParent::ObserverSink::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::StorageDBParent::ObserverSink*>(char const*, mozilla::dom::StorageDBParent::ObserverSink*&&, void (mozilla::dom::StorageDBParent::ObserverSink::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::ObserverSink*, void (mozilla::dom::StorageDBParent::ObserverSink::*)(nsTString<char> const&, nsTString<char16_t> const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, nsTString<char>, nsTString<char16_t>, nsTString<char> >::RunnableMethodImpl<mozilla::dom::StorageDBParent::ObserverSink*, char const*&, nsTSubstring<char16_t> const&, nsTSubstring<char> const&>(char const*, mozilla::dom::StorageDBParent::ObserverSink*&&, void (mozilla::dom::StorageDBParent::ObserverSink::*)(nsTString<char> const&, nsTString<char16_t> const&, nsTString<char> const&), char const*&, nsTSubstring<char16_t> const&, nsTSubstring<char> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SVGFEImageElement*, void (mozilla::dom::SVGFEImageElement::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::SVGFEImageElement*>(char const*, mozilla::dom::SVGFEImageElement*&&, void (mozilla::dom::SVGFEImageElement::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SVGImageElement*, void (mozilla::dom::SVGImageElement::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::SVGImageElement*>(char const*, mozilla::dom::SVGImageElement*&&, void (mozilla::dom::SVGImageElement::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SVGStyleElement*, void (mozilla::dom::SVGStyleElement::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::SVGStyleElement*>(char const*, mozilla::dom::SVGStyleElement*&&, void (mozilla::dom::SVGStyleElement::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool), false, (mozilla::RunnableKind)1, gfxSurfaceType, mozilla::plugins::NPRemoteWindow, bool>::RunnableMethodImpl<mozilla::plugins::PluginInstanceChild*, gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool>(char const*, mozilla::plugins::PluginInstanceChild*&&, void (mozilla::plugins::PluginInstanceChild::*)(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool), gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(), false, (mozilla::RunnableKind)1>::RunnableMethodImpl<mozilla::plugins::PluginInstanceChild*>(char const*, mozilla::plugins::PluginInstanceChild*&&, void (mozilla::plugins::PluginInstanceChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerChild*, void (mozilla::plugins::FunctionBrokerChild::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&>::RunnableMethodImpl<mozilla::plugins::FunctionBrokerChild*, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> >(char const*, mozilla::plugins::FunctionBrokerChild*&&, void (mozilla::plugins::FunctionBrokerChild::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&), mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerChild*, void (mozilla::plugins::FunctionBrokerChild::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::plugins::FunctionBrokerChild*&>(char const*, mozilla::plugins::FunctionBrokerChild*&, void (mozilla::plugins::FunctionBrokerChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerParent*, void (mozilla::plugins::FunctionBrokerParent::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&>::RunnableMethodImpl<mozilla::plugins::FunctionBrokerParent*, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent> >(char const*, mozilla::plugins::FunctionBrokerParent*&&, void (mozilla::plugins::FunctionBrokerParent::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&), mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerParent*, void (mozilla::plugins::FunctionBrokerParent::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::plugins::FunctionBrokerParent*&>(char const*, mozilla::plugins::FunctionBrokerParent*&, void (mozilla::plugins::FunctionBrokerParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginProcessParent*, void (mozilla::plugins::PluginProcessParent::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::plugins::PluginProcessParent*>(char const*, mozilla::plugins::PluginProcessParent*&&, void (mozilla::plugins::PluginProcessParent::*)())
Unexecuted instantiation: ActorsParent.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::Database*, void (mozilla::dom::indexedDB::(anonymous namespace)::Database::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::Database*>(char const*, mozilla::dom::indexedDB::(anonymous namespace)::Database*&&, void (mozilla::dom::indexedDB::(anonymous namespace)::Database::*)())
Unexecuted instantiation: ActorsParent.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp*, void (mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp*>(char const*, mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp*&&, void (mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp::*)())
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper*, void (mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper*>(char const*, mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper*&&, void (mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::IDBDatabase*, void (mozilla::dom::IDBDatabase::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::IDBDatabase*>(char const*, mozilla::dom::IDBDatabase*&&, void (mozilla::dom::IDBDatabase::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentChild*, void (mozilla::dom::ContentChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ContentChild*>(char const*, mozilla::dom::ContentChild*&&, void (mozilla::dom::ContentChild::*)())
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char> const&, nsTString<char16_t> const&), false, (mozilla::RunnableKind)0, mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char>, nsTString<char16_t> >::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, mozilla::dom::IdType<mozilla::dom::TabParent>&, nsTAutoStringN<char, 64ul>&, nsTString<char16_t> const&>(char const*, (anonymous namespace)::HangMonitorChild*&&, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char> const&, nsTString<char16_t> const&), mozilla::dom::IdType<mozilla::dom::TabParent>&, nsTAutoStringN<char, 64ul>&, nsTString<char16_t> const&)
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(unsigned int), false, (mozilla::RunnableKind)0, unsigned int>::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, unsigned int&>(char const*, (anonymous namespace)::HangMonitorChild*&&, void ((anonymous namespace)::HangMonitorChild::*)(unsigned int), unsigned int&)
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*>(char const*, (anonymous namespace)::HangMonitorChild*&&, void ((anonymous namespace)::HangMonitorChild::*)())
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(bool), false, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*&, bool>(char const*, (anonymous namespace)::HangMonitorParent*&, void ((anonymous namespace)::HangMonitorParent::*)(bool), bool&&)
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*&>(char const*, (anonymous namespace)::HangMonitorParent*&, void ((anonymous namespace)::HangMonitorParent::*)())
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&>::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*&, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent> >(char const*, (anonymous namespace)::HangMonitorParent*&, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&), mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&)
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*>(char const*, (anonymous namespace)::HangMonitorParent*&&, void ((anonymous namespace)::HangMonitorParent::*)())
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch const&), false, (mozilla::RunnableKind)0, mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch>::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, mozilla::dom::IdType<mozilla::dom::TabParent>&, bool&, mozilla::layers::LayersObserverEpoch const&>(char const*, (anonymous namespace)::HangMonitorParent*&&, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch const&), mozilla::dom::IdType<mozilla::dom::TabParent>&, bool&, mozilla::layers::LayersObserverEpoch const&)
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&>::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*&, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> >(char const*, (anonymous namespace)::HangMonitorChild*&, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&), mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentBridgeChild*, void (mozilla::dom::ContentBridgeChild::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ContentBridgeChild*>(char const*, mozilla::dom::ContentBridgeChild*&&, void (mozilla::dom::ContentBridgeChild::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentBridgeParent*, void (mozilla::dom::ContentBridgeParent::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ContentBridgeParent*>(char const*, mozilla::dom::ContentBridgeParent*&&, void (mozilla::dom::ContentBridgeParent::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentParent*, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), true, (mozilla::RunnableKind)0, mozilla::dom::ContentParent::ShutDownMethod>::RunnableMethodImpl<mozilla::dom::ContentParent*&, mozilla::dom::ContentParent::ShutDownMethod>(char const*, mozilla::dom::ContentParent*&, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), mozilla::dom::ContentParent::ShutDownMethod&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentParent*, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), true, (mozilla::RunnableKind)0, mozilla::dom::ContentParent::ShutDownMethod>::RunnableMethodImpl<mozilla::dom::ContentParent*, mozilla::dom::ContentParent::ShutDownMethod>(char const*, mozilla::dom::ContentParent*&&, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), mozilla::dom::ContentParent::ShutDownMethod&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::PreallocatedProcessManagerImpl*, void (mozilla::PreallocatedProcessManagerImpl::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::PreallocatedProcessManagerImpl*>(char const*, mozilla::PreallocatedProcessManagerImpl*&&, void (mozilla::PreallocatedProcessManagerImpl::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ipc::WritableSharedMap*, void (mozilla::dom::ipc::WritableSharedMap::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ipc::WritableSharedMap*>(char const*, mozilla::dom::ipc::WritableSharedMap*&&, void (mozilla::dom::ipc::WritableSharedMap::*)())
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable> const, void (mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable> const&>(char const*, RefPtr<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable> const&, void (mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FHIDTokenManager*, void (mozilla::dom::U2FHIDTokenManager::*)(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&>::RunnableMethodImpl<mozilla::dom::U2FHIDTokenManager*&, mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> > >(char const*, mozilla::dom::U2FHIDTokenManager*&, void (mozilla::dom::U2FHIDTokenManager::*)(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&), mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(nsTString<char16_t>), true, (mozilla::RunnableKind)0, nsTString<char16_t> >::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, nsTAutoStringN<char16_t, 64ul>&>(char const*, mozilla::dom::U2FTokenManager*&&, void (mozilla::dom::U2FTokenManager::*)(nsTString<char16_t>), nsTAutoStringN<char16_t, 64ul>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0, unsigned long, bool>::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, unsigned long&, bool&>(char const*, mozilla::dom::U2FTokenManager*&&, void (mozilla::dom::U2FTokenManager::*)(unsigned long, bool), unsigned long&, bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(unsigned long), true, (mozilla::RunnableKind)0, unsigned long>::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, unsigned long&>(char const*, mozilla::dom::U2FTokenManager*&&, void (mozilla::dom::U2FTokenManager::*)(unsigned long), unsigned long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsBindingManager*, void (nsBindingManager::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsBindingManager*>(char const*, nsBindingManager*&&, void (nsBindingManager::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XMLStylesheetProcessingInstruction*, void (mozilla::dom::XMLStylesheetProcessingInstruction::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::XMLStylesheetProcessingInstruction*>(char const*, mozilla::dom::XMLStylesheetProcessingInstruction*&&, void (mozilla::dom::XMLStylesheetProcessingInstruction::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsXMLContentSink*, void (nsXMLContentSink::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsXMLContentSink*>(char const*, nsXMLContentSink*&&, void (nsXMLContentSink::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsXMLPrettyPrinter*, void (nsXMLPrettyPrinter::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsXMLPrettyPrinter*>(char const*, nsXMLPrettyPrinter*&&, void (nsXMLPrettyPrinter::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XULDocument*, void (mozilla::dom::XULDocument::*)(mozilla::dom::Element*, int, nsAtom*), true, (mozilla::RunnableKind)0, mozilla::dom::Element*, int, nsAtom*>::RunnableMethodImpl<mozilla::dom::XULDocument*, mozilla::dom::Element*&, int const&, nsAtom*&>(char const*, mozilla::dom::XULDocument*&&, void (mozilla::dom::XULDocument::*)(mozilla::dom::Element*, int, nsAtom*), mozilla::dom::Element*&, int const&, nsAtom*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XULDocument*, void (mozilla::dom::XULDocument::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::XULDocument*>(char const*, mozilla::dom::XULDocument*&&, void (mozilla::dom::XULDocument::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistDocumentReceiver>, nsresult (nsIWebBrowserPersistDocumentReceiver::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistDocumentReceiver>&, nsresult const&>(char const*, nsCOMPtr<nsIWebBrowserPersistDocumentReceiver>&, nsresult (nsIWebBrowserPersistDocumentReceiver::*)(nsresult), nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistResourceVisitor>, nsresult (nsIWebBrowserPersistResourceVisitor::*)(nsIWebBrowserPersistDocument*, nsresult), true, (mozilla::RunnableKind)0, nsCOMPtr<nsIWebBrowserPersistDocument>, nsresult>::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistResourceVisitor>&, nsCOMPtr<nsIWebBrowserPersistDocument>&, nsresult const&>(char const*, nsCOMPtr<nsIWebBrowserPersistResourceVisitor>&, nsresult (nsIWebBrowserPersistResourceVisitor::*)(nsIWebBrowserPersistDocument*, nsresult), nsCOMPtr<nsIWebBrowserPersistDocument>&, nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistWriteCompletion>, nsresult (nsIWebBrowserPersistWriteCompletion::*)(nsIWebBrowserPersistDocument*, nsIOutputStream*, nsTSubstring<char> const&, nsresult), true, (mozilla::RunnableKind)0, nsCOMPtr<nsIWebBrowserPersistDocument>, nsCOMPtr<nsIOutputStream>, nsTString<char>, nsresult>::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistWriteCompletion>&, nsCOMPtr<nsIWebBrowserPersistDocument>&, nsCOMPtr<nsIOutputStream>&, nsTString<char> const&, nsresult const&>(char const*, nsCOMPtr<nsIWebBrowserPersistWriteCompletion>&, nsresult (nsIWebBrowserPersistWriteCompletion::*)(nsIWebBrowserPersistDocument*, nsIOutputStream*, nsTSubstring<char> const&, nsresult), nsCOMPtr<nsIWebBrowserPersistDocument>&, nsCOMPtr<nsIOutputStream>&, nsTString<char> const&, nsresult const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWebBrowserPersist*, void (nsWebBrowserPersist::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsWebBrowserPersist*>(char const*, nsWebBrowserPersist*&&, void (nsWebBrowserPersist::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsWebBrowserPersist>, void (nsWebBrowserPersist::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsWebBrowserPersist>&>(char const*, RefPtr<nsWebBrowserPersist>&, void (nsWebBrowserPersist::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWebBrowserPersist*, nsresult (nsWebBrowserPersist::*)(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > > >::RunnableMethodImpl<nsWebBrowserPersist*, mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > >(char const*, nsWebBrowserPersist*&&, nsresult (nsWebBrowserPersist::*)(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&), mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XMLHttpRequestMainThread*, void (mozilla::dom::XMLHttpRequestMainThread::*)(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType), true, (mozilla::RunnableKind)0, mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>::RunnableMethodImpl<mozilla::dom::XMLHttpRequestMainThread*, mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>(char const*, mozilla::dom::XMLHttpRequestMainThread*&&, void (mozilla::dom::XMLHttpRequestMainThread::*)(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType), mozilla::dom::XMLHttpRequestMainThread::ProgressEventType&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::WorkletThread*, nsresult (nsThread::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::WorkletThread*>(char const*, mozilla::dom::WorkletThread*&&, nsresult (nsThread::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIScriptElement*, nsresult (nsIScriptElement::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsIScriptElement*&>(char const*, nsIScriptElement*&, nsresult (nsIScriptElement::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ScriptLoader*, void (mozilla::dom::ScriptLoader::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ScriptLoader*>(char const*, mozilla::dom::ScriptLoader*&&, void (mozilla::dom::ScriptLoader::*)())
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::WaitUntilHandler*, void (mozilla::dom::(anonymous namespace)::WaitUntilHandler::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::WaitUntilHandler*>(char const*, mozilla::dom::(anonymous namespace)::WaitUntilHandler*&&, void (mozilla::dom::(anonymous namespace)::WaitUntilHandler::*)())
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback*, void (mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback*, bool&>(char const*, mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback*&&, void (mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback::*)(bool), bool&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::PushErrorReporter*, void (mozilla::dom::(anonymous namespace)::PushErrorReporter::*)(unsigned short), true, (mozilla::RunnableKind)0, unsigned short>::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::PushErrorReporter*, unsigned short&>(char const*, mozilla::dom::(anonymous namespace)::PushErrorReporter*&&, void (mozilla::dom::(anonymous namespace)::PushErrorReporter::*)(unsigned short), unsigned short&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::ServiceWorkerRegistrar>, void (mozilla::dom::ServiceWorkerRegistrar::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::RunnableMethodImpl<RefPtr<mozilla::dom::ServiceWorkerRegistrar>&, unsigned int&>(char const*, RefPtr<mozilla::dom::ServiceWorkerRegistrar>&, void (mozilla::dom::ServiceWorkerRegistrar::*)(unsigned int), unsigned int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::WorkerListener*, void (mozilla::dom::WorkerListener::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), true, (mozilla::RunnableKind)1, mozilla::dom::ServiceWorkerRegistrationDescriptor>::RunnableMethodImpl<mozilla::dom::WorkerListener*, mozilla::dom::ServiceWorkerRegistrationDescriptor const&>(char const*, mozilla::dom::WorkerListener*&&, void (mozilla::dom::WorkerListener::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), mozilla::dom::ServiceWorkerRegistrationDescriptor const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerJob*, void (mozilla::dom::ServiceWorkerJob::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ServiceWorkerJob*>(char const*, mozilla::dom::ServiceWorkerJob*&&, void (mozilla::dom::ServiceWorkerJob::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerProxy*, void (mozilla::dom::ServiceWorkerProxy::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ServiceWorkerProxy*>(char const*, mozilla::dom::ServiceWorkerProxy*&&, void (mozilla::dom::ServiceWorkerProxy::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrar*, void (mozilla::dom::ServiceWorkerRegistrar::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrar*>(char const*, mozilla::dom::ServiceWorkerRegistrar*&&, void (mozilla::dom::ServiceWorkerRegistrar::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistration*, void (mozilla::dom::ServiceWorkerRegistration::*)(), true, (mozilla::RunnableKind)1>::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistration*>(char const*, mozilla::dom::ServiceWorkerRegistration*&&, void (mozilla::dom::ServiceWorkerRegistration::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationMainThread*, void (mozilla::dom::ServiceWorkerRegistrationMainThread::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationMainThread*>(char const*, mozilla::dom::ServiceWorkerRegistrationMainThread*&&, void (mozilla::dom::ServiceWorkerRegistrationMainThread::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::WorkerListener>, void (mozilla::dom::WorkerListener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::dom::WorkerListener>&>(char const*, RefPtr<mozilla::dom::WorkerListener>&, void (mozilla::dom::WorkerListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::WorkerListener>, void (mozilla::dom::WorkerListener::*)(), true, (mozilla::RunnableKind)1>::RunnableMethodImpl<RefPtr<mozilla::dom::WorkerListener>&>(char const*, RefPtr<mozilla::dom::WorkerListener>&, void (mozilla::dom::WorkerListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationInfo*, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationInfo*>(char const*, mozilla::dom::ServiceWorkerRegistrationInfo*&&, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationInfo*, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationInfo*, bool>(char const*, mozilla::dom::ServiceWorkerRegistrationInfo*&&, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(bool), bool&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationProxy*, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationProxy*>(char const*, mozilla::dom::ServiceWorkerRegistrationProxy*&&, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationProxy*, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), true, (mozilla::RunnableKind)0, mozilla::dom::ServiceWorkerRegistrationDescriptor>::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationProxy*, mozilla::dom::ServiceWorkerRegistrationDescriptor const&>(char const*, mozilla::dom::ServiceWorkerRegistrationProxy*&&, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), mozilla::dom::ServiceWorkerRegistrationDescriptor const&)
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::Connection*, void (mozilla::dom::(anonymous namespace)::Connection::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::Connection*>(char const*, mozilla::dom::(anonymous namespace)::Connection*&&, void (mozilla::dom::(anonymous namespace)::Connection::*)())
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::OpenOp*, void (mozilla::dom::(anonymous namespace)::OpenOp::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::OpenOp*>(char const*, mozilla::dom::(anonymous namespace)::OpenOp*&&, void (mozilla::dom::(anonymous namespace)::OpenOp::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsISDBCallback>, nsresult (nsISDBCallback::*)(nsISDBRequest*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::SDBRequest> >::RunnableMethodImpl<nsCOMPtr<nsISDBCallback>&, mozilla::dom::SDBRequest*>(char const*, nsCOMPtr<nsISDBCallback>&, nsresult (nsISDBCallback::*)(nsISDBRequest*), mozilla::dom::SDBRequest*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationAvailability*, void (mozilla::dom::PresentationAvailability::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<mozilla::dom::PresentationAvailability*, bool&>(char const*, mozilla::dom::PresentationAvailability*&&, void (mozilla::dom::PresentationAvailability::*)(bool), bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationConnection*, nsresult (mozilla::dom::PresentationConnection::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::PresentationConnection*>(char const*, mozilla::dom::PresentationConnection*&&, nsresult (mozilla::dom::PresentationConnection::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationDeviceManager*, nsresult (mozilla::dom::PresentationDeviceManager::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::PresentationDeviceManager*>(char const*, mozilla::dom::PresentationDeviceManager*&&, nsresult (mozilla::dom::PresentationDeviceManager::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationRequest*, void (mozilla::dom::PresentationRequest::*)(nsTSubstring<char16_t> const&, mozilla::dom::Promise*), true, (mozilla::RunnableKind)0, nsTString<char16_t>, RefPtr<mozilla::dom::Promise> >::RunnableMethodImpl<mozilla::dom::PresentationRequest*, nsTString<char16_t>&, RefPtr<mozilla::dom::Promise>&>(char const*, mozilla::dom::PresentationRequest*&&, void (mozilla::dom::PresentationRequest::*)(nsTSubstring<char16_t> const&, mozilla::dom::Promise*), nsTString<char16_t>&, RefPtr<mozilla::dom::Promise>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationControllingInfo*, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::RunnableMethodImpl<mozilla::dom::PresentationControllingInfo*, nsTAutoStringN<char, 64ul>&>(char const*, mozilla::dom::PresentationControllingInfo*&&, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), nsTAutoStringN<char, 64ul>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationControllingInfo*, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::RunnableMethodImpl<mozilla::dom::PresentationControllingInfo*, char const (&) [10]>(char const*, mozilla::dom::PresentationControllingInfo*&&, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), char const (&) [10])
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIPresentationSessionTransportBuilderListener>, nsresult (nsIPresentationSessionTransportBuilderListener::*)(nsIPresentationSessionTransport*), true, (mozilla::RunnableKind)0, nsIPresentationSessionTransport*>::RunnableMethodImpl<nsCOMPtr<nsIPresentationSessionTransportBuilderListener>&, nsCOMPtr<nsIPresentationSessionTransport>&>(char const*, nsCOMPtr<nsIPresentationSessionTransportBuilderListener>&, nsresult (nsIPresentationSessionTransportBuilderListener::*)(nsIPresentationSessionTransport*), nsCOMPtr<nsIPresentationSessionTransport>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationTCPSessionTransport*, void (mozilla::dom::PresentationTCPSessionTransport::*)(mozilla::dom::PresentationTCPSessionTransport::ReadyState), true, (mozilla::RunnableKind)0, mozilla::dom::PresentationTCPSessionTransport::ReadyState>::RunnableMethodImpl<mozilla::dom::PresentationTCPSessionTransport*, mozilla::dom::PresentationTCPSessionTransport::ReadyState>(char const*, mozilla::dom::PresentationTCPSessionTransport*&&, void (mozilla::dom::PresentationTCPSessionTransport::*)(mozilla::dom::PresentationTCPSessionTransport::ReadyState), mozilla::dom::PresentationTCPSessionTransport::ReadyState&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::presentation::MulticastDNSDeviceProvider*, nsresult (mozilla::dom::presentation::MulticastDNSDeviceProvider::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::presentation::MulticastDNSDeviceProvider*>(char const*, mozilla::dom::presentation::MulticastDNSDeviceProvider*&&, nsresult (mozilla::dom::presentation::MulticastDNSDeviceProvider::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(float), true, (mozilla::RunnableKind)0, float>::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>&, float&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(float), float&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), true, (mozilla::RunnableKind)0, mozilla::layers::KeyboardMap>::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>&, mozilla::layers::KeyboardMap&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), mozilla::layers::KeyboardMap&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0, unsigned long, bool>::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const&, unsigned long&, bool&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager> const&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), unsigned long&, bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByLRef<nsTArray<unsigned int> > >::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const&, unsigned long&, nsTArray<unsigned int> const&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager> const&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), unsigned long&, nsTArray<unsigned int> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const&, unsigned long&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager> const&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), unsigned long&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>&, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), mozilla::layers::ScrollableLayerGuid&&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics>::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>&, mozilla::layers::ScrollableLayerGuid&, mozilla::layers::AsyncDragMetrics const&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), mozilla::layers::ScrollableLayerGuid&, mozilla::layers::AsyncDragMetrics const&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::CompositorVsyncDispatcher*, void (mozilla::CompositorVsyncDispatcher::*)(bool), true, (mozilla::RunnableKind)0, bool>::RunnableMethodImpl<mozilla::CompositorVsyncDispatcher*, bool&>(char const*, mozilla::CompositorVsyncDispatcher*&&, void (mozilla::CompositorVsyncDispatcher::*)(bool), bool&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::RefreshTimerVsyncDispatcher*, void (mozilla::RefreshTimerVsyncDispatcher::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::RefreshTimerVsyncDispatcher*>(char const*, mozilla::RefreshTimerVsyncDispatcher*&&, void (mozilla::RefreshTimerVsyncDispatcher::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWindow*, void (nsWindow::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsWindow*>(char const*, nsWindow*&&, void (nsWindow::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDeviceContextSpecGTK*, void (nsDeviceContextSpecGTK::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsDeviceContextSpecGTK*&>(char const*, nsDeviceContextSpecGTK*&, void (nsDeviceContextSpecGTK::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDeviceContextSpecGTK*, void (nsDeviceContextSpecGTK::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsDeviceContextSpecGTK*>(char const*, nsDeviceContextSpecGTK*&&, void (nsDeviceContextSpecGTK::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::HTMLEditRules*, void (mozilla::HTMLEditRules::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::HTMLEditRules*>(char const*, mozilla::HTMLEditRules*&&, void (mozilla::HTMLEditRules::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::HTMLEditor*, void (mozilla::HTMLEditor::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::HTMLEditor*>(char const*, mozilla::HTMLEditor*&&, void (mozilla::HTMLEditor::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::FontFaceSet*, void (mozilla::dom::FontFaceSet::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::dom::FontFaceSet*>(char const*, mozilla::dom::FontFaceSet*&&, void (mozilla::dom::FontFaceSet::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver*, void (mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver*>(char const*, mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver*&&, void (mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsRefreshDriver*, void (nsRefreshDriver::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsRefreshDriver*>(char const*, nsRefreshDriver*&&, void (nsRefreshDriver::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::PresShell*, void (mozilla::PresShell::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::PresShell*>(char const*, mozilla::PresShell*&&, void (mozilla::PresShell::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<ZoomConstraintsClient*, void (ZoomConstraintsClient::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<ZoomConstraintsClient*>(char const*, ZoomConstraintsClient*&&, void (ZoomConstraintsClient::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsPresContext*, void (nsPresContext::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsPresContext*>(char const*, nsPresContext*&&, void (nsPresContext::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIDateTimeInputArea>, nsresult (nsIDateTimeInputArea::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsCOMPtr<nsIDateTimeInputArea>&>(char const*, nsCOMPtr<nsIDateTimeInputArea>&, nsresult (nsIDateTimeInputArea::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layout::VsyncParent*, void (mozilla::layout::VsyncParent::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0, mozilla::TimeStamp>::RunnableMethodImpl<mozilla::layout::VsyncParent*, mozilla::TimeStamp&>(char const*, mozilla::layout::VsyncParent*&&, void (mozilla::layout::VsyncParent::*)(mozilla::TimeStamp), mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDocShell*, void (nsDocShell::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsDocShell*>(char const*, nsDocShell*&&, void (nsDocShell::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChildProfilerController*, void (mozilla::ChildProfilerController::*)(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&>::RunnableMethodImpl<mozilla::ChildProfilerController*, mozilla::ipc::Endpoint<mozilla::PProfilerChild> >(char const*, mozilla::ChildProfilerController*&&, void (mozilla::ChildProfilerController::*)(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&), mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChildProfilerController*, void (mozilla::ChildProfilerController::*)(nsTString<char>*), true, (mozilla::RunnableKind)0, nsTString<char>*>::RunnableMethodImpl<mozilla::ChildProfilerController*, nsTString<char>*&>(char const*, mozilla::ChildProfilerController*&&, void (mozilla::ChildProfilerController::*)(nsTString<char>*), nsTString<char>*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::DataStorage>, void (mozilla::DataStorage::*)(char const*), true, (mozilla::RunnableKind)0, char const*>::RunnableMethodImpl<RefPtr<mozilla::DataStorage>&, char const (&) [19]>(char const*, RefPtr<mozilla::DataStorage>&, void (mozilla::DataStorage::*)(char const*), char const (&) [19])
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::DataStorage>, void (mozilla::DataStorage::*)(char const*), true, (mozilla::RunnableKind)0, char const*>::RunnableMethodImpl<RefPtr<mozilla::DataStorage>&, char const (&) [21]>(char const*, RefPtr<mozilla::DataStorage>&, void (mozilla::DataStorage::*)(char const*), char const (&) [21])
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DataStorage*, void (mozilla::DataStorage::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::DataStorage*>(char const*, mozilla::DataStorage*&&, void (mozilla::DataStorage::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::psm::PSMContentStreamListener*, void (mozilla::psm::PSMContentStreamListener::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::psm::PSMContentStreamListener*>(char const*, mozilla::psm::PSMContentStreamListener*&&, void (mozilla::psm::PSMContentStreamListener::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::extensions::StreamFilter*, void (mozilla::extensions::StreamFilter::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&>::RunnableMethodImpl<mozilla::extensions::StreamFilter*, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> >(char const*, mozilla::extensions::StreamFilter*&&, void (mozilla::extensions::StreamFilter::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&), mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::extensions::StreamFilterParent>, void (mozilla::extensions::StreamFilterParent::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&>::RunnableMethodImpl<RefPtr<mozilla::extensions::StreamFilterParent>&, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> >(char const*, RefPtr<mozilla::extensions::StreamFilterParent>&, void (mozilla::extensions::StreamFilterParent::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&), mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::extensions::StreamFilterParent*, void (mozilla::ipc::IToplevelProtocol::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::extensions::StreamFilterParent*>(char const*, mozilla::extensions::StreamFilterParent*&&, void (mozilla::ipc::IToplevelProtocol::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::extensions::StreamFilterParent*, void (mozilla::extensions::StreamFilterParent::*)(nsTArray<unsigned char>&&), true, (mozilla::RunnableKind)0, nsTArray<unsigned char>&&>::RunnableMethodImpl<mozilla::extensions::StreamFilterParent*, nsTArray<unsigned char> >(char const*, mozilla::extensions::StreamFilterParent*&&, void (mozilla::extensions::StreamFilterParent::*)(nsTArray<unsigned char>&&), nsTArray<unsigned char>&&)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::places::(anonymous namespace)::VisitedQuery>, nsresult (mozilla::places::(anonymous namespace)::VisitedQuery::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<mozilla::places::(anonymous namespace)::VisitedQuery>&>(char const*, RefPtr<mozilla::places::(anonymous namespace)::VisitedQuery>&, nsresult (mozilla::places::(anonymous namespace)::VisitedQuery::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::places::Database*, nsresult (mozilla::places::Database::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::places::Database*>(char const*, mozilla::places::Database*&&, nsresult (mozilla::places::Database::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::places::AsyncFetchAndSetIconForPage*, nsresult (mozilla::places::AsyncFetchAndSetIconForPage::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::places::AsyncFetchAndSetIconForPage*>(char const*, mozilla::places::AsyncFetchAndSetIconForPage*&&, nsresult (mozilla::places::AsyncFetchAndSetIconForPage::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::places::AsyncReplaceFaviconData*, nsresult (mozilla::places::AsyncReplaceFaviconData::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::places::AsyncReplaceFaviconData*>(char const*, mozilla::places::AsyncReplaceFaviconData*&&, nsresult (mozilla::places::AsyncReplaceFaviconData::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsNavHistory*, void (nsNavHistory::*)(nsTSubstring<char> const&, int, nsTSubstring<char> const&, bool, long), true, (mozilla::RunnableKind)0, nsTString<char>, int, nsTString<char>, bool, long>::RunnableMethodImpl<nsNavHistory*, nsTSubstring<char> const&, int&, nsTSubstring<char> const&, bool&, long&>(char const*, nsNavHistory*&&, void (nsNavHistory::*)(nsTSubstring<char> const&, int, nsTSubstring<char> const&, bool, long), nsTSubstring<char> const&, int&, nsTSubstring<char> const&, bool&, long&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsUrlClassifierDBServiceWorker>, void (nsUrlClassifierDBServiceWorker::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsUrlClassifierDBServiceWorker>&>(char const*, RefPtr<nsUrlClassifierDBServiceWorker>&, void (nsUrlClassifierDBServiceWorker::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsUrlClassifierDBServiceWorker> const, nsresult (nsUrlClassifierDBServiceWorker::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsUrlClassifierDBServiceWorker> const&>(char const*, RefPtr<nsUrlClassifierDBServiceWorker> const&, nsresult (nsUrlClassifierDBServiceWorker::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsFormFillController*, void (nsFormFillController::*)(mozilla::dom::HTMLInputElement*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::HTMLInputElement> >::RunnableMethodImpl<nsFormFillController*, RefPtr<mozilla::dom::HTMLInputElement>&>(char const*, nsFormFillController*&&, void (nsFormFillController::*)(mozilla::dom::HTMLInputElement*), RefPtr<mozilla::dom::HTMLInputElement>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsNativeAppSupportUnix*, void (nsNativeAppSupportUnix::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsNativeAppSupportUnix*&>(char const*, nsNativeAppSupportUnix*&, void (nsNativeAppSupportUnix::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsUpdateProcessor*, void (nsUpdateProcessor::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<nsUpdateProcessor*>(char const*, nsUpdateProcessor*&&, void (nsUpdateProcessor::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher*, void (mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher*>(char const*, mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher*&&, void (mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, void (nsBar::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsBar>&>(char const*, RefPtr<nsBar>&, void (nsBar::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar const>, void (nsBar::*)() const, true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsBar const>&>(char const*, RefPtr<nsBar const>&, void (nsBar::*)() const)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, nsresult (nsBar::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<nsBar>&>(char const*, RefPtr<nsBar>&, nsresult (nsBar::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, void (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0, RefPtr<nsFoo> >::RunnableMethodImpl<RefPtr<nsBar>&, RefPtr<nsFoo>&>(char const*, RefPtr<nsBar>&, void (nsBar::*)(nsFoo*), RefPtr<nsFoo>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, nsresult (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0, RefPtr<nsFoo> >::RunnableMethodImpl<RefPtr<nsBar>&, RefPtr<nsFoo>&>(char const*, RefPtr<nsBar>&, nsresult (nsBar::*)(nsFoo*), RefPtr<nsFoo>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, void (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0, nsFoo*>::RunnableMethodImpl<RefPtr<nsBar>&, RefPtr<nsFoo>&>(char const*, RefPtr<nsBar>&, void (nsBar::*)(nsFoo*), RefPtr<nsFoo>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, nsresult (nsBar::*)(char*), true, (mozilla::RunnableKind)0, char*>::RunnableMethodImpl<RefPtr<nsBar>&, char*&>(char const*, RefPtr<nsBar>&, nsresult (nsBar::*)(char*), char*&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IdleObject*, void (IdleObject::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<IdleObject*>(char const*, IdleObject*&&, void (IdleObject::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IdleObject*, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::RunnableMethodImpl<IdleObject*>(char const*, IdleObject*&&, void (IdleObject::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsFoo>, nsresult (nsFoo::*)(bool*), true, (mozilla::RunnableKind)0, bool*>::RunnableMethodImpl<RefPtr<nsFoo>&, bool*>(char const*, RefPtr<nsFoo>&, nsresult (nsFoo::*)(bool*), bool*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<IdleObject>&>(char const*, RefPtr<IdleObject>&, void (IdleObject::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)2>::RunnableMethodImpl<RefPtr<IdleObject>&>(char const*, RefPtr<IdleObject>&, void (IdleObject::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::RunnableMethodImpl<RefPtr<IdleObject>&>(char const*, RefPtr<IdleObject>&, void (IdleObject::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(char const*, unsigned int), true, (mozilla::RunnableKind)2, char const*, unsigned int>::RunnableMethodImpl<RefPtr<IdleObject>&, char const (&) [6], int>(char const*, RefPtr<IdleObject>&, void (IdleObject::*)(char const*, unsigned int), char const (&) [6], int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectWithoutSetDeadline>, void (IdleObjectWithoutSetDeadline::*)(), true, (mozilla::RunnableKind)2>::RunnableMethodImpl<RefPtr<IdleObjectWithoutSetDeadline>&>(char const*, RefPtr<IdleObjectWithoutSetDeadline>&, void (IdleObjectWithoutSetDeadline::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectInheritedSetDeadline>, void (IdleObjectInheritedSetDeadline::*)(), true, (mozilla::RunnableKind)2>::RunnableMethodImpl<RefPtr<IdleObjectInheritedSetDeadline>&>(char const*, RefPtr<IdleObjectInheritedSetDeadline>&, void (IdleObjectInheritedSetDeadline::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int), true, (mozilla::RunnableKind)0, int>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, int>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int), int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObjectNonRefCountedBase::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObjectNonRefCountedBase::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int, int), true, (mozilla::RunnableKind)0, int, int>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, int, int>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int, int), int&&, int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int), true, (mozilla::RunnableKind)0, int, int, int>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, int, int, int>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int), int&&, int&&, int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int, int), true, (mozilla::RunnableKind)0, int, int, int, int>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, int, int, int, int>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int, int), int&&, int&&, int&&, int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int), true, (mozilla::RunnableKind)0, int>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, short&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int), short&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int*), true, (mozilla::RunnableKind)0, int*>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, int*>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int*), int*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), true, (mozilla::RunnableKind)0, int const*>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, int*>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), int*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int*), true, (mozilla::RunnableKind)0, StoreCopyPassByPtr<int> >::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, int&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int*), int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), true, (mozilla::RunnableKind)0, StoreCopyPassByConstPtr<int> >::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, int&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int&), true, (mozilla::RunnableKind)0, int&>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, int&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int&), int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int&&), true, (mozilla::RunnableKind)0, int&&>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, int>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int&&), int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&), mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), true, (mozilla::RunnableKind)0, StoreCopyPassByValue<TestThreadUtils::Spy> >::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, TestThreadUtils::Spy&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), true, (mozilla::RunnableKind)0, StoreCopyPassByValue<TestThreadUtils::Spy> >::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, TestThreadUtils::Spy>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), TestThreadUtils::Spy&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, TestThreadUtils::Spy&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, TestThreadUtils::Spy>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), TestThreadUtils::Spy&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<TestThreadUtils::Spy> >::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, TestThreadUtils::Spy&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<TestThreadUtils::Spy> >::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, TestThreadUtils::Spy>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), TestThreadUtils::Spy&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&), true, (mozilla::RunnableKind)0, TestThreadUtils::Spy&>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, TestThreadUtils::Spy&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&), TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports> >::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, TestThreadUtils::SpyWithISupports*>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), TestThreadUtils::SpyWithISupports*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), true, (mozilla::RunnableKind)0, TestThreadUtils::Spy*>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, TestThreadUtils::Spy*>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), TestThreadUtils::Spy*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const*), true, (mozilla::RunnableKind)0, TestThreadUtils::Spy const*>::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>&, TestThreadUtils::Spy*>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const*), TestThreadUtils::Spy*&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<CDMStorageTest*, void (CDMStorageTest::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<CDMStorageTest*>(char const*, CDMStorageTest*&&, void (CDMStorageTest::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<CDMStorageTest*, void (CDMStorageTest::*)(nsTString<char>), true, (mozilla::RunnableKind)0, nsTString<char> >::RunnableMethodImpl<CDMStorageTest*, nsTString<char>&>(char const*, CDMStorageTest*&&, void (CDMStorageTest::*)(nsTString<char>), nsTString<char>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<CDMStorageTest*, void (CDMStorageTest::*)(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&>::RunnableMethodImpl<CDMStorageTest*, mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> > >(char const*, CDMStorageTest*&&, void (CDMStorageTest::*)(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&), mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPTestMonitor*, void (GMPTestMonitor::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<GMPTestMonitor*>(char const*, GMPTestMonitor*&&, void (GMPTestMonitor::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPTestRunner*, void (GMPTestRunner::*)(GMPTestMonitor&), true, (mozilla::RunnableKind)0, GMPTestMonitor&>::RunnableMethodImpl<GMPTestRunner*, GMPTestMonitor&>(char const*, GMPTestRunner*&&, void (GMPTestRunner::*)(GMPTestMonitor&), GMPTestMonitor&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPRemoveTest*, void (GMPRemoveTest::*)(nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**), false, (mozilla::RunnableKind)0, nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**>::RunnableMethodImpl<GMPRemoveTest*, nsTString<char>&, GMPVideoDecoderProxy**, GMPVideoHost**>(char const*, GMPRemoveTest*&&, void (GMPRemoveTest::*)(nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**), nsTString<char>&, GMPVideoDecoderProxy**&&, GMPVideoHost**&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPVideoDecoderProxy*, nsresult (GMPVideoDecoderProxy::*)(GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int), false, (mozilla::RunnableKind)0, GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int>::RunnableMethodImpl<GMPVideoDecoderProxy*&, GMPVideoCodec&, nsTArray<unsigned char>&, GMPRemoveTest*, int>(char const*, GMPVideoDecoderProxy*&, nsresult (GMPVideoDecoderProxy::*)(GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int), GMPVideoCodec&, nsTArray<unsigned char>&, GMPRemoveTest*&&, int&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPVideoDecoderProxy*, void (GMPVideoDecoderProxy::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<GMPVideoDecoderProxy*&>(char const*, GMPVideoDecoderProxy*&, void (GMPVideoDecoderProxy::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPRemoveTest*, void (GMPRemoveTest::*)(), false, (mozilla::RunnableKind)0>::RunnableMethodImpl<GMPRemoveTest*>(char const*, GMPRemoveTest*&&, void (GMPRemoveTest::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<int>*, void (mozilla::detail::Listener<int>::*)(int&&), true, (mozilla::RunnableKind)0, int&&>::RunnableMethodImpl<mozilla::detail::Listener<int>*, int&>(char const*, mozilla::detail::Listener<int>*&&, void (mozilla::detail::Listener<int>::*)(int&&), int&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<int>*, void (mozilla::detail::Listener<int>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<int>*>(char const*, mozilla::detail::Listener<int>*&&, void (mozilla::detail::Listener<int>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<SomeEvent>*, void (mozilla::detail::Listener<SomeEvent>::*)(SomeEvent&&), true, (mozilla::RunnableKind)0, SomeEvent&&>::RunnableMethodImpl<mozilla::detail::Listener<SomeEvent>*, SomeEvent&>(char const*, mozilla::detail::Listener<SomeEvent>*&&, void (mozilla::detail::Listener<SomeEvent>::*)(SomeEvent&&), SomeEvent&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<SomeEvent>*, void (mozilla::detail::Listener<SomeEvent>::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<SomeEvent>*>(char const*, mozilla::detail::Listener<SomeEvent>*&&, void (mozilla::detail::Listener<SomeEvent>::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >(char const*, mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*&&, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&), mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*>(char const*, mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*&&, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)())
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<RefCounter> >*, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(RefPtr<RefCounter>&&), true, (mozilla::RunnableKind)0, RefPtr<RefCounter>&&>::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<RefCounter> >*, RefPtr<RefCounter>&>(char const*, mozilla::detail::Listener<RefPtr<RefCounter> >*&&, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(RefPtr<RefCounter>&&), RefPtr<RefCounter>&)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<RefCounter> >*, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(), true, (mozilla::RunnableKind)0>::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<RefCounter> >*>(char const*, mozilla::detail::Listener<RefPtr<RefCounter> >*&&, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)())
1223
1224
  NS_IMETHOD Run()
1225
13
  {
1226
13
    CancelTimer();
1227
13
1228
13
    if (MOZ_LIKELY(mReceiver.Get())) {
1229
13
      mArgs.apply(mReceiver.Get(), mMethod);
1230
13
    }
1231
13
1232
13
    return NS_OK;
1233
13
  }
mozilla::detail::RunnableMethodImpl<FdWatcher*, void (FdWatcher::*)(), true, (mozilla::RunnableKind)0>::Run()
Line
Count
Source
1225
3
  {
1226
3
    CancelTimer();
1227
3
1228
3
    if (MOZ_LIKELY(mReceiver.Get())) {
1229
3
      mArgs.apply(mReceiver.Get(), mMethod);
1230
3
    }
1231
3
1232
3
    return NS_OK;
1233
3
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsMemoryReporterManager*, nsresult (nsMemoryReporterManager::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsObserverService>, void (nsObserverService::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::EventTargetWrapper*, void (mozilla::EventTargetWrapper::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::LazyIdleThread*, void (mozilla::LazyIdleThread::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::LazyIdleThread*, void (mozilla::LazyIdleThread::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIBlockThreadedExecutionCallback*, nsresult (nsIBlockThreadedExecutionCallback::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIThreadPool>, nsresult (nsIThreadPool::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsProcess>, void (nsProcess::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIThread*, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(bool&&), true, (mozilla::RunnableKind)0, bool&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Preferences*, nsresult (mozilla::Preferences::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsStringBundleBase*, nsresult (nsStringBundleBase::*)(), true, (mozilla::RunnableKind)2>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::BackgroundFileSaver*, nsresult (mozilla::net::BackgroundFileSaver::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::BackgroundFileSaverStreamListener*, nsresult (mozilla::net::BackgroundFileSaverStreamListener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::ConnectionData> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::LookupHelper*, nsresult (mozilla::net::LookupHelper::*)(mozilla::net::LookupArgument*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::LookupArgument> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::SocketData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::SocketData> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::HttpData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::HttpData> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::WebSocketRequest*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::WebSocketRequest> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::DnsData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::DnsData> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::RcwnData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::RcwnData> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsAsyncStreamCopier>, void (nsAsyncStreamCopier::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsICaptivePortalService>, nsresult (nsICaptivePortalService::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsInputStreamPump*, nsresult (nsInputStreamPump::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsPACMan*, void (mozilla::net::nsPACMan::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsServerSocket*, void (mozilla::net::nsServerSocket::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsProtocolProxyService*, nsresult (mozilla::net::nsProtocolProxyService::*)(bool, bool, nsresult, nsTSubstring<char> const&), false, (mozilla::RunnableKind)1, bool, bool, nsresult, nsTString<char> >::Run()
mozilla::detail::RunnableMethodImpl<mozilla::net::nsSocketTransportService*, void (mozilla::net::nsSocketTransportService::*)(), true, (mozilla::RunnableKind)0>::Run()
Line
Count
Source
1225
7
  {
1226
7
    CancelTimer();
1227
7
1228
7
    if (MOZ_LIKELY(mReceiver.Get())) {
1229
7
      mArgs.apply(mReceiver.Get(), mMethod);
1230
7
    }
1231
7
1232
7
    return NS_OK;
1233
7
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsUDPSocket*, void (mozilla::net::nsUDPSocket::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsHostResolver*, void (nsHostResolver::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::DNSRequestChild*, void (mozilla::net::DNSRequestChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCacheService*, void (nsCacheService::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheEntry*, void (mozilla::net::CacheEntry::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheEntry*, void (mozilla::net::CacheEntry::*)(double), true, (mozilla::RunnableKind)0, double>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileChunk*, unsigned int (mozilla::net::CacheFileChunk::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileContextEvictor*, nsresult (mozilla::net::CacheFileContextEvictor::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileHandle*, unsigned int (mozilla::net::CacheFileHandle::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::CacheFileIOManager>, nsresult (mozilla::net::CacheFileIOManager::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileIOManager*, nsresult (mozilla::net::CacheFileIOManager::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::CacheFileIOManager>, nsresult (mozilla::net::CacheFileIOManager::*)(nsILoadContextInfo*, bool, nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, nsCOMPtr<nsILoadContextInfo>, bool, nsTString<char16_t> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::CacheIndex>, void (mozilla::net::CacheIndex::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheObserver*, void (mozilla::net::CacheObserver::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheStorageService*, void (mozilla::net::CacheStorageService::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsAboutCache::Channel*, void (nsAboutCache::Channel::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsFileUploadContentStream*, void (nsFileUploadContentStream::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::FTPChannelParent*, void (mozilla::net::FTPChannelParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::nsHttpConnectionMgr>, nsresult (mozilla::net::nsHttpConnectionMgr::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::AltSvcMapping*, void (mozilla::net::AltSvcMapping::*)(nsTString<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Http2Session*, void (mozilla::net::Http2Session::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&), true, (mozilla::RunnableKind)0, nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::TimeStamp const, mozilla::net::nsHttpHeaderArray const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(long const&, long const&), true, (mozilla::RunnableKind)0, long const, long const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&), true, (mozilla::RunnableKind)0, nsresult const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&), true, (mozilla::RunnableKind)0, nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::net::nsHttpHeaderArray const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(long const&, long const&), true, (mozilla::RunnableKind)0, long const, long const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&), true, (mozilla::RunnableKind)0, nsresult const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(bool), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> const, nsTString<char> const, nsTString<char> const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBaseChannel*, void (mozilla::net::HttpBaseChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, unsigned int (mozilla::net::HttpChannelChild::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::HttpBackgroundChannelChild>, void (mozilla::net::HttpBackgroundChannelChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpBaseChannel::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> const, nsTString<char> const, nsTString<char> const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpChannelChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpChannelChild::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::HttpBackgroundChannelChild>, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::HttpChannelChild> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(nsresult const&), true, (mozilla::RunnableKind)0, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpBaseChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelParent*, void (mozilla::net::HttpChannelParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIInterceptedChannel*, nsresult (nsIInterceptedChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::InterceptedHttpChannel*, void (mozilla::net::InterceptedHttpChannel::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsHttpChannel*, void (mozilla::net::nsHttpChannel::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsHttpChannel*, nsresult (mozilla::net::nsHttpChannel::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::ExtensionJARFileOpener*, nsresult (mozilla::net::ExtensionJARFileOpener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::ExtensionJARFileOpener>, nsresult (mozilla::net::ExtensionJARFileOpener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannel*, nsresult (mozilla::net::WebSocketChannel::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannel*, void (mozilla::net::WebSocketChannel::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannel*, void (mozilla::net::WebSocketChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannelChild*, void (mozilla::net::WebSocketChannelChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWyciwygChannel*, void (nsWyciwygChannel::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::ContentParent>, unsigned int (mozilla::dom::ContentParent::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::ParentImpl*, void ((anonymous namespace)::ParentImpl::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::ContentChild>, bool (mozilla::dom::PContentChild::*)(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> const&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::GeckoChildProcessHost*, bool (mozilla::ipc::GeckoChildProcessHost::*)(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> > > >), false, (mozilla::RunnableKind)0, 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> > > > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::MessageChannel*, void (mozilla::ipc::MessageChannel::*)(), false, (mozilla::RunnableKind)1>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::MessageChannel*, void (mozilla::ipc::MessageChannel::*)(mozilla::ipc::MessageChannel*, mozilla::ipc::Side), false, (mozilla::RunnableKind)0, mozilla::ipc::MessageChannel*, mozilla::ipc::Side>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::ProcessLink*, void (mozilla::ipc::ProcessLink::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::ProcessLink*, void (mozilla::ipc::ProcessLink::*)(IPC::Message*), false, (mozilla::RunnableKind)0, IPC::Message*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IPC::Channel*, bool (IPC::Channel::*)(IPC::Message*), false, (mozilla::RunnableKind)0, IPC::Message*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ScriptPreloader*, void (mozilla::ScriptPreloader::*)(), true, (mozilla::RunnableKind)0>::Run()
mozilla::detail::RunnableMethodImpl<mozilla::URLPreloader*, void (mozilla::URLPreloader::*)(), true, (mozilla::RunnableKind)0>::Run()
Line
Count
Source
1225
3
  {
1226
3
    CancelTimer();
1227
3
1228
3
    if (MOZ_LIKELY(mReceiver.Get())) {
1229
3
      mArgs.apply(mReceiver.Get(), mMethod);
1230
3
    }
1231
3
1232
3
    return NS_OK;
1233
3
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIThread>, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsJARChannel>, nsresult (nsJARChannel::*)(nsJARInputThunk*, bool), true, (mozilla::RunnableKind)0, RefPtr<nsJARInputThunk>, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsJARChannel>, nsresult (nsJARChannel::*)(nsresult, bool), true, (mozilla::RunnableKind)0, nsresult, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsJARChannel*, void (nsJARChannel::*)(unsigned long), true, (mozilla::RunnableKind)0, unsigned long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::storage::Connection>, void (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::Connection*, nsresult (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::Connection*, void (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozIStorageError*), true, (mozilla::RunnableKind)0, nsCOMPtr<mozIStorageError> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozilla::storage::ResultSet*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::storage::ResultSet> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::storage::Connection>, nsresult (mozilla::storage::Connection::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::VideoFrameConverter*, void (mozilla::VideoFrameConverter::*)(mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::layers::Image>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::GenericReceiveListener*, void (mozilla::GenericReceiveListener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoSessionConduit>, void (mozilla::VideoSessionConduit::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsOfflineCacheUpdate*, void (nsOfflineCacheUpdate::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsHtml5Parser*, nsresult (nsHtml5Parser::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::PaintThread*, void (mozilla::layers::PaintThread::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncImagePipelineManager*, void (mozilla::layers::AsyncImagePipelineManager::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorBridgeParentBase>, void (mozilla::layers::CompositorBridgeParentBase::*)(mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, bool), true, (mozilla::RunnableKind)0, mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), true, (mozilla::RunnableKind)0, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::GeckoContentController>, void (mozilla::layers::GeckoContentController::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::Maybe<mozilla::layers::ZoomConstraints> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::InputQueue>, void (mozilla::layers::InputQueue::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&), true, (mozilla::RunnableKind)0, mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> const&), true, (mozilla::RunnableKind)0, mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::OverscrollHandoffChain const*, void (mozilla::layers::OverscrollHandoffChain::*)(mozilla::layers::AsyncPanZoomController const*) const, true, (mozilla::RunnableKind)0, mozilla::layers::AsyncPanZoomController*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&, RefPtr<mozilla::layers::OverscrollHandoffChain const> const&, RefPtr<mozilla::layers::AsyncPanZoomController const> const&), true, (mozilla::RunnableKind)0, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>, RefPtr<mozilla::layers::OverscrollHandoffChain const>, RefPtr<mozilla::layers::AsyncPanZoomController const> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::GeckoContentController>, void (mozilla::layers::GeckoContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), true, (mozilla::RunnableKind)0, mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(bool), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::layers::FrameMetrics const&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), true, (mozilla::RunnableKind)0, mozilla::layers::FrameMetrics, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(), true, (mozilla::RunnableKind)1>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(bool), true, (mozilla::RunnableKind)1, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::InputQueue*, void (mozilla::layers::InputQueue::*)(unsigned long), true, (mozilla::RunnableKind)0, unsigned long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ActiveElementManager*, void (mozilla::layers::ActiveElementManager::*)(nsCOMPtr<mozilla::dom::Element> const&), true, (mozilla::RunnableKind)1, nsCOMPtr<mozilla::dom::Element> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), true, (mozilla::RunnableKind)0, mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), true, (mozilla::RunnableKind)0, mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&, nsTString<char16_t> const&), true, (mozilla::RunnableKind)0, unsigned long, nsTString<char16_t> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&), true, (mozilla::RunnableKind)0, unsigned long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), true, (mozilla::RunnableKind)0, mozilla::layers::KeyboardMap>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0, unsigned long, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(float), true, (mozilla::RunnableKind)0, float>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByRRef<nsTArray<unsigned int> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, bool (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(bool), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorBridgeChild>, void (mozilla::layers::CompositorBridgeChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParentBase*, bool (mozilla::layers::CompositorBridgeParentBase::*)(base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int), true, (mozilla::RunnableKind)0, base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParentBase*, bool (mozilla::layers::CompositorBridgeParentBase::*)(unsigned long, unsigned int), true, (mozilla::RunnableKind)0, unsigned long, unsigned int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(int, int), true, (mozilla::RunnableKind)0, int, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(), true, (mozilla::RunnableKind)1>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorManagerParent>, void (mozilla::layers::CompositorManagerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorManagerParent*, void (mozilla::layers::CompositorManagerParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorVsyncScheduler*, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)1, mozilla::TimeStamp>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorVsyncScheduler*, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0, mozilla::TimeStamp>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CrossProcessCompositorBridgeParent*, void (mozilla::layers::CrossProcessCompositorBridgeParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::ImageBridgeChild>, void (mozilla::layers::ImageBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::ImageBridgeParent>, void (mozilla::layers::ImageBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ImageBridgeParent*, void (mozilla::layers::ImageBridgeParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long), true, (mozilla::RunnableKind)0, mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), true, (mozilla::RunnableKind)0, mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(float, float, bool), true, (mozilla::RunnableKind)0, float, float, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(unsigned long const&, nsTString<char16_t> const&), true, (mozilla::RunnableKind)0, unsigned long, nsTString<char16_t> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(unsigned long const&), true, (mozilla::RunnableKind)0, unsigned long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::LayerTransactionChild>, void (mozilla::layers::LayerTransactionChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerChild>, void (mozilla::layers::UiCompositorControllerChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerChild>, void (mozilla::layers::UiCompositorControllerChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::UiCompositorControllerChild*, void (mozilla::layers::UiCompositorControllerChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerParent>, void (mozilla::layers::UiCompositorControllerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)(int), true, (mozilla::RunnableKind)0, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GtkVsyncSource::GLXDisplay*, void (GtkVsyncSource::GLXDisplay::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<SoftwareDisplay*, void (SoftwareDisplay::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<SoftwareDisplay*, void (SoftwareDisplay::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)1, mozilla::TimeStamp>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VsyncBridgeChild>, void (mozilla::gfx::VsyncBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VsyncBridgeChild*, void (mozilla::gfx::VsyncBridgeChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VsyncBridgeParent>, void (mozilla::gfx::VsyncBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VsyncBridgeParent*, void (mozilla::gfx::VsyncBridgeParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsIThread>, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRDisplayHost*, void (mozilla::gfx::VRDisplayHost::*)(mozilla::layers::SurfaceDescriptor const&, unsigned long, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::impl::VRControllerOpenVR*, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), true, (mozilla::RunnableKind)0, vr::IVRSystem*, unsigned int, double, double, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManager*, void (mozilla::gfx::VRManager::*)(mozilla::gfx::VRManagerPromise const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRThread*, void (mozilla::gfx::VRThread::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0, mozilla::TimeStamp>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRGPUParent*, void (mozilla::gfx::VRGPUParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VRGPUParent>, void (mozilla::gfx::VRGPUParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManagerChild*, void (mozilla::gfx::VRManagerChild::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManagerChild*, void (mozilla::gfx::VRManagerChild::*)(unsigned int, mozilla::dom::VREventObserver*), true, (mozilla::RunnableKind)0, unsigned int, RefPtr<mozilla::dom::VREventObserver> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VRManagerParent>, void (mozilla::gfx::VRManagerParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManagerParent*, void (mozilla::gfx::VRManagerParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRService*, void (mozilla::gfx::VRService::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> const&), true, (mozilla::RunnableKind)0, mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId), true, (mozilla::RunnableKind)0, mozilla::wr::WrWindowId>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >), true, (mozilla::RunnableKind)0, mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderTextureHostWrapper*, void (mozilla::wr::RenderTextureHostWrapper::*)(mozilla::wr::RenderTextureHost*), true, (mozilla::RunnableKind)0, mozilla::wr::RenderTextureHost*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(int, int, unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*), true, (mozilla::RunnableKind)0, int, int, unsigned int, nsTString<char16_t>, nsTString<char16_t>, nsIObserver*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, int, int, nsIObserver*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0, unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(nsIObserver*), true, (mozilla::RunnableKind)0, nsIObserver*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsGlobalWindowOuter*, void (nsGlobalWindowOuter::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsGlobalWindowInner>, void (nsGlobalWindowInner::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsGlobalWindowOuter>, void (nsGlobalWindowOuter::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsXBLBinding>, void (nsXBLBinding::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::EventSourceImpl*, void (mozilla::dom::EventSourceImpl::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ScreenOrientation*, void (mozilla::dom::ScreenOrientation::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsContentSink*, void (nsContentSink::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIDocument*, void (nsIDocument::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIDocument*, void (nsIDocument::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDocument*, void (nsDocument::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TimedMetadata>*, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(mozilla::TimedMetadata&&), true, (mozilla::RunnableKind)0, mozilla::TimedMetadata&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TimedMetadata>*, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsRange*, void (nsRange::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsAttributeTextNode*, void (nsAttributeTextNode::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::Context::ThreadsafeHandle*, void (mozilla::dom::cache::Context::ThreadsafeHandle::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::Manager::CachePutAllAction*, void (mozilla::dom::cache::Manager::CachePutAllAction::*)(nsresult), false, (mozilla::RunnableKind)0, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::ReadStream::Inner*, void (mozilla::dom::cache::ReadStream::Inner::*)(), true, (mozilla::RunnableKind)1>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::CanvasRenderingContext2D*, void (mozilla::dom::CanvasRenderingContext2D::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::EventListenerService*, void (mozilla::EventListenerService::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLCanvasPrintState*, void (mozilla::dom::HTMLCanvasPrintState::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLCanvasElement*, void (mozilla::dom::HTMLCanvasElement::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::BlobCallback*, void (mozilla::dom::BlobCallback::*)(mozilla::dom::Blob*, char const*), true, (mozilla::RunnableKind)0, mozilla::dom::Blob*, char const*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLEmbedElement*, void (mozilla::dom::HTMLEmbedElement::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLImageElement*, void (mozilla::dom::HTMLImageElement::*)(bool), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLInputElement*, void (mozilla::dom::HTMLInputElement::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLLinkElement*, void (mozilla::dom::HTMLLinkElement::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::StreamSizeListener*, void (mozilla::dom::HTMLMediaElement::StreamSizeListener::*)(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>), true, (mozilla::RunnableKind)0, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::ChannelLoader*, void (mozilla::dom::HTMLMediaElement::ChannelLoader::*)(mozilla::dom::HTMLMediaElement*), true, (mozilla::RunnableKind)0, mozilla::dom::HTMLMediaElement*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::StreamListener*, void (mozilla::dom::HTMLMediaElement::StreamListener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement*, void (mozilla::dom::HTMLMediaElement::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement*, void (mozilla::dom::HTMLMediaElement::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::MediaStreamTrack*, void (mozilla::dom::MediaStreamTrack::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::DOMMediaStream>, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::MediaStreamTrack>, void (mozilla::dom::MediaStreamTrack::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLObjectElement*, void (mozilla::dom::HTMLObjectElement::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLStyleElement*, void (mozilla::dom::HTMLStyleElement::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLTrackElement*, void (mozilla::dom::HTMLTrackElement::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLTrackElement*, void (mozilla::dom::HTMLTrackElement::*)(nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, nsTString<char16_t> const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ImageDocument*, void (mozilla::dom::ImageDocument::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::TextTrackManager*, void (mozilla::dom::TextTrackManager::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<HTMLContentSink*, void (HTMLContentSink::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsHTMLDocument*, void (nsHTMLDocument::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsJSChannel*, void (nsJSChannel::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::BackgroundVideoDecodingPermissionObserver*, void (mozilla::BackgroundVideoDecodingPermissionObserver::*)() const, true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream::OwnedStreamListener*, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, mozilla::MediaStream*, int), true, (mozilla::RunnableKind)0, mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, RefPtr<mozilla::MediaStream>, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream*, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::MediaStreamTrack> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream::OwnedStreamListener*, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, mozilla::MediaStream*, int, int), true, (mozilla::RunnableKind)0, mozilla::MediaStreamGraph*, RefPtr<mozilla::MediaStream>, int, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream::PlaybackStreamListener*, void (mozilla::DOMMediaStream::PlaybackStreamListener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream*, void (mozilla::DOMMediaStream::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(bool), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChannelMediaResource*, void (mozilla::ChannelMediaResource::*)(bool), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChannelMediaResource*, void (mozilla::ChannelMediaResource::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(double), true, (mozilla::RunnableKind)0, double>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::FileBlockCache*, void (mozilla::FileBlockCache::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<double>::Impl*, void (mozilla::Canonical<double>::Impl::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<double>*, void (mozilla::AbstractMirror<double>::*)(double const&), true, (mozilla::RunnableKind)0, double>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<bool>*, void (mozilla::AbstractMirror<bool>::*)(bool const&), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*, void (mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>::*)(mozilla::MediaDecoder::PlayState const&), true, (mozilla::RunnableKind)0, mozilla::MediaDecoder::PlayState>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*, void (mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), true, (mozilla::RunnableKind)0, nsMainThreadPtrHandle<nsIPrincipal> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<bool>::Impl*, void (mozilla::Canonical<bool>::Impl::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*, void (mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl*, void (mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader>, void (mozilla::MediaFormatReader::*)(already_AddRefed<mozilla::layers::KnowsCompositor>), true, (mozilla::RunnableKind)0, already_AddRefed<mozilla::layers::KnowsCompositor>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::media::TimeIntervals>*, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::media::TimeUnit>*, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<bool>*, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> > >, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeIntervals> >, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeUnit> >, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<bool> >, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), true, (mozilla::RunnableKind)0, mozilla::MediaPlaybackEvent::EventType&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(mozilla::MediaDecoderOwner::NextFrameStatus&&), true, (mozilla::RunnableKind)0, mozilla::MediaDecoderOwner::NextFrameStatus&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(RefPtr<mozilla::AudioData>&&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::AudioData>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(RefPtr<mozilla::VideoData>&&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::VideoData>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*, void (mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::Maybe<mozilla::media::TimeUnit> const&), true, (mozilla::RunnableKind)0, mozilla::Maybe<mozilla::media::TimeUnit> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState> >, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<double> >, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> > >, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<bool> >, void (mozilla::AbstractMirror<bool>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::media::TimeUnit>*, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(mozilla::media::TimeUnit const&), true, (mozilla::RunnableKind)0, mozilla::media::TimeUnit>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>*, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<double>*, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >*, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(mozilla::MediaDecoder*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::MediaDecoder> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), true, (mozilla::RunnableKind)0, mozilla::MediaPlaybackEvent&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::media::TimeUnit>::Impl*, void (mozilla::Canonical<mozilla::media::TimeUnit>::Impl::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(mozilla::VideoDecodeMode), true, (mozilla::RunnableKind)0, mozilla::VideoDecodeMode>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaResult>*, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(mozilla::MediaResult&&), true, (mozilla::RunnableKind)0, mozilla::MediaResult&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaResult>*, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&), true, (mozilla::RunnableKind)0, nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(mozilla::DecoderDoctorEvent&&), true, (mozilla::RunnableKind)0, mozilla::DecoderDoctorEvent&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(bool), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::GetUserMediaWindowListener>, bool (mozilla::GetUserMediaWindowListener::*)(mozilla::SourceListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::SourceListener> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::SourceListener>, void (mozilla::SourceListener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::MediaRecorder>, void (mozilla::dom::MediaRecorder::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::MediaRecorder::Session*, void (mozilla::dom::MediaRecorder::Session::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaEncoder>, void (mozilla::MediaEncoder::*)(mozilla::MediaEncoderListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::media::TimeIntervals>*, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(mozilla::media::TimeIntervals const&), true, (mozilla::RunnableKind)0, mozilla::media::TimeIntervals>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(nsTArray<unsigned char>&&, nsTString<char16_t>&&), true, (mozilla::RunnableKind)0, nsTArray<unsigned char>&&, nsTString<char16_t>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(mozilla::TrackInfo::TrackType), true, (mozilla::RunnableKind)0, mozilla::TrackInfo::TrackType>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl*, void (mozilla::Canonical<mozilla::media::TimeIntervals>::Impl::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::GetUserMediaWindowListener*, void (mozilla::GetUserMediaWindowListener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::MediaStreamTrack::PrincipalHandleListener*, void (mozilla::dom::MediaStreamTrack::PrincipalHandleListener::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResource*, void (mozilla::MediaResource::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaTimer*, void (mozilla::MediaTimer::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaTimer*, void (mozilla::MediaTimer::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const, void (mozilla::MediaFormatReader::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const, nsresult (mozilla::MediaFormatReader::*)(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>), true, (mozilla::RunnableKind)0, mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const, void (mozilla::MediaFormatReader::*)(bool), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaEncoder>, void (mozilla::MediaEncoder::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaEncoder::EncoderListener*, void (mozilla::MediaEncoder::EncoderListener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(long), true, (mozilla::RunnableKind)0, long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(mozilla::AudioSegment&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::AudioSegment> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::MediaEncoder::EncoderListener> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(long), true, (mozilla::RunnableKind)0, long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(mozilla::VideoSegment&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::VideoSegment> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::MediaEncoder::EncoderListener> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaEncoderListener>, void (mozilla::MediaEncoderListener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(int), true, (mozilla::RunnableKind)0, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, unsigned int, NS_ConvertUTF8toUTF16>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, bool), true, (mozilla::RunnableKind)0, unsigned int, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsresult, nsTString<char> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, NS_ConvertUTF8toUTF16, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, mozilla::dom::MediaKeyStatus), true, (mozilla::RunnableKind)0, unsigned int, mozilla::dom::MediaKeyStatus>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, NS_ConvertUTF8toUTF16>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, long), true, (mozilla::RunnableKind)0, NS_ConvertUTF8toUTF16, long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const&, unsigned int const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const, unsigned int const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const, nsTString<char> const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const, unsigned int const, unsigned int const, nsTString<char> const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const, unsigned int const, nsTArray<unsigned char> const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const, nsTArray<mozilla::gmp::CDMKeyInformation> const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const&, double const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const, double const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, nsTString<char16_t>), true, (mozilla::RunnableKind)0, unsigned int, unsigned int, nsTString<char16_t> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsTArray<unsigned char> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, nsTString<char>, unsigned int, nsTArray<unsigned char> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int), true, (mozilla::RunnableKind)0, nsTString<char>, unsigned int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTString<char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsTString<char> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::GMPContentParent>, void (mozilla::gmp::GMPContentParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::GMPCrashHelper*, void (mozilla::GMPCrashHelper::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::GeckoMediaPluginServiceParent>, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(RefPtr<mozilla::gmp::GMPParent> const&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::gmp::GMPParent> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPParent*, void (mozilla::gmp::GMPParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPSyncRunnable*, void (mozilla::gmp::GMPSyncRunnable::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::GMPRunnable>, void (mozilla::gmp::GMPRunnable::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPRunnable*, void (mozilla::gmp::GMPRunnable::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPProcessParent*, void (mozilla::gmp::GMPProcessParent::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(long), true, (mozilla::RunnableKind)0, long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(nsTSubstring<char> const&, mozilla::OriginAttributesPattern const&), true, (mozilla::RunnableKind)0, nsTString<char>, mozilla::OriginAttributesPattern>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPServiceParent*, void (mozilla::gmp::GMPServiceParent::*)(mozilla::Monitor*, bool*), false, (mozilla::RunnableKind)0, mozilla::Monitor*, bool*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPVideoDecoderChild*, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoDecoderChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPVideoEncoderChild*, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoEncoderChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::VideoDecoderManagerParent>, void (mozilla::dom::VideoDecoderManagerParent::*)(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<long>*, void (mozilla::detail::Listener<long>::*)(long&&), true, (mozilla::RunnableKind)0, long&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<long>*, void (mozilla::detail::Listener<long>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DecodedStreamGraphListener*, void (mozilla::DecodedStreamGraphListener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaStream*, void (mozilla::MediaStream::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSourceDemuxer*, void (mozilla::MediaSourceDemuxer::*)(RefPtr<mozilla::TrackBuffersManager>&&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::TrackBuffersManager>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::TrackBuffersManager*, void (mozilla::TrackBuffersManager::*)(mozilla::SourceBufferTask*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::SourceBufferTask> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::TrackBuffersManager*, void (mozilla::TrackBuffersManager::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSourceDecoder*, void (mozilla::MediaSourceDecoder::*)(long), true, (mozilla::RunnableKind)0, long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(mozilla::TrackInfo::TrackType&&), true, (mozilla::RunnableKind)0, mozilla::TrackInfo::TrackType&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, nsTString<char> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, int const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, nsTString<char>, unsigned int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, unsigned int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, mozilla::ipc::PrincipalInfo const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, nsTString<char>, mozilla::ipc::PrincipalInfo const&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&, mozilla::camera::VideoCaptureCapability const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, int, mozilla::camera::VideoCaptureCapability>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSystemResourceManager*, void (mozilla::MediaSystemResourceManager::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSystemResourceManager*, void (mozilla::MediaSystemResourceManager::*)(unsigned int, bool), true, (mozilla::RunnableKind)0, unsigned int, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::AudioDestinationNode*, void (mozilla::dom::AudioDestinationNode::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecodeTask*, void (mozilla::MediaDecodeTask::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<WebCore::ReverbConvolver*, void (WebCore::ReverbConvolver::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::nsFakeSynthServices*, void (mozilla::dom::nsFakeSynthServices::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SpeechDispatcherService*, void (mozilla::dom::SpeechDispatcherService::*)(unsigned int, unsigned int), true, (mozilla::RunnableKind)0, unsigned int, SPDNotificationType>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SpeechDispatcherService*, void (mozilla::dom::SpeechDispatcherService::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::SpeechDispatcherCallback>, bool (mozilla::dom::SpeechDispatcherCallback::*)(SPDNotificationType), true, (mozilla::RunnableKind)0, SPDNotificationType>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::NotificationPermissionRequest*, nsresult (mozilla::dom::NotificationPermissionRequest::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::quota::(anonymous namespace)::Quota*, void (mozilla::dom::quota::(anonymous namespace)::Quota::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::quota::QuotaManager*, void (mozilla::dom::quota::QuotaManager::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::LocalStorageCacheBridge*, void (mozilla::dom::LocalStorageCacheBridge::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBThread*, void (mozilla::dom::StorageDBThread::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::CacheParentBridge*, void (mozilla::dom::StorageDBParent::CacheParentBridge::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::UsageParentBridge*, void (mozilla::dom::StorageDBParent::UsageParentBridge::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::ObserverSink*, void (mozilla::dom::StorageDBParent::ObserverSink::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::ObserverSink*, void (mozilla::dom::StorageDBParent::ObserverSink::*)(nsTString<char> const&, nsTString<char16_t> const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, nsTString<char>, nsTString<char16_t>, nsTString<char> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SVGFEImageElement*, void (mozilla::dom::SVGFEImageElement::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SVGImageElement*, void (mozilla::dom::SVGImageElement::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SVGStyleElement*, void (mozilla::dom::SVGStyleElement::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool), false, (mozilla::RunnableKind)1, gfxSurfaceType, mozilla::plugins::NPRemoteWindow, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(), false, (mozilla::RunnableKind)1>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerChild*, void (mozilla::plugins::FunctionBrokerChild::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerChild*, void (mozilla::plugins::FunctionBrokerChild::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerParent*, void (mozilla::plugins::FunctionBrokerParent::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerParent*, void (mozilla::plugins::FunctionBrokerParent::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginProcessParent*, void (mozilla::plugins::PluginProcessParent::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: ActorsParent.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::Database*, void (mozilla::dom::indexedDB::(anonymous namespace)::Database::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: ActorsParent.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp*, void (mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper*, void (mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::IDBDatabase*, void (mozilla::dom::IDBDatabase::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentChild*, void (mozilla::dom::ContentChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char> const&, nsTString<char16_t> const&), false, (mozilla::RunnableKind)0, mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char>, nsTString<char16_t> >::Run()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(unsigned int), false, (mozilla::RunnableKind)0, unsigned int>::Run()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(bool), false, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&>::Run()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch const&), false, (mozilla::RunnableKind)0, mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch>::Run()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentBridgeChild*, void (mozilla::dom::ContentBridgeChild::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentBridgeParent*, void (mozilla::dom::ContentBridgeParent::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentParent*, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), true, (mozilla::RunnableKind)0, mozilla::dom::ContentParent::ShutDownMethod>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::PreallocatedProcessManagerImpl*, void (mozilla::PreallocatedProcessManagerImpl::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ipc::WritableSharedMap*, void (mozilla::dom::ipc::WritableSharedMap::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable> const, void (mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FHIDTokenManager*, void (mozilla::dom::U2FHIDTokenManager::*)(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(nsTString<char16_t>), true, (mozilla::RunnableKind)0, nsTString<char16_t> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0, unsigned long, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(unsigned long), true, (mozilla::RunnableKind)0, unsigned long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsBindingManager*, void (nsBindingManager::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XMLStylesheetProcessingInstruction*, void (mozilla::dom::XMLStylesheetProcessingInstruction::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsXMLContentSink*, void (nsXMLContentSink::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsXMLPrettyPrinter*, void (nsXMLPrettyPrinter::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XULDocument*, void (mozilla::dom::XULDocument::*)(mozilla::dom::Element*, int, nsAtom*), true, (mozilla::RunnableKind)0, mozilla::dom::Element*, int, nsAtom*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XULDocument*, void (mozilla::dom::XULDocument::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistDocumentReceiver>, nsresult (nsIWebBrowserPersistDocumentReceiver::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistResourceVisitor>, nsresult (nsIWebBrowserPersistResourceVisitor::*)(nsIWebBrowserPersistDocument*, nsresult), true, (mozilla::RunnableKind)0, nsCOMPtr<nsIWebBrowserPersistDocument>, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistWriteCompletion>, nsresult (nsIWebBrowserPersistWriteCompletion::*)(nsIWebBrowserPersistDocument*, nsIOutputStream*, nsTSubstring<char> const&, nsresult), true, (mozilla::RunnableKind)0, nsCOMPtr<nsIWebBrowserPersistDocument>, nsCOMPtr<nsIOutputStream>, nsTString<char>, nsresult>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWebBrowserPersist*, void (nsWebBrowserPersist::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsWebBrowserPersist>, void (nsWebBrowserPersist::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWebBrowserPersist*, nsresult (nsWebBrowserPersist::*)(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XMLHttpRequestMainThread*, void (mozilla::dom::XMLHttpRequestMainThread::*)(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType), true, (mozilla::RunnableKind)0, mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::WorkletThread*, nsresult (nsThread::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIScriptElement*, nsresult (nsIScriptElement::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ScriptLoader*, void (mozilla::dom::ScriptLoader::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::WaitUntilHandler*, void (mozilla::dom::(anonymous namespace)::WaitUntilHandler::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback*, void (mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback::*)(bool), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::PushErrorReporter*, void (mozilla::dom::(anonymous namespace)::PushErrorReporter::*)(unsigned short), true, (mozilla::RunnableKind)0, unsigned short>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::ServiceWorkerRegistrar>, void (mozilla::dom::ServiceWorkerRegistrar::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::WorkerListener*, void (mozilla::dom::WorkerListener::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), true, (mozilla::RunnableKind)1, mozilla::dom::ServiceWorkerRegistrationDescriptor>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerJob*, void (mozilla::dom::ServiceWorkerJob::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerProxy*, void (mozilla::dom::ServiceWorkerProxy::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrar*, void (mozilla::dom::ServiceWorkerRegistrar::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistration*, void (mozilla::dom::ServiceWorkerRegistration::*)(), true, (mozilla::RunnableKind)1>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationMainThread*, void (mozilla::dom::ServiceWorkerRegistrationMainThread::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::WorkerListener>, void (mozilla::dom::WorkerListener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::WorkerListener>, void (mozilla::dom::WorkerListener::*)(), true, (mozilla::RunnableKind)1>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationInfo*, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationInfo*, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(bool), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationProxy*, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationProxy*, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), true, (mozilla::RunnableKind)0, mozilla::dom::ServiceWorkerRegistrationDescriptor>::Run()
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::Connection*, void (mozilla::dom::(anonymous namespace)::Connection::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::OpenOp*, void (mozilla::dom::(anonymous namespace)::OpenOp::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsISDBCallback>, nsresult (nsISDBCallback::*)(nsISDBRequest*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::SDBRequest> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationAvailability*, void (mozilla::dom::PresentationAvailability::*)(bool), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationConnection*, nsresult (mozilla::dom::PresentationConnection::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationDeviceManager*, nsresult (mozilla::dom::PresentationDeviceManager::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationRequest*, void (mozilla::dom::PresentationRequest::*)(nsTSubstring<char16_t> const&, mozilla::dom::Promise*), true, (mozilla::RunnableKind)0, nsTString<char16_t>, RefPtr<mozilla::dom::Promise> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationControllingInfo*, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIPresentationSessionTransportBuilderListener>, nsresult (nsIPresentationSessionTransportBuilderListener::*)(nsIPresentationSessionTransport*), true, (mozilla::RunnableKind)0, nsIPresentationSessionTransport*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationTCPSessionTransport*, void (mozilla::dom::PresentationTCPSessionTransport::*)(mozilla::dom::PresentationTCPSessionTransport::ReadyState), true, (mozilla::RunnableKind)0, mozilla::dom::PresentationTCPSessionTransport::ReadyState>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::presentation::MulticastDNSDeviceProvider*, nsresult (mozilla::dom::presentation::MulticastDNSDeviceProvider::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(float), true, (mozilla::RunnableKind)0, float>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), true, (mozilla::RunnableKind)0, mozilla::layers::KeyboardMap>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0, unsigned long, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByLRef<nsTArray<unsigned int> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::CompositorVsyncDispatcher*, void (mozilla::CompositorVsyncDispatcher::*)(bool), true, (mozilla::RunnableKind)0, bool>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::RefreshTimerVsyncDispatcher*, void (mozilla::RefreshTimerVsyncDispatcher::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWindow*, void (nsWindow::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDeviceContextSpecGTK*, void (nsDeviceContextSpecGTK::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::HTMLEditRules*, void (mozilla::HTMLEditRules::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::HTMLEditor*, void (mozilla::HTMLEditor::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::FontFaceSet*, void (mozilla::dom::FontFaceSet::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver*, void (mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsRefreshDriver*, void (nsRefreshDriver::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::PresShell*, void (mozilla::PresShell::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<ZoomConstraintsClient*, void (ZoomConstraintsClient::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsPresContext*, void (nsPresContext::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIDateTimeInputArea>, nsresult (nsIDateTimeInputArea::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layout::VsyncParent*, void (mozilla::layout::VsyncParent::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0, mozilla::TimeStamp>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDocShell*, void (nsDocShell::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChildProfilerController*, void (mozilla::ChildProfilerController::*)(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChildProfilerController*, void (mozilla::ChildProfilerController::*)(nsTString<char>*), true, (mozilla::RunnableKind)0, nsTString<char>*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::DataStorage>, void (mozilla::DataStorage::*)(char const*), true, (mozilla::RunnableKind)0, char const*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DataStorage*, void (mozilla::DataStorage::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::psm::PSMContentStreamListener*, void (mozilla::psm::PSMContentStreamListener::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::extensions::StreamFilter*, void (mozilla::extensions::StreamFilter::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::extensions::StreamFilterParent>, void (mozilla::extensions::StreamFilterParent::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::extensions::StreamFilterParent*, void (mozilla::ipc::IToplevelProtocol::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::extensions::StreamFilterParent*, void (mozilla::extensions::StreamFilterParent::*)(nsTArray<unsigned char>&&), true, (mozilla::RunnableKind)0, nsTArray<unsigned char>&&>::Run()
Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::places::(anonymous namespace)::VisitedQuery>, nsresult (mozilla::places::(anonymous namespace)::VisitedQuery::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::places::Database*, nsresult (mozilla::places::Database::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::places::AsyncFetchAndSetIconForPage*, nsresult (mozilla::places::AsyncFetchAndSetIconForPage::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::places::AsyncReplaceFaviconData*, nsresult (mozilla::places::AsyncReplaceFaviconData::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsNavHistory*, void (nsNavHistory::*)(nsTSubstring<char> const&, int, nsTSubstring<char> const&, bool, long), true, (mozilla::RunnableKind)0, nsTString<char>, int, nsTString<char>, bool, long>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsUrlClassifierDBServiceWorker>, void (nsUrlClassifierDBServiceWorker::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsUrlClassifierDBServiceWorker> const, nsresult (nsUrlClassifierDBServiceWorker::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsFormFillController*, void (nsFormFillController::*)(mozilla::dom::HTMLInputElement*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::HTMLInputElement> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsNativeAppSupportUnix*, void (nsNativeAppSupportUnix::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsUpdateProcessor*, void (nsUpdateProcessor::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher*, void (mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, void (nsBar::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar const>, void (nsBar::*)() const, true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, nsresult (nsBar::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, void (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0, RefPtr<nsFoo> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, nsresult (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0, RefPtr<nsFoo> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, void (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0, nsFoo*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, nsresult (nsBar::*)(char*), true, (mozilla::RunnableKind)0, char*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IdleObject*, void (IdleObject::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IdleObject*, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsFoo>, nsresult (nsFoo::*)(bool*), true, (mozilla::RunnableKind)0, bool*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)2>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(char const*, unsigned int), true, (mozilla::RunnableKind)2, char const*, unsigned int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectWithoutSetDeadline>, void (IdleObjectWithoutSetDeadline::*)(), true, (mozilla::RunnableKind)2>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectInheritedSetDeadline>, void (IdleObjectInheritedSetDeadline::*)(), true, (mozilla::RunnableKind)2>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int), true, (mozilla::RunnableKind)0, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObjectNonRefCountedBase::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int, int), true, (mozilla::RunnableKind)0, int, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int), true, (mozilla::RunnableKind)0, int, int, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int, int), true, (mozilla::RunnableKind)0, int, int, int, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int*), true, (mozilla::RunnableKind)0, int*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), true, (mozilla::RunnableKind)0, int const*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int*), true, (mozilla::RunnableKind)0, StoreCopyPassByPtr<int> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), true, (mozilla::RunnableKind)0, StoreCopyPassByConstPtr<int> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int&), true, (mozilla::RunnableKind)0, int&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int&&), true, (mozilla::RunnableKind)0, int&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), true, (mozilla::RunnableKind)0, StoreCopyPassByValue<TestThreadUtils::Spy> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<TestThreadUtils::Spy> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&), true, (mozilla::RunnableKind)0, TestThreadUtils::Spy&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), true, (mozilla::RunnableKind)0, TestThreadUtils::Spy*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const*), true, (mozilla::RunnableKind)0, TestThreadUtils::Spy const*>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<CDMStorageTest*, void (CDMStorageTest::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<CDMStorageTest*, void (CDMStorageTest::*)(nsTString<char>), true, (mozilla::RunnableKind)0, nsTString<char> >::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<CDMStorageTest*, void (CDMStorageTest::*)(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPTestMonitor*, void (GMPTestMonitor::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPTestRunner*, void (GMPTestRunner::*)(GMPTestMonitor&), true, (mozilla::RunnableKind)0, GMPTestMonitor&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPRemoveTest*, void (GMPRemoveTest::*)(nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**), false, (mozilla::RunnableKind)0, nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPVideoDecoderProxy*, nsresult (GMPVideoDecoderProxy::*)(GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int), false, (mozilla::RunnableKind)0, GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPVideoDecoderProxy*, void (GMPVideoDecoderProxy::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPRemoveTest*, void (GMPRemoveTest::*)(), false, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<int>*, void (mozilla::detail::Listener<int>::*)(int&&), true, (mozilla::RunnableKind)0, int&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<int>*, void (mozilla::detail::Listener<int>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<SomeEvent>*, void (mozilla::detail::Listener<SomeEvent>::*)(SomeEvent&&), true, (mozilla::RunnableKind)0, SomeEvent&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<SomeEvent>*, void (mozilla::detail::Listener<SomeEvent>::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(), true, (mozilla::RunnableKind)0>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<RefCounter> >*, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(RefPtr<RefCounter>&&), true, (mozilla::RunnableKind)0, RefPtr<RefCounter>&&>::Run()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<RefCounter> >*, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(), true, (mozilla::RunnableKind)0>::Run()
1234
1235
  nsresult Cancel()
1236
0
  {
1237
0
    static_assert(Kind >= RunnableKind::Cancelable, "Don't use me!");
1238
0
    Revoke();
1239
0
    return NS_OK;
1240
0
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsStringBundleBase*, nsresult (nsStringBundleBase::*)(), true, (mozilla::RunnableKind)2>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsProtocolProxyService*, nsresult (mozilla::net::nsProtocolProxyService::*)(bool, bool, nsresult, nsTSubstring<char> const&), false, (mozilla::RunnableKind)1, bool, bool, nsresult, nsTString<char> >::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::MessageChannel*, void (mozilla::ipc::MessageChannel::*)(), false, (mozilla::RunnableKind)1>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(), true, (mozilla::RunnableKind)1>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(bool), true, (mozilla::RunnableKind)1, bool>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ActiveElementManager*, void (mozilla::layers::ActiveElementManager::*)(nsCOMPtr<mozilla::dom::Element> const&), true, (mozilla::RunnableKind)1, nsCOMPtr<mozilla::dom::Element> >::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(), true, (mozilla::RunnableKind)1>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorVsyncScheduler*, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)1, mozilla::TimeStamp>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<SoftwareDisplay*, void (SoftwareDisplay::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)1, mozilla::TimeStamp>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::ReadStream::Inner*, void (mozilla::dom::cache::ReadStream::Inner::*)(), true, (mozilla::RunnableKind)1>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool), false, (mozilla::RunnableKind)1, gfxSurfaceType, mozilla::plugins::NPRemoteWindow, bool>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(), false, (mozilla::RunnableKind)1>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::WorkerListener*, void (mozilla::dom::WorkerListener::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), true, (mozilla::RunnableKind)1, mozilla::dom::ServiceWorkerRegistrationDescriptor>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistration*, void (mozilla::dom::ServiceWorkerRegistration::*)(), true, (mozilla::RunnableKind)1>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::WorkerListener>, void (mozilla::dom::WorkerListener::*)(), true, (mozilla::RunnableKind)1>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IdleObject*, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)2>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(char const*, unsigned int), true, (mozilla::RunnableKind)2, char const*, unsigned int>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectWithoutSetDeadline>, void (IdleObjectWithoutSetDeadline::*)(), true, (mozilla::RunnableKind)2>::Cancel()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectInheritedSetDeadline>, void (IdleObjectInheritedSetDeadline::*)(), true, (mozilla::RunnableKind)2>::Cancel()
1241
1242
  void Revoke()
1243
13
  {
1244
13
    CancelTimer();
1245
13
    mReceiver.Revoke();
1246
13
  }
mozilla::detail::RunnableMethodImpl<FdWatcher*, void (FdWatcher::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Line
Count
Source
1243
3
  {
1244
3
    CancelTimer();
1245
3
    mReceiver.Revoke();
1246
3
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsMemoryReporterManager*, nsresult (nsMemoryReporterManager::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsObserverService>, void (nsObserverService::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::EventTargetWrapper*, void (mozilla::EventTargetWrapper::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::LazyIdleThread*, void (mozilla::LazyIdleThread::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::LazyIdleThread*, void (mozilla::LazyIdleThread::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIBlockThreadedExecutionCallback*, nsresult (nsIBlockThreadedExecutionCallback::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIThreadPool>, nsresult (nsIThreadPool::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsProcess>, void (nsProcess::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIThread*, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(bool&&), true, (mozilla::RunnableKind)0, bool&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Preferences*, nsresult (mozilla::Preferences::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsStringBundleBase*, nsresult (nsStringBundleBase::*)(), true, (mozilla::RunnableKind)2>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::BackgroundFileSaver*, nsresult (mozilla::net::BackgroundFileSaver::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::BackgroundFileSaverStreamListener*, nsresult (mozilla::net::BackgroundFileSaverStreamListener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::ConnectionData> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::LookupHelper*, nsresult (mozilla::net::LookupHelper::*)(mozilla::net::LookupArgument*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::LookupArgument> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::SocketData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::SocketData> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::HttpData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::HttpData> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::WebSocketRequest*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::WebSocketRequest> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::DnsData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::DnsData> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::RcwnData*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::RcwnData> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsAsyncStreamCopier>, void (nsAsyncStreamCopier::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsICaptivePortalService>, nsresult (nsICaptivePortalService::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsInputStreamPump*, nsresult (nsInputStreamPump::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsPACMan*, void (mozilla::net::nsPACMan::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsServerSocket*, void (mozilla::net::nsServerSocket::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsProtocolProxyService*, nsresult (mozilla::net::nsProtocolProxyService::*)(bool, bool, nsresult, nsTSubstring<char> const&), false, (mozilla::RunnableKind)1, bool, bool, nsresult, nsTString<char> >::Revoke()
mozilla::detail::RunnableMethodImpl<mozilla::net::nsSocketTransportService*, void (mozilla::net::nsSocketTransportService::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Line
Count
Source
1243
7
  {
1244
7
    CancelTimer();
1245
7
    mReceiver.Revoke();
1246
7
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsUDPSocket*, void (mozilla::net::nsUDPSocket::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsHostResolver*, void (nsHostResolver::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::DNSRequestChild*, void (mozilla::net::DNSRequestChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCacheService*, void (nsCacheService::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheEntry*, void (mozilla::net::CacheEntry::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheEntry*, void (mozilla::net::CacheEntry::*)(double), true, (mozilla::RunnableKind)0, double>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileChunk*, unsigned int (mozilla::net::CacheFileChunk::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileContextEvictor*, nsresult (mozilla::net::CacheFileContextEvictor::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileHandle*, unsigned int (mozilla::net::CacheFileHandle::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::CacheFileIOManager>, nsresult (mozilla::net::CacheFileIOManager::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheFileIOManager*, nsresult (mozilla::net::CacheFileIOManager::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::CacheFileIOManager>, nsresult (mozilla::net::CacheFileIOManager::*)(nsILoadContextInfo*, bool, nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, nsCOMPtr<nsILoadContextInfo>, bool, nsTString<char16_t> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::CacheIndex>, void (mozilla::net::CacheIndex::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheObserver*, void (mozilla::net::CacheObserver::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::CacheStorageService*, void (mozilla::net::CacheStorageService::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsAboutCache::Channel*, void (nsAboutCache::Channel::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsFileUploadContentStream*, void (nsFileUploadContentStream::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::FTPChannelParent*, void (mozilla::net::FTPChannelParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::nsHttpConnectionMgr>, nsresult (mozilla::net::nsHttpConnectionMgr::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::AltSvcMapping*, void (mozilla::net::AltSvcMapping::*)(nsTString<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::Http2Session*, void (mozilla::net::Http2Session::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&), true, (mozilla::RunnableKind)0, nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::TimeStamp const, mozilla::net::nsHttpHeaderArray const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(long const&, long const&), true, (mozilla::RunnableKind)0, long const, long const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&), true, (mozilla::RunnableKind)0, nsresult const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&), true, (mozilla::RunnableKind)0, nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::net::nsHttpHeaderArray const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(long const&, long const&), true, (mozilla::RunnableKind)0, long const, long const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&), true, (mozilla::RunnableKind)0, nsresult const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(bool), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> const, nsTString<char> const, nsTString<char> const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpBaseChannel*, void (mozilla::net::HttpBaseChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, unsigned int (mozilla::net::HttpChannelChild::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::HttpBackgroundChannelChild>, void (mozilla::net::HttpBackgroundChannelChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpBaseChannel::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> const, nsTString<char> const, nsTString<char> const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpChannelChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpChannelChild::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::HttpBackgroundChannelChild>, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::net::HttpChannelChild> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(nsresult const&), true, (mozilla::RunnableKind)0, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpBaseChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::HttpChannelParent*, void (mozilla::net::HttpChannelParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIInterceptedChannel*, nsresult (nsIInterceptedChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::InterceptedHttpChannel*, void (mozilla::net::InterceptedHttpChannel::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsHttpChannel*, void (mozilla::net::nsHttpChannel::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::nsHttpChannel*, nsresult (mozilla::net::nsHttpChannel::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::ExtensionJARFileOpener*, nsresult (mozilla::net::ExtensionJARFileOpener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::net::ExtensionJARFileOpener>, nsresult (mozilla::net::ExtensionJARFileOpener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannel*, nsresult (mozilla::net::WebSocketChannel::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannel*, void (mozilla::net::WebSocketChannel::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannel*, void (mozilla::net::WebSocketChannel::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::net::WebSocketChannelChild*, void (mozilla::net::WebSocketChannelChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWyciwygChannel*, void (nsWyciwygChannel::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::ContentParent>, unsigned int (mozilla::dom::ContentParent::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::ParentImpl*, void ((anonymous namespace)::ParentImpl::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::ContentChild>, bool (mozilla::dom::PContentChild::*)(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> const&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::GeckoChildProcessHost*, bool (mozilla::ipc::GeckoChildProcessHost::*)(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> > > >), false, (mozilla::RunnableKind)0, 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> > > > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::MessageChannel*, void (mozilla::ipc::MessageChannel::*)(), false, (mozilla::RunnableKind)1>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::MessageChannel*, void (mozilla::ipc::MessageChannel::*)(mozilla::ipc::MessageChannel*, mozilla::ipc::Side), false, (mozilla::RunnableKind)0, mozilla::ipc::MessageChannel*, mozilla::ipc::Side>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::ProcessLink*, void (mozilla::ipc::ProcessLink::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ipc::ProcessLink*, void (mozilla::ipc::ProcessLink::*)(IPC::Message*), false, (mozilla::RunnableKind)0, IPC::Message*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IPC::Channel*, bool (IPC::Channel::*)(IPC::Message*), false, (mozilla::RunnableKind)0, IPC::Message*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ScriptPreloader*, void (mozilla::ScriptPreloader::*)(), true, (mozilla::RunnableKind)0>::Revoke()
mozilla::detail::RunnableMethodImpl<mozilla::URLPreloader*, void (mozilla::URLPreloader::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Line
Count
Source
1243
3
  {
1244
3
    CancelTimer();
1245
3
    mReceiver.Revoke();
1246
3
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIThread>, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsJARChannel>, nsresult (nsJARChannel::*)(nsJARInputThunk*, bool), true, (mozilla::RunnableKind)0, RefPtr<nsJARInputThunk>, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsJARChannel>, nsresult (nsJARChannel::*)(nsresult, bool), true, (mozilla::RunnableKind)0, nsresult, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsJARChannel*, void (nsJARChannel::*)(unsigned long), true, (mozilla::RunnableKind)0, unsigned long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::storage::Connection>, void (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::Connection*, nsresult (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::Connection*, void (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozIStorageError*), true, (mozilla::RunnableKind)0, nsCOMPtr<mozIStorageError> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozilla::storage::ResultSet*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::storage::ResultSet> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::storage::Connection>, nsresult (mozilla::storage::Connection::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::VideoFrameConverter*, void (mozilla::VideoFrameConverter::*)(mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::layers::Image>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::GenericReceiveListener*, void (mozilla::GenericReceiveListener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoSessionConduit>, void (mozilla::VideoSessionConduit::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsOfflineCacheUpdate*, void (nsOfflineCacheUpdate::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsHtml5Parser*, nsresult (nsHtml5Parser::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::PaintThread*, void (mozilla::layers::PaintThread::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncImagePipelineManager*, void (mozilla::layers::AsyncImagePipelineManager::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorBridgeParentBase>, void (mozilla::layers::CompositorBridgeParentBase::*)(mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, bool), true, (mozilla::RunnableKind)0, mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), true, (mozilla::RunnableKind)0, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::GeckoContentController>, void (mozilla::layers::GeckoContentController::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::Maybe<mozilla::layers::ZoomConstraints> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::InputQueue>, void (mozilla::layers::InputQueue::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&), true, (mozilla::RunnableKind)0, mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> const&), true, (mozilla::RunnableKind)0, mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::OverscrollHandoffChain const*, void (mozilla::layers::OverscrollHandoffChain::*)(mozilla::layers::AsyncPanZoomController const*) const, true, (mozilla::RunnableKind)0, mozilla::layers::AsyncPanZoomController*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&, RefPtr<mozilla::layers::OverscrollHandoffChain const> const&, RefPtr<mozilla::layers::AsyncPanZoomController const> const&), true, (mozilla::RunnableKind)0, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>, RefPtr<mozilla::layers::OverscrollHandoffChain const>, RefPtr<mozilla::layers::AsyncPanZoomController const> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::GeckoContentController>, void (mozilla::layers::GeckoContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), true, (mozilla::RunnableKind)0, mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(bool), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::layers::FrameMetrics const&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), true, (mozilla::RunnableKind)0, mozilla::layers::FrameMetrics, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(), true, (mozilla::RunnableKind)1>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(bool), true, (mozilla::RunnableKind)1, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::InputQueue*, void (mozilla::layers::InputQueue::*)(unsigned long), true, (mozilla::RunnableKind)0, unsigned long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ActiveElementManager*, void (mozilla::layers::ActiveElementManager::*)(nsCOMPtr<mozilla::dom::Element> const&), true, (mozilla::RunnableKind)1, nsCOMPtr<mozilla::dom::Element> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), true, (mozilla::RunnableKind)0, mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), true, (mozilla::RunnableKind)0, mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&, nsTString<char16_t> const&), true, (mozilla::RunnableKind)0, unsigned long, nsTString<char16_t> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&), true, (mozilla::RunnableKind)0, unsigned long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), true, (mozilla::RunnableKind)0, mozilla::layers::KeyboardMap>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0, unsigned long, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(float), true, (mozilla::RunnableKind)0, float>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByRRef<nsTArray<unsigned int> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, bool (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::APZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(bool), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorBridgeChild>, void (mozilla::layers::CompositorBridgeChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParentBase*, bool (mozilla::layers::CompositorBridgeParentBase::*)(base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int), true, (mozilla::RunnableKind)0, base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParentBase*, bool (mozilla::layers::CompositorBridgeParentBase::*)(unsigned long, unsigned int), true, (mozilla::RunnableKind)0, unsigned long, unsigned int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(int, int), true, (mozilla::RunnableKind)0, int, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(), true, (mozilla::RunnableKind)1>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::CompositorManagerParent>, void (mozilla::layers::CompositorManagerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorManagerParent*, void (mozilla::layers::CompositorManagerParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorVsyncScheduler*, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)1, mozilla::TimeStamp>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CompositorVsyncScheduler*, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0, mozilla::TimeStamp>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::CrossProcessCompositorBridgeParent*, void (mozilla::layers::CrossProcessCompositorBridgeParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::ImageBridgeChild>, void (mozilla::layers::ImageBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::ImageBridgeParent>, void (mozilla::layers::ImageBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::ImageBridgeParent*, void (mozilla::layers::ImageBridgeParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long), true, (mozilla::RunnableKind)0, mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), true, (mozilla::RunnableKind)0, mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(float, float, bool), true, (mozilla::RunnableKind)0, float, float, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(unsigned long const&, nsTString<char16_t> const&), true, (mozilla::RunnableKind)0, unsigned long, nsTString<char16_t> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(unsigned long const&), true, (mozilla::RunnableKind)0, unsigned long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::LayerTransactionChild>, void (mozilla::layers::LayerTransactionChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerChild>, void (mozilla::layers::UiCompositorControllerChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerChild>, void (mozilla::layers::UiCompositorControllerChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::UiCompositorControllerChild*, void (mozilla::layers::UiCompositorControllerChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::UiCompositorControllerParent>, void (mozilla::layers::UiCompositorControllerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)(int), true, (mozilla::RunnableKind)0, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GtkVsyncSource::GLXDisplay*, void (GtkVsyncSource::GLXDisplay::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<SoftwareDisplay*, void (SoftwareDisplay::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<SoftwareDisplay*, void (SoftwareDisplay::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)1, mozilla::TimeStamp>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VsyncBridgeChild>, void (mozilla::gfx::VsyncBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VsyncBridgeChild*, void (mozilla::gfx::VsyncBridgeChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VsyncBridgeParent>, void (mozilla::gfx::VsyncBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VsyncBridgeParent*, void (mozilla::gfx::VsyncBridgeParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsIThread>, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRDisplayHost*, void (mozilla::gfx::VRDisplayHost::*)(mozilla::layers::SurfaceDescriptor const&, unsigned long, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::impl::VRControllerOpenVR*, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), true, (mozilla::RunnableKind)0, vr::IVRSystem*, unsigned int, double, double, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManager*, void (mozilla::gfx::VRManager::*)(mozilla::gfx::VRManagerPromise const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRThread*, void (mozilla::gfx::VRThread::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0, mozilla::TimeStamp>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRGPUParent*, void (mozilla::gfx::VRGPUParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VRGPUParent>, void (mozilla::gfx::VRGPUParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManagerChild*, void (mozilla::gfx::VRManagerChild::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManagerChild*, void (mozilla::gfx::VRManagerChild::*)(unsigned int, mozilla::dom::VREventObserver*), true, (mozilla::RunnableKind)0, unsigned int, RefPtr<mozilla::dom::VREventObserver> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gfx::VRManagerParent>, void (mozilla::gfx::VRManagerParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRManagerParent*, void (mozilla::gfx::VRManagerParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gfx::VRService*, void (mozilla::gfx::VRService::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> const&), true, (mozilla::RunnableKind)0, mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId), true, (mozilla::RunnableKind)0, mozilla::wr::WrWindowId>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >), true, (mozilla::RunnableKind)0, mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::wr::RenderTextureHostWrapper*, void (mozilla::wr::RenderTextureHostWrapper::*)(mozilla::wr::RenderTextureHost*), true, (mozilla::RunnableKind)0, mozilla::wr::RenderTextureHost*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(int, int, unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*), true, (mozilla::RunnableKind)0, int, int, unsigned int, nsTString<char16_t>, nsTString<char16_t>, nsIObserver*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, int, int, nsIObserver*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0, unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*), true, (mozilla::RunnableKind)0, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWidget>, nsresult (nsIWidget::*)(nsIObserver*), true, (mozilla::RunnableKind)0, nsIObserver*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsGlobalWindowOuter*, void (nsGlobalWindowOuter::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsGlobalWindowInner>, void (nsGlobalWindowInner::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsGlobalWindowOuter>, void (nsGlobalWindowOuter::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsXBLBinding>, void (nsXBLBinding::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::EventSourceImpl*, void (mozilla::dom::EventSourceImpl::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ScreenOrientation*, void (mozilla::dom::ScreenOrientation::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsContentSink*, void (nsContentSink::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIDocument*, void (nsIDocument::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIDocument*, void (nsIDocument::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDocument*, void (nsDocument::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TimedMetadata>*, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(mozilla::TimedMetadata&&), true, (mozilla::RunnableKind)0, mozilla::TimedMetadata&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TimedMetadata>*, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsRange*, void (nsRange::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsAttributeTextNode*, void (nsAttributeTextNode::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::Context::ThreadsafeHandle*, void (mozilla::dom::cache::Context::ThreadsafeHandle::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::Manager::CachePutAllAction*, void (mozilla::dom::cache::Manager::CachePutAllAction::*)(nsresult), false, (mozilla::RunnableKind)0, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::cache::ReadStream::Inner*, void (mozilla::dom::cache::ReadStream::Inner::*)(), true, (mozilla::RunnableKind)1>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::CanvasRenderingContext2D*, void (mozilla::dom::CanvasRenderingContext2D::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::EventListenerService*, void (mozilla::EventListenerService::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLCanvasPrintState*, void (mozilla::dom::HTMLCanvasPrintState::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLCanvasElement*, void (mozilla::dom::HTMLCanvasElement::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::BlobCallback*, void (mozilla::dom::BlobCallback::*)(mozilla::dom::Blob*, char const*), true, (mozilla::RunnableKind)0, mozilla::dom::Blob*, char const*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLEmbedElement*, void (mozilla::dom::HTMLEmbedElement::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLImageElement*, void (mozilla::dom::HTMLImageElement::*)(bool), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLInputElement*, void (mozilla::dom::HTMLInputElement::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLLinkElement*, void (mozilla::dom::HTMLLinkElement::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::StreamSizeListener*, void (mozilla::dom::HTMLMediaElement::StreamSizeListener::*)(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>), true, (mozilla::RunnableKind)0, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::ChannelLoader*, void (mozilla::dom::HTMLMediaElement::ChannelLoader::*)(mozilla::dom::HTMLMediaElement*), true, (mozilla::RunnableKind)0, mozilla::dom::HTMLMediaElement*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement::StreamListener*, void (mozilla::dom::HTMLMediaElement::StreamListener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement*, void (mozilla::dom::HTMLMediaElement::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLMediaElement*, void (mozilla::dom::HTMLMediaElement::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::MediaStreamTrack*, void (mozilla::dom::MediaStreamTrack::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::DOMMediaStream>, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::MediaStreamTrack>, void (mozilla::dom::MediaStreamTrack::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLObjectElement*, void (mozilla::dom::HTMLObjectElement::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLStyleElement*, void (mozilla::dom::HTMLStyleElement::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLTrackElement*, void (mozilla::dom::HTMLTrackElement::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::HTMLTrackElement*, void (mozilla::dom::HTMLTrackElement::*)(nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, nsTString<char16_t> const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ImageDocument*, void (mozilla::dom::ImageDocument::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::TextTrackManager*, void (mozilla::dom::TextTrackManager::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<HTMLContentSink*, void (HTMLContentSink::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsHTMLDocument*, void (nsHTMLDocument::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsJSChannel*, void (nsJSChannel::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::BackgroundVideoDecodingPermissionObserver*, void (mozilla::BackgroundVideoDecodingPermissionObserver::*)() const, true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream::OwnedStreamListener*, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, mozilla::MediaStream*, int), true, (mozilla::RunnableKind)0, mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, RefPtr<mozilla::MediaStream>, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream*, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::MediaStreamTrack> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream::OwnedStreamListener*, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, mozilla::MediaStream*, int, int), true, (mozilla::RunnableKind)0, mozilla::MediaStreamGraph*, RefPtr<mozilla::MediaStream>, int, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream::PlaybackStreamListener*, void (mozilla::DOMMediaStream::PlaybackStreamListener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DOMMediaStream*, void (mozilla::DOMMediaStream::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(bool), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChannelMediaResource*, void (mozilla::ChannelMediaResource::*)(bool), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChannelMediaResource*, void (mozilla::ChannelMediaResource::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(double), true, (mozilla::RunnableKind)0, double>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::FileBlockCache*, void (mozilla::FileBlockCache::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<double>::Impl*, void (mozilla::Canonical<double>::Impl::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<double>*, void (mozilla::AbstractMirror<double>::*)(double const&), true, (mozilla::RunnableKind)0, double>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<bool>*, void (mozilla::AbstractMirror<bool>::*)(bool const&), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*, void (mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>::*)(mozilla::MediaDecoder::PlayState const&), true, (mozilla::RunnableKind)0, mozilla::MediaDecoder::PlayState>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*, void (mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), true, (mozilla::RunnableKind)0, nsMainThreadPtrHandle<nsIPrincipal> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<bool>::Impl*, void (mozilla::Canonical<bool>::Impl::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*, void (mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl*, void (mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader>, void (mozilla::MediaFormatReader::*)(already_AddRefed<mozilla::layers::KnowsCompositor>), true, (mozilla::RunnableKind)0, already_AddRefed<mozilla::layers::KnowsCompositor>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::media::TimeIntervals>*, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::media::TimeUnit>*, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<bool>*, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> > >, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeIntervals> >, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeUnit> >, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<bool> >, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), true, (mozilla::RunnableKind)0, mozilla::MediaPlaybackEvent::EventType&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(mozilla::MediaDecoderOwner::NextFrameStatus&&), true, (mozilla::RunnableKind)0, mozilla::MediaDecoderOwner::NextFrameStatus&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(RefPtr<mozilla::AudioData>&&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::AudioData>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(RefPtr<mozilla::VideoData>&&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::VideoData>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*, void (mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::Maybe<mozilla::media::TimeUnit> const&), true, (mozilla::RunnableKind)0, mozilla::Maybe<mozilla::media::TimeUnit> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState> >, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<double> >, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> > >, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<bool> >, void (mozilla::AbstractMirror<bool>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::media::TimeUnit>*, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(mozilla::media::TimeUnit const&), true, (mozilla::RunnableKind)0, mozilla::media::TimeUnit>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>*, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<double>*, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >*, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(mozilla::MediaDecoder*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::MediaDecoder> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), true, (mozilla::RunnableKind)0, mozilla::MediaPlaybackEvent&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::media::TimeUnit>::Impl*, void (mozilla::Canonical<mozilla::media::TimeUnit>::Impl::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(mozilla::VideoDecodeMode), true, (mozilla::RunnableKind)0, mozilla::VideoDecodeMode>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaResult>*, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(mozilla::MediaResult&&), true, (mozilla::RunnableKind)0, mozilla::MediaResult&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::MediaResult>*, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&), true, (mozilla::RunnableKind)0, nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(mozilla::DecoderDoctorEvent&&), true, (mozilla::RunnableKind)0, mozilla::DecoderDoctorEvent&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(bool), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::GetUserMediaWindowListener>, bool (mozilla::GetUserMediaWindowListener::*)(mozilla::SourceListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::SourceListener> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::SourceListener>, void (mozilla::SourceListener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::MediaRecorder>, void (mozilla::dom::MediaRecorder::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::MediaRecorder::Session*, void (mozilla::dom::MediaRecorder::Session::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaEncoder>, void (mozilla::MediaEncoder::*)(mozilla::MediaEncoderListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::AbstractMirror<mozilla::media::TimeIntervals>*, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(mozilla::media::TimeIntervals const&), true, (mozilla::RunnableKind)0, mozilla::media::TimeIntervals>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(nsTArray<unsigned char>&&, nsTString<char16_t>&&), true, (mozilla::RunnableKind)0, nsTArray<unsigned char>&&, nsTString<char16_t>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(mozilla::TrackInfo::TrackType), true, (mozilla::RunnableKind)0, mozilla::TrackInfo::TrackType>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl*, void (mozilla::Canonical<mozilla::media::TimeIntervals>::Impl::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::GetUserMediaWindowListener*, void (mozilla::GetUserMediaWindowListener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::MediaStreamTrack::PrincipalHandleListener*, void (mozilla::dom::MediaStreamTrack::PrincipalHandleListener::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaResource*, void (mozilla::MediaResource::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaTimer*, void (mozilla::MediaTimer::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaTimer*, void (mozilla::MediaTimer::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const, void (mozilla::MediaFormatReader::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const, nsresult (mozilla::MediaFormatReader::*)(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>), true, (mozilla::RunnableKind)0, mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaFormatReader> const, void (mozilla::MediaFormatReader::*)(bool), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaEncoder>, void (mozilla::MediaEncoder::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaEncoder::EncoderListener*, void (mozilla::MediaEncoder::EncoderListener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(long), true, (mozilla::RunnableKind)0, long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::AudioTrackEncoder::*)(mozilla::AudioSegment&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::AudioSegment> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::AudioTrackEncoder>, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::MediaEncoder::EncoderListener> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(long), true, (mozilla::RunnableKind)0, long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(mozilla::VideoSegment&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::VideoSegment> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::MediaEncoder::EncoderListener> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::MediaEncoderListener>, void (mozilla::MediaEncoderListener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::VideoTrackEncoder>, void (mozilla::VideoTrackEncoder::*)(int), true, (mozilla::RunnableKind)0, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, unsigned int, NS_ConvertUTF8toUTF16>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, bool), true, (mozilla::RunnableKind)0, unsigned int, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsresult, nsTString<char> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, NS_ConvertUTF8toUTF16, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, mozilla::dom::MediaKeyStatus), true, (mozilla::RunnableKind)0, unsigned int, mozilla::dom::MediaKeyStatus>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0, NS_ConvertUTF8toUTF16>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, long), true, (mozilla::RunnableKind)0, NS_ConvertUTF8toUTF16, long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const&, unsigned int const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const, unsigned int const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const, nsTString<char> const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const, unsigned int const, unsigned int const, nsTString<char> const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const, unsigned int const, nsTArray<unsigned char> const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const, nsTArray<mozilla::gmp::CDMKeyInformation> const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const&, double const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const, double const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const&), true, (mozilla::RunnableKind)0, bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, nsTString<char16_t>), true, (mozilla::RunnableKind)0, unsigned int, unsigned int, nsTString<char16_t> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsTArray<unsigned char> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0, nsTString<char>, unsigned int, nsTArray<unsigned char> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int), true, (mozilla::RunnableKind)0, nsTString<char>, unsigned int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::ChromiumCDMParent>, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTString<char> const&), true, (mozilla::RunnableKind)0, unsigned int, nsTString<char> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::GMPContentParent>, void (mozilla::gmp::GMPContentParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::GMPCrashHelper*, void (mozilla::GMPCrashHelper::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::GeckoMediaPluginServiceParent>, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(RefPtr<mozilla::gmp::GMPParent> const&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::gmp::GMPParent> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPParent*, void (mozilla::gmp::GMPParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPSyncRunnable*, void (mozilla::gmp::GMPSyncRunnable::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::gmp::GMPRunnable>, void (mozilla::gmp::GMPRunnable::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPRunnable*, void (mozilla::gmp::GMPRunnable::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPProcessParent*, void (mozilla::gmp::GMPProcessParent::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(long), true, (mozilla::RunnableKind)0, long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(nsTSubstring<char> const&, mozilla::OriginAttributesPattern const&), true, (mozilla::RunnableKind)0, nsTString<char>, mozilla::OriginAttributesPattern>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPServiceParent*, void (mozilla::gmp::GMPServiceParent::*)(mozilla::Monitor*, bool*), false, (mozilla::RunnableKind)0, mozilla::Monitor*, bool*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPVideoDecoderChild*, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoDecoderChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::gmp::GMPVideoEncoderChild*, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoEncoderChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::VideoDecoderManagerParent>, void (mozilla::dom::VideoDecoderManagerParent::*)(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<long>*, void (mozilla::detail::Listener<long>::*)(long&&), true, (mozilla::RunnableKind)0, long&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<long>*, void (mozilla::detail::Listener<long>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DecodedStreamGraphListener*, void (mozilla::DecodedStreamGraphListener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaStream*, void (mozilla::MediaStream::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSourceDemuxer*, void (mozilla::MediaSourceDemuxer::*)(RefPtr<mozilla::TrackBuffersManager>&&), true, (mozilla::RunnableKind)0, RefPtr<mozilla::TrackBuffersManager>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::TrackBuffersManager*, void (mozilla::TrackBuffersManager::*)(mozilla::SourceBufferTask*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::SourceBufferTask> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::TrackBuffersManager*, void (mozilla::TrackBuffersManager::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSourceDecoder*, void (mozilla::MediaSourceDecoder::*)(long), true, (mozilla::RunnableKind)0, long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(mozilla::TrackInfo::TrackType&&), true, (mozilla::RunnableKind)0, mozilla::TrackInfo::TrackType&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, nsTString<char> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, int const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, nsTString<char>, unsigned int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, unsigned int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, mozilla::ipc::PrincipalInfo const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, nsTString<char>, mozilla::ipc::PrincipalInfo const&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&, mozilla::camera::VideoCaptureCapability const&), true, (mozilla::RunnableKind)0, mozilla::camera::CaptureEngine, int, mozilla::camera::VideoCaptureCapability>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSystemResourceManager*, void (mozilla::MediaSystemResourceManager::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaSystemResourceManager*, void (mozilla::MediaSystemResourceManager::*)(unsigned int, bool), true, (mozilla::RunnableKind)0, unsigned int, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::AudioDestinationNode*, void (mozilla::dom::AudioDestinationNode::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::MediaDecodeTask*, void (mozilla::MediaDecodeTask::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<WebCore::ReverbConvolver*, void (WebCore::ReverbConvolver::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::nsFakeSynthServices*, void (mozilla::dom::nsFakeSynthServices::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SpeechDispatcherService*, void (mozilla::dom::SpeechDispatcherService::*)(unsigned int, unsigned int), true, (mozilla::RunnableKind)0, unsigned int, SPDNotificationType>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SpeechDispatcherService*, void (mozilla::dom::SpeechDispatcherService::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::SpeechDispatcherCallback>, bool (mozilla::dom::SpeechDispatcherCallback::*)(SPDNotificationType), true, (mozilla::RunnableKind)0, SPDNotificationType>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::NotificationPermissionRequest*, nsresult (mozilla::dom::NotificationPermissionRequest::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::quota::(anonymous namespace)::Quota*, void (mozilla::dom::quota::(anonymous namespace)::Quota::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::quota::QuotaManager*, void (mozilla::dom::quota::QuotaManager::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::LocalStorageCacheBridge*, void (mozilla::dom::LocalStorageCacheBridge::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBThread*, void (mozilla::dom::StorageDBThread::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::CacheParentBridge*, void (mozilla::dom::StorageDBParent::CacheParentBridge::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::UsageParentBridge*, void (mozilla::dom::StorageDBParent::UsageParentBridge::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::ObserverSink*, void (mozilla::dom::StorageDBParent::ObserverSink::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::StorageDBParent::ObserverSink*, void (mozilla::dom::StorageDBParent::ObserverSink::*)(nsTString<char> const&, nsTString<char16_t> const&, nsTString<char> const&), true, (mozilla::RunnableKind)0, nsTString<char>, nsTString<char16_t>, nsTString<char> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SVGFEImageElement*, void (mozilla::dom::SVGFEImageElement::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SVGImageElement*, void (mozilla::dom::SVGImageElement::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::SVGStyleElement*, void (mozilla::dom::SVGStyleElement::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool), false, (mozilla::RunnableKind)1, gfxSurfaceType, mozilla::plugins::NPRemoteWindow, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(), false, (mozilla::RunnableKind)1>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerChild*, void (mozilla::plugins::FunctionBrokerChild::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerChild*, void (mozilla::plugins::FunctionBrokerChild::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerParent*, void (mozilla::plugins::FunctionBrokerParent::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::FunctionBrokerParent*, void (mozilla::plugins::FunctionBrokerParent::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::plugins::PluginProcessParent*, void (mozilla::plugins::PluginProcessParent::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: ActorsParent.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::Database*, void (mozilla::dom::indexedDB::(anonymous namespace)::Database::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: ActorsParent.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp*, void (mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper*, void (mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::IDBDatabase*, void (mozilla::dom::IDBDatabase::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentChild*, void (mozilla::dom::ContentChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char> const&, nsTString<char16_t> const&), false, (mozilla::RunnableKind)0, mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char>, nsTString<char16_t> >::Revoke()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(unsigned int), false, (mozilla::RunnableKind)0, unsigned int>::Revoke()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(bool), false, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&>::Revoke()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch const&), false, (mozilla::RunnableKind)0, mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch>::Revoke()
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::detail::RunnableMethodImpl<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&), false, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentBridgeChild*, void (mozilla::dom::ContentBridgeChild::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentBridgeParent*, void (mozilla::dom::ContentBridgeParent::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ContentParent*, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), true, (mozilla::RunnableKind)0, mozilla::dom::ContentParent::ShutDownMethod>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::PreallocatedProcessManagerImpl*, void (mozilla::PreallocatedProcessManagerImpl::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ipc::WritableSharedMap*, void (mozilla::dom::ipc::WritableSharedMap::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable> const, void (mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FHIDTokenManager*, void (mozilla::dom::U2FHIDTokenManager::*)(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(nsTString<char16_t>), true, (mozilla::RunnableKind)0, nsTString<char16_t> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0, unsigned long, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(unsigned long), true, (mozilla::RunnableKind)0, unsigned long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsBindingManager*, void (nsBindingManager::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XMLStylesheetProcessingInstruction*, void (mozilla::dom::XMLStylesheetProcessingInstruction::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsXMLContentSink*, void (nsXMLContentSink::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsXMLPrettyPrinter*, void (nsXMLPrettyPrinter::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XULDocument*, void (mozilla::dom::XULDocument::*)(mozilla::dom::Element*, int, nsAtom*), true, (mozilla::RunnableKind)0, mozilla::dom::Element*, int, nsAtom*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XULDocument*, void (mozilla::dom::XULDocument::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistDocumentReceiver>, nsresult (nsIWebBrowserPersistDocumentReceiver::*)(nsresult), true, (mozilla::RunnableKind)0, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistResourceVisitor>, nsresult (nsIWebBrowserPersistResourceVisitor::*)(nsIWebBrowserPersistDocument*, nsresult), true, (mozilla::RunnableKind)0, nsCOMPtr<nsIWebBrowserPersistDocument>, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIWebBrowserPersistWriteCompletion>, nsresult (nsIWebBrowserPersistWriteCompletion::*)(nsIWebBrowserPersistDocument*, nsIOutputStream*, nsTSubstring<char> const&, nsresult), true, (mozilla::RunnableKind)0, nsCOMPtr<nsIWebBrowserPersistDocument>, nsCOMPtr<nsIOutputStream>, nsTString<char>, nsresult>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWebBrowserPersist*, void (nsWebBrowserPersist::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsWebBrowserPersist>, void (nsWebBrowserPersist::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWebBrowserPersist*, nsresult (nsWebBrowserPersist::*)(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::XMLHttpRequestMainThread*, void (mozilla::dom::XMLHttpRequestMainThread::*)(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType), true, (mozilla::RunnableKind)0, mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::WorkletThread*, nsresult (nsThread::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsIScriptElement*, nsresult (nsIScriptElement::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ScriptLoader*, void (mozilla::dom::ScriptLoader::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::WaitUntilHandler*, void (mozilla::dom::(anonymous namespace)::WaitUntilHandler::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback*, void (mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback::*)(bool), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::PushErrorReporter*, void (mozilla::dom::(anonymous namespace)::PushErrorReporter::*)(unsigned short), true, (mozilla::RunnableKind)0, unsigned short>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::ServiceWorkerRegistrar>, void (mozilla::dom::ServiceWorkerRegistrar::*)(unsigned int), true, (mozilla::RunnableKind)0, unsigned int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::WorkerListener*, void (mozilla::dom::WorkerListener::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), true, (mozilla::RunnableKind)1, mozilla::dom::ServiceWorkerRegistrationDescriptor>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerJob*, void (mozilla::dom::ServiceWorkerJob::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerProxy*, void (mozilla::dom::ServiceWorkerProxy::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrar*, void (mozilla::dom::ServiceWorkerRegistrar::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistration*, void (mozilla::dom::ServiceWorkerRegistration::*)(), true, (mozilla::RunnableKind)1>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationMainThread*, void (mozilla::dom::ServiceWorkerRegistrationMainThread::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::WorkerListener>, void (mozilla::dom::WorkerListener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::dom::WorkerListener>, void (mozilla::dom::WorkerListener::*)(), true, (mozilla::RunnableKind)1>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationInfo*, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationInfo*, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(bool), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationProxy*, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::ServiceWorkerRegistrationProxy*, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), true, (mozilla::RunnableKind)0, mozilla::dom::ServiceWorkerRegistrationDescriptor>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::Connection*, void (mozilla::dom::(anonymous namespace)::Connection::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:mozilla::detail::RunnableMethodImpl<mozilla::dom::(anonymous namespace)::OpenOp*, void (mozilla::dom::(anonymous namespace)::OpenOp::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsISDBCallback>, nsresult (nsISDBCallback::*)(nsISDBRequest*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::SDBRequest> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationAvailability*, void (mozilla::dom::PresentationAvailability::*)(bool), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationConnection*, nsresult (mozilla::dom::PresentationConnection::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationDeviceManager*, nsresult (mozilla::dom::PresentationDeviceManager::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationRequest*, void (mozilla::dom::PresentationRequest::*)(nsTSubstring<char16_t> const&, mozilla::dom::Promise*), true, (mozilla::RunnableKind)0, nsTString<char16_t>, RefPtr<mozilla::dom::Promise> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationControllingInfo*, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0, nsTString<char> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIPresentationSessionTransportBuilderListener>, nsresult (nsIPresentationSessionTransportBuilderListener::*)(nsIPresentationSessionTransport*), true, (mozilla::RunnableKind)0, nsIPresentationSessionTransport*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::PresentationTCPSessionTransport*, void (mozilla::dom::PresentationTCPSessionTransport::*)(mozilla::dom::PresentationTCPSessionTransport::ReadyState), true, (mozilla::RunnableKind)0, mozilla::dom::PresentationTCPSessionTransport::ReadyState>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::presentation::MulticastDNSDeviceProvider*, nsresult (mozilla::dom::presentation::MulticastDNSDeviceProvider::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(float), true, (mozilla::RunnableKind)0, float>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), true, (mozilla::RunnableKind)0, mozilla::layers::KeyboardMap>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0, unsigned long, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByLRef<nsTArray<unsigned int> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager> const, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0, unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::layers::IAPZCTreeManager>, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), true, (mozilla::RunnableKind)0, mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::CompositorVsyncDispatcher*, void (mozilla::CompositorVsyncDispatcher::*)(bool), true, (mozilla::RunnableKind)0, bool>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::RefreshTimerVsyncDispatcher*, void (mozilla::RefreshTimerVsyncDispatcher::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsWindow*, void (nsWindow::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDeviceContextSpecGTK*, void (nsDeviceContextSpecGTK::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::HTMLEditRules*, void (mozilla::HTMLEditRules::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::HTMLEditor*, void (mozilla::HTMLEditor::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::dom::FontFaceSet*, void (mozilla::dom::FontFaceSet::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver*, void (mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsRefreshDriver*, void (nsRefreshDriver::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::PresShell*, void (mozilla::PresShell::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<ZoomConstraintsClient*, void (ZoomConstraintsClient::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsPresContext*, void (nsPresContext::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsCOMPtr<nsIDateTimeInputArea>, nsresult (nsIDateTimeInputArea::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::layout::VsyncParent*, void (mozilla::layout::VsyncParent::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0, mozilla::TimeStamp>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsDocShell*, void (nsDocShell::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChildProfilerController*, void (mozilla::ChildProfilerController::*)(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::ChildProfilerController*, void (mozilla::ChildProfilerController::*)(nsTString<char>*), true, (mozilla::RunnableKind)0, nsTString<char>*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::DataStorage>, void (mozilla::DataStorage::*)(char const*), true, (mozilla::RunnableKind)0, char const*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::DataStorage*, void (mozilla::DataStorage::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::psm::PSMContentStreamListener*, void (mozilla::psm::PSMContentStreamListener::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::extensions::StreamFilter*, void (mozilla::extensions::StreamFilter::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::extensions::StreamFilterParent>, void (mozilla::extensions::StreamFilterParent::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&), true, (mozilla::RunnableKind)0, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::extensions::StreamFilterParent*, void (mozilla::ipc::IToplevelProtocol::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::extensions::StreamFilterParent*, void (mozilla::extensions::StreamFilterParent::*)(nsTArray<unsigned char>&&), true, (mozilla::RunnableKind)0, nsTArray<unsigned char>&&>::Revoke()
Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::detail::RunnableMethodImpl<RefPtr<mozilla::places::(anonymous namespace)::VisitedQuery>, nsresult (mozilla::places::(anonymous namespace)::VisitedQuery::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::places::Database*, nsresult (mozilla::places::Database::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::places::AsyncFetchAndSetIconForPage*, nsresult (mozilla::places::AsyncFetchAndSetIconForPage::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::places::AsyncReplaceFaviconData*, nsresult (mozilla::places::AsyncReplaceFaviconData::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsNavHistory*, void (nsNavHistory::*)(nsTSubstring<char> const&, int, nsTSubstring<char> const&, bool, long), true, (mozilla::RunnableKind)0, nsTString<char>, int, nsTString<char>, bool, long>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsUrlClassifierDBServiceWorker>, void (nsUrlClassifierDBServiceWorker::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsUrlClassifierDBServiceWorker> const, nsresult (nsUrlClassifierDBServiceWorker::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsFormFillController*, void (nsFormFillController::*)(mozilla::dom::HTMLInputElement*), true, (mozilla::RunnableKind)0, RefPtr<mozilla::dom::HTMLInputElement> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsNativeAppSupportUnix*, void (nsNativeAppSupportUnix::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsUpdateProcessor*, void (nsUpdateProcessor::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher*, void (mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, void (nsBar::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar const>, void (nsBar::*)() const, true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, nsresult (nsBar::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, void (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0, RefPtr<nsFoo> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, nsresult (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0, RefPtr<nsFoo> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, void (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0, nsFoo*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsBar>, nsresult (nsBar::*)(char*), true, (mozilla::RunnableKind)0, char*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IdleObject*, void (IdleObject::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IdleObject*, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<nsFoo>, nsresult (nsFoo::*)(bool*), true, (mozilla::RunnableKind)0, bool*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)2>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(char const*, unsigned int), true, (mozilla::RunnableKind)2, char const*, unsigned int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectWithoutSetDeadline>, void (IdleObjectWithoutSetDeadline::*)(), true, (mozilla::RunnableKind)2>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectInheritedSetDeadline>, void (IdleObjectInheritedSetDeadline::*)(), true, (mozilla::RunnableKind)2>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int), true, (mozilla::RunnableKind)0, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObjectNonRefCountedBase::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int, int), true, (mozilla::RunnableKind)0, int, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int), true, (mozilla::RunnableKind)0, int, int, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int, int), true, (mozilla::RunnableKind)0, int, int, int, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int*), true, (mozilla::RunnableKind)0, int*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), true, (mozilla::RunnableKind)0, int const*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int*), true, (mozilla::RunnableKind)0, StoreCopyPassByPtr<int> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), true, (mozilla::RunnableKind)0, StoreCopyPassByConstPtr<int> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int&), true, (mozilla::RunnableKind)0, int&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(int&&), true, (mozilla::RunnableKind)0, int&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), true, (mozilla::RunnableKind)0, StoreCopyPassByValue<TestThreadUtils::Spy> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), true, (mozilla::RunnableKind)0, StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), true, (mozilla::RunnableKind)0, StoreCopyPassByRRef<TestThreadUtils::Spy> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&), true, (mozilla::RunnableKind)0, TestThreadUtils::Spy&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), true, (mozilla::RunnableKind)0, StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), true, (mozilla::RunnableKind)0, TestThreadUtils::Spy*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<TestThreadUtils::ThreadUtilsObject>, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const*), true, (mozilla::RunnableKind)0, TestThreadUtils::Spy const*>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<CDMStorageTest*, void (CDMStorageTest::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<CDMStorageTest*, void (CDMStorageTest::*)(nsTString<char>), true, (mozilla::RunnableKind)0, nsTString<char> >::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<CDMStorageTest*, void (CDMStorageTest::*)(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPTestMonitor*, void (GMPTestMonitor::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPTestRunner*, void (GMPTestRunner::*)(GMPTestMonitor&), true, (mozilla::RunnableKind)0, GMPTestMonitor&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPRemoveTest*, void (GMPRemoveTest::*)(nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**), false, (mozilla::RunnableKind)0, nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPVideoDecoderProxy*, nsresult (GMPVideoDecoderProxy::*)(GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int), false, (mozilla::RunnableKind)0, GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPVideoDecoderProxy*, void (GMPVideoDecoderProxy::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<GMPRemoveTest*, void (GMPRemoveTest::*)(), false, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<int>*, void (mozilla::detail::Listener<int>::*)(int&&), true, (mozilla::RunnableKind)0, int&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<int>*, void (mozilla::detail::Listener<int>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<SomeEvent>*, void (mozilla::detail::Listener<SomeEvent>::*)(SomeEvent&&), true, (mozilla::RunnableKind)0, SomeEvent&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<SomeEvent>*, void (mozilla::detail::Listener<SomeEvent>::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&), true, (mozilla::RunnableKind)0, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(), true, (mozilla::RunnableKind)0>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<RefCounter> >*, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(RefPtr<RefCounter>&&), true, (mozilla::RunnableKind)0, RefPtr<RefCounter>&&>::Revoke()
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<mozilla::detail::Listener<RefPtr<RefCounter> >*, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(), true, (mozilla::RunnableKind)0>::Revoke()
1247
1248
  void SetDeadline(TimeStamp aDeadline)
1249
0
  {
1250
0
    if (MOZ_LIKELY(mReceiver.Get())) {
1251
0
      ::detail::SetDeadlineImpl(mReceiver.Get(), aDeadline);
1252
0
    }
1253
0
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsStringBundleBase*, nsresult (nsStringBundleBase::*)(), true, (mozilla::RunnableKind)2>::SetDeadline(mozilla::TimeStamp)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IdleObject*, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::SetDeadline(mozilla::TimeStamp)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)2>::SetDeadline(mozilla::TimeStamp)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::SetDeadline(mozilla::TimeStamp)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(char const*, unsigned int), true, (mozilla::RunnableKind)2, char const*, unsigned int>::SetDeadline(mozilla::TimeStamp)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectWithoutSetDeadline>, void (IdleObjectWithoutSetDeadline::*)(), true, (mozilla::RunnableKind)2>::SetDeadline(mozilla::TimeStamp)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectInheritedSetDeadline>, void (IdleObjectInheritedSetDeadline::*)(), true, (mozilla::RunnableKind)2>::SetDeadline(mozilla::TimeStamp)
1254
1255
  void SetTimer(uint32_t aDelay, nsIEventTarget* aTarget)
1256
0
  {
1257
0
    MOZ_ASSERT(aTarget);
1258
0
1259
0
    if (nsCOMPtr<nsITimer> timer = GetTimer()) {
1260
0
      timer->Cancel();
1261
0
      timer->SetTarget(aTarget);
1262
0
      timer->InitWithNamedFuncCallback(TimedOut,
1263
0
                                       this,
1264
0
                                       aDelay,
1265
0
                                       nsITimer::TYPE_ONE_SHOT,
1266
0
                                       "detail::RunnableMethodImpl::SetTimer");
1267
0
    }
1268
0
  }
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<nsStringBundleBase*, nsresult (nsStringBundleBase::*)(), true, (mozilla::RunnableKind)2>::SetTimer(unsigned int, nsIEventTarget*)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<IdleObject*, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::SetTimer(unsigned int, nsIEventTarget*)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)2>::SetTimer(unsigned int, nsIEventTarget*)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::SetTimer(unsigned int, nsIEventTarget*)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObject>, void (IdleObject::*)(char const*, unsigned int), true, (mozilla::RunnableKind)2, char const*, unsigned int>::SetTimer(unsigned int, nsIEventTarget*)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectWithoutSetDeadline>, void (IdleObjectWithoutSetDeadline::*)(), true, (mozilla::RunnableKind)2>::SetTimer(unsigned int, nsIEventTarget*)
Unexecuted instantiation: mozilla::detail::RunnableMethodImpl<RefPtr<IdleObjectInheritedSetDeadline>, void (IdleObjectInheritedSetDeadline::*)(), true, (mozilla::RunnableKind)2>::SetTimer(unsigned int, nsIEventTarget*)
1269
};
1270
1271
// Type aliases for NewRunnableMethod.
1272
template<typename PtrType, typename Method>
1273
using OwningRunnableMethod = typename ::nsRunnableMethodTraits<
1274
  typename RemoveReference<PtrType>::Type, Method, true, RunnableKind::Standard>::base_type;
1275
template<typename PtrType, typename Method, typename... Storages>
1276
using OwningRunnableMethodImpl = RunnableMethodImpl<
1277
  typename RemoveReference<PtrType>::Type, Method, true, RunnableKind::Standard, Storages...>;
1278
1279
// Type aliases for NewCancelableRunnableMethod.
1280
template<typename PtrType, typename Method>
1281
using CancelableRunnableMethod = typename ::nsRunnableMethodTraits<
1282
  typename RemoveReference<PtrType>::Type, Method, true, RunnableKind::Cancelable>::base_type;
1283
template<typename PtrType, typename Method, typename... Storages>
1284
using CancelableRunnableMethodImpl = RunnableMethodImpl<
1285
  typename RemoveReference<PtrType>::Type, Method, true, RunnableKind::Cancelable, Storages...>;
1286
1287
// Type aliases for NewIdleRunnableMethod.
1288
template<typename PtrType, typename Method>
1289
using IdleRunnableMethod = typename ::nsRunnableMethodTraits<
1290
  typename RemoveReference<PtrType>::Type, Method, true, RunnableKind::Idle>::base_type;
1291
template<typename PtrType, typename Method, typename... Storages>
1292
using IdleRunnableMethodImpl = RunnableMethodImpl<
1293
  typename RemoveReference<PtrType>::Type, Method, true, RunnableKind::Idle, Storages...>;
1294
1295
// Type aliases for NewIdleRunnableMethodWithTimer.
1296
template<typename PtrType, typename Method>
1297
using IdleRunnableMethodWithTimer = typename ::nsRunnableMethodTraits<
1298
  typename RemoveReference<PtrType>::Type, Method, true, RunnableKind::IdleWithTimer>::base_type;
1299
template<typename PtrType, typename Method, typename... Storages>
1300
using IdleRunnableMethodWithTimerImpl = RunnableMethodImpl<
1301
  typename RemoveReference<PtrType>::Type, Method, true, RunnableKind::IdleWithTimer, Storages...>;
1302
1303
// Type aliases for NewNonOwningRunnableMethod.
1304
template<typename PtrType, typename Method>
1305
using NonOwningRunnableMethod = typename ::nsRunnableMethodTraits<
1306
  typename RemoveReference<PtrType>::Type, Method, false, RunnableKind::Standard>::base_type;
1307
template<typename PtrType, typename Method, typename... Storages>
1308
using NonOwningRunnableMethodImpl = RunnableMethodImpl<
1309
  typename RemoveReference<PtrType>::Type, Method, false, RunnableKind::Standard, Storages...>;
1310
1311
// Type aliases for NonOwningCancelableRunnableMethod
1312
template<typename PtrType, typename Method>
1313
using NonOwningCancelableRunnableMethod = typename ::nsRunnableMethodTraits<
1314
  typename RemoveReference<PtrType>::Type, Method, false, RunnableKind::Cancelable>::base_type;
1315
template<typename PtrType, typename Method, typename... Storages>
1316
using NonOwningCancelableRunnableMethodImpl = RunnableMethodImpl<
1317
  typename RemoveReference<PtrType>::Type, Method, false, RunnableKind::Cancelable, Storages...>;
1318
1319
// Type aliases for NonOwningIdleRunnableMethod
1320
template<typename PtrType, typename Method>
1321
using NonOwningIdleRunnableMethod = typename ::nsRunnableMethodTraits<
1322
  typename RemoveReference<PtrType>::Type, Method, false, RunnableKind::Idle>::base_type;
1323
template<typename PtrType, typename Method, typename... Storages>
1324
using NonOwningIdleRunnableMethodImpl = RunnableMethodImpl<
1325
  typename RemoveReference<PtrType>::Type, Method, false, RunnableKind::Idle, Storages...>;
1326
1327
// Type aliases for NewIdleRunnableMethodWithTimer.
1328
template<typename PtrType, typename Method>
1329
using NonOwningIdleRunnableMethodWithTimer = typename ::nsRunnableMethodTraits<
1330
  typename RemoveReference<PtrType>::Type, Method, false, RunnableKind::IdleWithTimer>::base_type;
1331
template<typename PtrType, typename Method, typename... Storages>
1332
using NonOwningIdleRunnableMethodWithTimerImpl = RunnableMethodImpl<
1333
  typename RemoveReference<PtrType>::Type, Method, false, RunnableKind::IdleWithTimer, Storages...>;
1334
1335
} // namespace detail
1336
1337
// NewRunnableMethod and friends
1338
//
1339
// Very often in Gecko, you'll find yourself in a situation where you want
1340
// to invoke a method (with or without arguments) asynchronously.  You
1341
// could write a small helper class inheriting from nsRunnable to handle
1342
// all these details, or you could let NewRunnableMethod take care of all
1343
// those details for you.
1344
//
1345
// The simplest use of NewRunnableMethod looks like:
1346
//
1347
//   nsCOMPtr<nsIRunnable> event =
1348
//     mozilla::NewRunnableMethod("description", myObject, &MyClass::HandleEvent);
1349
//   NS_DispatchToCurrentThread(event);
1350
//
1351
// Statically enforced constraints:
1352
//  - myObject must be of (or implicitly convertible to) type MyClass
1353
//  - MyClass must define AddRef and Release methods
1354
//
1355
// The "description" string should specify a human-readable name for the
1356
// runnable; the provided string is used by various introspection tools
1357
// in the browser.
1358
//
1359
// The created runnable will take a strong reference to `myObject`.  For
1360
// non-refcounted objects, or refcounted objects with unusual refcounting
1361
// requirements, and if and only if you are 110% certain that `myObject`
1362
// will live long enough, you can use NewNonOwningRunnableMethod instead,
1363
// which will, as its name implies, take a non-owning reference.  If you
1364
// find yourself having to use this function, you should accompany your use
1365
// with a proof comment describing why the runnable will not lead to
1366
// use-after-frees.
1367
//
1368
// (If you find yourself writing contorted code to Release() an object
1369
// asynchronously on a different thread, you should use the
1370
// NS_ProxyRelease function.)
1371
//
1372
// Invoking a method with arguments takes a little more care.  The
1373
// natural extension of the above:
1374
//
1375
//   nsCOMPtr<nsIRunnable> event =
1376
//     mozilla::NewRunnableMethod("description", myObject, &MyClass::HandleEvent,
1377
//                                arg1, arg2, ...);
1378
//
1379
// can lead to security hazards (e.g. passing in raw pointers to refcounted
1380
// objects and storing those raw pointers in the runnable).  We therefore
1381
// require you to specify the storage types used by the runnable, just as
1382
// you would if you were writing out the class by hand:
1383
//
1384
//   nsCOMPtr<nsIRunnable> event =
1385
//     mozilla::NewRunnableMethod<RefPtr<T>, nsTArray<U>>
1386
//         ("description", myObject, &MyClass::HandleEvent, arg1, arg2);
1387
//
1388
// Please note that you do not have to pass the same argument type as you
1389
// specify in the template arguments.  For example, if you want to transfer
1390
// ownership to a runnable, you can write:
1391
//
1392
//   RefPtr<T> ptr = ...;
1393
//   nsTArray<U> array = ...;
1394
//   nsCOMPtr<nsIRunnable> event =
1395
//     mozilla::NewRunnableMethod<RefPtr<T>, nsTArray<U>>
1396
//         ("description", myObject, &MyClass::DoSomething,
1397
//          std::move(ptr), std::move(array));
1398
//
1399
// and there will be no extra AddRef/Release traffic, or copying of the array.
1400
//
1401
// Each type that you specify as a template argument to NewRunnableMethod
1402
// comes with its own style of storage in the runnable and its own style
1403
// of argument passing to the invoked method.  See the comment for
1404
// ParameterStorage above for more details.
1405
//
1406
// If you need to customize the storage type and/or argument passing type,
1407
// you can write your own class to use as a template argument to
1408
// NewRunnableMethod.  If you find yourself having to do that frequently,
1409
// please file a bug in Core::XPCOM about adding the custom type to the
1410
// core code in this file, and/or for custom rules for ParameterStorage
1411
// to select that strategy.
1412
//
1413
// For places that require you to use cancelable runnables, such as
1414
// workers, there's also NewCancelableRunnableMethod and its non-owning
1415
// counterpart.  The runnables returned by these methods additionally
1416
// implement nsICancelableRunnable.
1417
//
1418
// Finally, all of the functions discussed above have additional overloads
1419
// that do not take a `const char*` as their first parameter; you may see
1420
// these in older code.  The `const char*` overload is preferred and
1421
// should be used in new code exclusively.
1422
1423
template<typename PtrType, typename Method>
1424
already_AddRefed<detail::OwningRunnableMethod<PtrType, Method>>
1425
NewRunnableMethod(const char* aName, PtrType&& aPtr, Method aMethod)
1426
19
{
1427
19
  return do_AddRef(
1428
19
    new detail::OwningRunnableMethodImpl<PtrType, Method>(
1429
19
      aName, std::forward<PtrType>(aPtr), aMethod));
1430
19
}
already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<FdWatcher*>::Type, void (FdWatcher::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<FdWatcher*, void (FdWatcher::*)()>(char const*, FdWatcher*&&, void (FdWatcher::*)())
Line
Count
Source
1426
3
{
1427
3
  return do_AddRef(
1428
3
    new detail::OwningRunnableMethodImpl<PtrType, Method>(
1429
3
      aName, std::forward<PtrType>(aPtr), aMethod));
1430
3
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsMemoryReporterManager*>::Type, nsresult (nsMemoryReporterManager::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsMemoryReporterManager*, nsresult (nsMemoryReporterManager::*)()>(char const*, nsMemoryReporterManager*&&, nsresult (nsMemoryReporterManager::*)())
already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsObserverService>&>::Type, void (nsObserverService::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsObserverService>&, void (nsObserverService::*)()>(char const*, RefPtr<nsObserverService>&, void (nsObserverService::*)())
Line
Count
Source
1426
3
{
1427
3
  return do_AddRef(
1428
3
    new detail::OwningRunnableMethodImpl<PtrType, Method>(
1429
3
      aName, std::forward<PtrType>(aPtr), aMethod));
1430
3
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::EventTargetWrapper*>::Type, void (mozilla::EventTargetWrapper::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::EventTargetWrapper*, void (mozilla::EventTargetWrapper::*)()>(char const*, mozilla::EventTargetWrapper*&&, void (mozilla::EventTargetWrapper::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::LazyIdleThread*>::Type, void (mozilla::LazyIdleThread::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::LazyIdleThread*, void (mozilla::LazyIdleThread::*)()>(char const*, mozilla::LazyIdleThread*&&, void (mozilla::LazyIdleThread::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsIBlockThreadedExecutionCallback*&>::Type, nsresult (nsIBlockThreadedExecutionCallback::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsIBlockThreadedExecutionCallback*&, nsresult (nsIBlockThreadedExecutionCallback::*)()>(char const*, nsIBlockThreadedExecutionCallback*&, nsresult (nsIBlockThreadedExecutionCallback::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIThreadPool>&>::Type, nsresult (nsIThreadPool::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsCOMPtr<nsIThreadPool>&, nsresult (nsIThreadPool::*)()>(char const*, nsCOMPtr<nsIThreadPool>&, nsresult (nsIThreadPool::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsProcess>&>::Type, void (nsProcess::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsProcess>&, void (nsProcess::*)()>(char const*, RefPtr<nsProcess>&, void (nsProcess::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsIThread*&>::Type, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsIThread*&, nsresult (nsIThread::*)()>(char const*, nsIThread*&, nsresult (nsIThread::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<bool>*>::Type, void (mozilla::detail::Listener<bool>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)()>(char const*, mozilla::detail::Listener<bool>*&&, void (mozilla::detail::Listener<bool>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::Preferences*>::Type, nsresult (mozilla::Preferences::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::Preferences*, nsresult (mozilla::Preferences::*)()>(char const*, mozilla::Preferences*&&, nsresult (mozilla::Preferences::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::BackgroundFileSaver*>::Type, nsresult (mozilla::net::BackgroundFileSaver::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::BackgroundFileSaver*, nsresult (mozilla::net::BackgroundFileSaver::*)()>(char const*, mozilla::net::BackgroundFileSaver*&&, nsresult (mozilla::net::BackgroundFileSaver::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::BackgroundFileSaverStreamListener*&>::Type, nsresult (mozilla::net::BackgroundFileSaverStreamListener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::BackgroundFileSaverStreamListener*&, nsresult (mozilla::net::BackgroundFileSaverStreamListener::*)()>(char const*, mozilla::net::BackgroundFileSaverStreamListener*&, nsresult (mozilla::net::BackgroundFileSaverStreamListener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsAsyncStreamCopier>&>::Type, void (nsAsyncStreamCopier::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsAsyncStreamCopier>&, void (nsAsyncStreamCopier::*)()>(char const*, RefPtr<nsAsyncStreamCopier>&, void (nsAsyncStreamCopier::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsICaptivePortalService>&>::Type, nsresult (nsICaptivePortalService::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsCOMPtr<nsICaptivePortalService>&, nsresult (nsICaptivePortalService::*)()>(char const*, nsCOMPtr<nsICaptivePortalService>&, nsresult (nsICaptivePortalService::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsInputStreamPump*>::Type, nsresult (nsInputStreamPump::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsInputStreamPump*, nsresult (nsInputStreamPump::*)()>(char const*, nsInputStreamPump*&&, nsresult (nsInputStreamPump::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::nsPACMan*>::Type, void (mozilla::net::nsPACMan::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::nsPACMan*, void (mozilla::net::nsPACMan::*)()>(char const*, mozilla::net::nsPACMan*&&, void (mozilla::net::nsPACMan::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::nsServerSocket*&>::Type, void (mozilla::net::nsServerSocket::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::nsServerSocket*&, void (mozilla::net::nsServerSocket::*)()>(char const*, mozilla::net::nsServerSocket*&, void (mozilla::net::nsServerSocket::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::nsServerSocket*>::Type, void (mozilla::net::nsServerSocket::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::nsServerSocket*, void (mozilla::net::nsServerSocket::*)()>(char const*, mozilla::net::nsServerSocket*&&, void (mozilla::net::nsServerSocket::*)())
already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::nsSocketTransportService*>::Type, void (mozilla::net::nsSocketTransportService::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::nsSocketTransportService*, void (mozilla::net::nsSocketTransportService::*)()>(char const*, mozilla::net::nsSocketTransportService*&&, void (mozilla::net::nsSocketTransportService::*)())
Line
Count
Source
1426
7
{
1427
7
  return do_AddRef(
1428
7
    new detail::OwningRunnableMethodImpl<PtrType, Method>(
1429
7
      aName, std::forward<PtrType>(aPtr), aMethod));
1430
7
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::nsUDPSocket*&>::Type, void (mozilla::net::nsUDPSocket::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::nsUDPSocket*&, void (mozilla::net::nsUDPSocket::*)()>(char const*, mozilla::net::nsUDPSocket*&, void (mozilla::net::nsUDPSocket::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::nsUDPSocket*>::Type, void (mozilla::net::nsUDPSocket::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::nsUDPSocket*, void (mozilla::net::nsUDPSocket::*)()>(char const*, mozilla::net::nsUDPSocket*&&, void (mozilla::net::nsUDPSocket::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsHostResolver*>::Type, void (nsHostResolver::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsHostResolver*, void (nsHostResolver::*)()>(char const*, nsHostResolver*&&, void (nsHostResolver::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::DNSRequestChild*>::Type, void (mozilla::net::DNSRequestChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::DNSRequestChild*, void (mozilla::net::DNSRequestChild::*)()>(char const*, mozilla::net::DNSRequestChild*&&, void (mozilla::net::DNSRequestChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCacheService*>::Type, void (nsCacheService::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsCacheService*, void (nsCacheService::*)()>(char const*, nsCacheService*&&, void (nsCacheService::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::CacheEntry*>::Type, void (mozilla::net::CacheEntry::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::CacheEntry*, void (mozilla::net::CacheEntry::*)()>(char const*, mozilla::net::CacheEntry*&&, void (mozilla::net::CacheEntry::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::CacheFileContextEvictor*>::Type, nsresult (mozilla::net::CacheFileContextEvictor::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::CacheFileContextEvictor*, nsresult (mozilla::net::CacheFileContextEvictor::*)()>(char const*, mozilla::net::CacheFileContextEvictor*&&, nsresult (mozilla::net::CacheFileContextEvictor::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::net::CacheFileIOManager>&>::Type, nsresult (mozilla::net::CacheFileIOManager::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::CacheFileIOManager>&, nsresult (mozilla::net::CacheFileIOManager::*)()>(char const*, RefPtr<mozilla::net::CacheFileIOManager>&, nsresult (mozilla::net::CacheFileIOManager::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::CacheFileIOManager*>::Type, nsresult (mozilla::net::CacheFileIOManager::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::CacheFileIOManager*, nsresult (mozilla::net::CacheFileIOManager::*)()>(char const*, mozilla::net::CacheFileIOManager*&&, nsresult (mozilla::net::CacheFileIOManager::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::net::CacheIndex>&>::Type, void (mozilla::net::CacheIndex::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::CacheIndex>&, void (mozilla::net::CacheIndex::*)()>(char const*, RefPtr<mozilla::net::CacheIndex>&, void (mozilla::net::CacheIndex::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::CacheObserver*&>::Type, void (mozilla::net::CacheObserver::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::CacheObserver*&, void (mozilla::net::CacheObserver::*)()>(char const*, mozilla::net::CacheObserver*&, void (mozilla::net::CacheObserver::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::CacheStorageService*>::Type, void (mozilla::net::CacheStorageService::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::CacheStorageService*, void (mozilla::net::CacheStorageService::*)()>(char const*, mozilla::net::CacheStorageService*&&, void (mozilla::net::CacheStorageService::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsAboutCache::Channel*>::Type, void (nsAboutCache::Channel::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsAboutCache::Channel*, void (nsAboutCache::Channel::*)()>(char const*, nsAboutCache::Channel*&&, void (nsAboutCache::Channel::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsFileUploadContentStream*>::Type, void (nsFileUploadContentStream::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsFileUploadContentStream*, void (nsFileUploadContentStream::*)()>(char const*, nsFileUploadContentStream*&&, void (nsFileUploadContentStream::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::FTPChannelParent*>::Type, void (mozilla::net::FTPChannelParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::FTPChannelParent*, void (mozilla::net::FTPChannelParent::*)()>(char const*, mozilla::net::FTPChannelParent*&&, void (mozilla::net::FTPChannelParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::net::nsHttpConnectionMgr>&>::Type, nsresult (mozilla::net::nsHttpConnectionMgr::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::nsHttpConnectionMgr>&, nsresult (mozilla::net::nsHttpConnectionMgr::*)()>(char const*, RefPtr<mozilla::net::nsHttpConnectionMgr>&, nsresult (mozilla::net::nsHttpConnectionMgr::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::Http2Session*>::Type, void (mozilla::net::Http2Session::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::Http2Session*, void (mozilla::net::Http2Session::*)()>(char const*, mozilla::net::Http2Session*&&, void (mozilla::net::Http2Session::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBackgroundChannelChild*>::Type, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)()>(char const*, mozilla::net::HttpBackgroundChannelChild*&&, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBackgroundChannelParent*>::Type, bool (mozilla::net::HttpBackgroundChannelParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)()>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpChannelChild*&>::Type, void (mozilla::net::HttpChannelChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::HttpChannelChild*&, void (mozilla::net::HttpChannelChild::*)()>(char const*, mozilla::net::HttpChannelChild*&, void (mozilla::net::HttpChannelChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::net::HttpBackgroundChannelChild>&>::Type, void (mozilla::net::HttpBackgroundChannelChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::HttpBackgroundChannelChild>&, void (mozilla::net::HttpBackgroundChannelChild::*)()>(char const*, RefPtr<mozilla::net::HttpBackgroundChannelChild>&, void (mozilla::net::HttpBackgroundChannelChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpChannelChild*>::Type, void (mozilla::net::HttpChannelChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)()>(char const*, mozilla::net::HttpChannelChild*&&, void (mozilla::net::HttpChannelChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpChannelChild*>::Type, nsresult (mozilla::net::HttpChannelChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpChannelChild::*)()>(char const*, mozilla::net::HttpChannelChild*&&, nsresult (mozilla::net::HttpChannelChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpChannelParent*>::Type, void (mozilla::net::HttpChannelParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::HttpChannelParent*, void (mozilla::net::HttpChannelParent::*)()>(char const*, mozilla::net::HttpChannelParent*&&, void (mozilla::net::HttpChannelParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::InterceptedHttpChannel*>::Type, void (mozilla::net::InterceptedHttpChannel::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::InterceptedHttpChannel*, void (mozilla::net::InterceptedHttpChannel::*)()>(char const*, mozilla::net::InterceptedHttpChannel*&&, void (mozilla::net::InterceptedHttpChannel::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::nsHttpChannel*&>::Type, void (mozilla::net::nsHttpChannel::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::nsHttpChannel*&, void (mozilla::net::nsHttpChannel::*)()>(char const*, mozilla::net::nsHttpChannel*&, void (mozilla::net::nsHttpChannel::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::nsHttpChannel*>::Type, void (mozilla::net::nsHttpChannel::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::nsHttpChannel*, void (mozilla::net::nsHttpChannel::*)()>(char const*, mozilla::net::nsHttpChannel*&&, void (mozilla::net::nsHttpChannel::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::nsHttpChannel*>::Type, nsresult (mozilla::net::nsHttpChannel::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::nsHttpChannel*, nsresult (mozilla::net::nsHttpChannel::*)()>(char const*, mozilla::net::nsHttpChannel*&&, nsresult (mozilla::net::nsHttpChannel::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::InterceptedHttpChannel*&>::Type, void (mozilla::net::InterceptedHttpChannel::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::InterceptedHttpChannel*&, void (mozilla::net::InterceptedHttpChannel::*)()>(char const*, mozilla::net::InterceptedHttpChannel*&, void (mozilla::net::InterceptedHttpChannel::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::ExtensionJARFileOpener*>::Type, nsresult (mozilla::net::ExtensionJARFileOpener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::ExtensionJARFileOpener*, nsresult (mozilla::net::ExtensionJARFileOpener::*)()>(char const*, mozilla::net::ExtensionJARFileOpener*&&, nsresult (mozilla::net::ExtensionJARFileOpener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::net::ExtensionJARFileOpener>&>::Type, nsresult (mozilla::net::ExtensionJARFileOpener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::ExtensionJARFileOpener>&, nsresult (mozilla::net::ExtensionJARFileOpener::*)()>(char const*, RefPtr<mozilla::net::ExtensionJARFileOpener>&, nsresult (mozilla::net::ExtensionJARFileOpener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::WebSocketChannel*>::Type, nsresult (mozilla::net::WebSocketChannel::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::WebSocketChannel*, nsresult (mozilla::net::WebSocketChannel::*)()>(char const*, mozilla::net::WebSocketChannel*&&, nsresult (mozilla::net::WebSocketChannel::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::WebSocketChannel*>::Type, void (mozilla::net::WebSocketChannel::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::WebSocketChannel*, void (mozilla::net::WebSocketChannel::*)()>(char const*, mozilla::net::WebSocketChannel*&&, void (mozilla::net::WebSocketChannel::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::WebSocketChannelChild*>::Type, void (mozilla::net::WebSocketChannelChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::net::WebSocketChannelChild*, void (mozilla::net::WebSocketChannelChild::*)()>(char const*, mozilla::net::WebSocketChannelChild*&&, void (mozilla::net::WebSocketChannelChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsWyciwygChannel*>::Type, void (nsWyciwygChannel::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsWyciwygChannel*, void (nsWyciwygChannel::*)()>(char const*, nsWyciwygChannel*&&, void (nsWyciwygChannel::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ScriptPreloader*>::Type, void (mozilla::ScriptPreloader::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ScriptPreloader*, void (mozilla::ScriptPreloader::*)()>(char const*, mozilla::ScriptPreloader*&&, void (mozilla::ScriptPreloader::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ScriptPreloader*&>::Type, void (mozilla::ScriptPreloader::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ScriptPreloader*&, void (mozilla::ScriptPreloader::*)()>(char const*, mozilla::ScriptPreloader*&, void (mozilla::ScriptPreloader::*)())
already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::URLPreloader*>::Type, void (mozilla::URLPreloader::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::URLPreloader*, void (mozilla::URLPreloader::*)()>(char const*, mozilla::URLPreloader*&&, void (mozilla::URLPreloader::*)())
Line
Count
Source
1426
3
{
1427
3
  return do_AddRef(
1428
3
    new detail::OwningRunnableMethodImpl<PtrType, Method>(
1429
3
      aName, std::forward<PtrType>(aPtr), aMethod));
1430
3
}
already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIThread>&>::Type, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsCOMPtr<nsIThread>&, nsresult (nsIThread::*)()>(char const*, nsCOMPtr<nsIThread>&, nsresult (nsIThread::*)())
Line
Count
Source
1426
3
{
1427
3
  return do_AddRef(
1428
3
    new detail::OwningRunnableMethodImpl<PtrType, Method>(
1429
3
      aName, std::forward<PtrType>(aPtr), aMethod));
1430
3
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::storage::Connection>&>::Type, void (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::storage::Connection>&, void (mozilla::storage::Connection::*)()>(char const*, RefPtr<mozilla::storage::Connection>&, void (mozilla::storage::Connection::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::storage::Connection*>::Type, nsresult (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::storage::Connection*, nsresult (mozilla::storage::Connection::*)()>(char const*, mozilla::storage::Connection*&&, nsresult (mozilla::storage::Connection::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::storage::Connection*>::Type, void (mozilla::storage::Connection::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::storage::Connection*, void (mozilla::storage::Connection::*)()>(char const*, mozilla::storage::Connection*&&, void (mozilla::storage::Connection::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::storage::AsyncExecuteStatements*>::Type, nsresult (mozilla::storage::AsyncExecuteStatements::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)()>(char const*, mozilla::storage::AsyncExecuteStatements*&&, nsresult (mozilla::storage::AsyncExecuteStatements::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::GenericReceiveListener*>::Type, void (mozilla::GenericReceiveListener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::GenericReceiveListener*, void (mozilla::GenericReceiveListener::*)()>(char const*, mozilla::GenericReceiveListener*&&, void (mozilla::GenericReceiveListener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::VideoSessionConduit>&>::Type, void (mozilla::VideoSessionConduit::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::VideoSessionConduit>&, void (mozilla::VideoSessionConduit::*)()>(char const*, RefPtr<mozilla::VideoSessionConduit>&, void (mozilla::VideoSessionConduit::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsOfflineCacheUpdate*>::Type, void (nsOfflineCacheUpdate::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsOfflineCacheUpdate*, void (nsOfflineCacheUpdate::*)()>(char const*, nsOfflineCacheUpdate*&&, void (nsOfflineCacheUpdate::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsHtml5Parser*>::Type, nsresult (nsHtml5Parser::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsHtml5Parser*, nsresult (nsHtml5Parser::*)()>(char const*, nsHtml5Parser*&&, nsresult (nsHtml5Parser::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::PaintThread*>::Type, void (mozilla::layers::PaintThread::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::PaintThread*, void (mozilla::layers::PaintThread::*)()>(char const*, mozilla::layers::PaintThread*&&, void (mozilla::layers::PaintThread::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::AsyncImagePipelineManager*>::Type, void (mozilla::layers::AsyncImagePipelineManager::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::AsyncImagePipelineManager*, void (mozilla::layers::AsyncImagePipelineManager::*)()>(char const*, mozilla::layers::AsyncImagePipelineManager*&&, void (mozilla::layers::AsyncImagePipelineManager::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::GeckoContentController>&>::Type, void (mozilla::layers::GeckoContentController::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::layers::GeckoContentController>&, void (mozilla::layers::GeckoContentController::*)()>(char const*, RefPtr<mozilla::layers::GeckoContentController>&, void (mozilla::layers::GeckoContentController::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::InputQueue>&>::Type, void (mozilla::layers::InputQueue::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::layers::InputQueue>&, void (mozilla::layers::InputQueue::*)()>(char const*, RefPtr<mozilla::layers::InputQueue>&, void (mozilla::layers::InputQueue::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::AsyncPanZoomController*>::Type, void (mozilla::layers::AsyncPanZoomController::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)()>(char const*, mozilla::layers::AsyncPanZoomController*&&, void (mozilla::layers::AsyncPanZoomController::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::ChromeProcessController*>::Type, void (mozilla::layers::ChromeProcessController::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)()>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::CompositorBridgeChild>&>::Type, void (mozilla::layers::CompositorBridgeChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::layers::CompositorBridgeChild>&, void (mozilla::layers::CompositorBridgeChild::*)()>(char const*, RefPtr<mozilla::layers::CompositorBridgeChild>&, void (mozilla::layers::CompositorBridgeChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::CompositorBridgeParent*>::Type, void (mozilla::layers::CompositorBridgeParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)()>(char const*, mozilla::layers::CompositorBridgeParent*&&, void (mozilla::layers::CompositorBridgeParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::CompositorManagerParent*>::Type, void (mozilla::layers::CompositorManagerParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::CompositorManagerParent*, void (mozilla::layers::CompositorManagerParent::*)()>(char const*, mozilla::layers::CompositorManagerParent*&&, void (mozilla::layers::CompositorManagerParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::CrossProcessCompositorBridgeParent*>::Type, void (mozilla::layers::CrossProcessCompositorBridgeParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::CrossProcessCompositorBridgeParent*, void (mozilla::layers::CrossProcessCompositorBridgeParent::*)()>(char const*, mozilla::layers::CrossProcessCompositorBridgeParent*&&, void (mozilla::layers::CrossProcessCompositorBridgeParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::ImageBridgeParent*>::Type, void (mozilla::layers::ImageBridgeParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ImageBridgeParent*, void (mozilla::layers::ImageBridgeParent::*)()>(char const*, mozilla::layers::ImageBridgeParent*&&, void (mozilla::layers::ImageBridgeParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::LayerTransactionChild>&>::Type, void (mozilla::layers::LayerTransactionChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::layers::LayerTransactionChild>&, void (mozilla::layers::LayerTransactionChild::*)()>(char const*, RefPtr<mozilla::layers::LayerTransactionChild>&, void (mozilla::layers::LayerTransactionChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::UiCompositorControllerChild>&>::Type, void (mozilla::layers::UiCompositorControllerChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::layers::UiCompositorControllerChild>&, void (mozilla::layers::UiCompositorControllerChild::*)()>(char const*, RefPtr<mozilla::layers::UiCompositorControllerChild>&, void (mozilla::layers::UiCompositorControllerChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::UiCompositorControllerChild*>::Type, void (mozilla::layers::UiCompositorControllerChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::UiCompositorControllerChild*, void (mozilla::layers::UiCompositorControllerChild::*)()>(char const*, mozilla::layers::UiCompositorControllerChild*&&, void (mozilla::layers::UiCompositorControllerChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::UiCompositorControllerParent*>::Type, void (mozilla::layers::UiCompositorControllerParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)()>(char const*, mozilla::layers::UiCompositorControllerParent*&&, void (mozilla::layers::UiCompositorControllerParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<GtkVsyncSource::GLXDisplay*>::Type, void (GtkVsyncSource::GLXDisplay::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<GtkVsyncSource::GLXDisplay*, void (GtkVsyncSource::GLXDisplay::*)()>(char const*, GtkVsyncSource::GLXDisplay*&&, void (GtkVsyncSource::GLXDisplay::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<SoftwareDisplay*>::Type, void (SoftwareDisplay::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<SoftwareDisplay*, void (SoftwareDisplay::*)()>(char const*, SoftwareDisplay*&&, void (SoftwareDisplay::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gfx::VsyncBridgeChild*>::Type, void (mozilla::gfx::VsyncBridgeChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gfx::VsyncBridgeChild*, void (mozilla::gfx::VsyncBridgeChild::*)()>(char const*, mozilla::gfx::VsyncBridgeChild*&&, void (mozilla::gfx::VsyncBridgeChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gfx::VsyncBridgeParent*>::Type, void (mozilla::gfx::VsyncBridgeParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gfx::VsyncBridgeParent*, void (mozilla::gfx::VsyncBridgeParent::*)()>(char const*, mozilla::gfx::VsyncBridgeParent*&&, void (mozilla::gfx::VsyncBridgeParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsIThread>&>::Type, nsresult (nsIThread::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsIThread>&, nsresult (nsIThread::*)()>(char const*, RefPtr<nsIThread>&, nsresult (nsIThread::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gfx::VRGPUParent*>::Type, void (mozilla::gfx::VRGPUParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gfx::VRGPUParent*, void (mozilla::gfx::VRGPUParent::*)()>(char const*, mozilla::gfx::VRGPUParent*&&, void (mozilla::gfx::VRGPUParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gfx::VRManagerParent*>::Type, void (mozilla::gfx::VRManagerParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gfx::VRManagerParent*, void (mozilla::gfx::VRManagerParent::*)()>(char const*, mozilla::gfx::VRManagerParent*&&, void (mozilla::gfx::VRManagerParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gfx::VRService*>::Type, void (mozilla::gfx::VRService::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gfx::VRService*, void (mozilla::gfx::VRService::*)()>(char const*, mozilla::gfx::VRService*&&, void (mozilla::gfx::VRService::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::wr::RenderThread*>::Type, void (mozilla::wr::RenderThread::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)()>(char const*, mozilla::wr::RenderThread*&&, void (mozilla::wr::RenderThread::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsGlobalWindowOuter*>::Type, void (nsGlobalWindowOuter::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsGlobalWindowOuter*, void (nsGlobalWindowOuter::*)()>(char const*, nsGlobalWindowOuter*&&, void (nsGlobalWindowOuter::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsGlobalWindowInner>&>::Type, void (nsGlobalWindowInner::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsGlobalWindowInner>&, void (nsGlobalWindowInner::*)()>(char const*, RefPtr<nsGlobalWindowInner>&, void (nsGlobalWindowInner::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsGlobalWindowOuter>&>::Type, void (nsGlobalWindowOuter::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsGlobalWindowOuter>&, void (nsGlobalWindowOuter::*)()>(char const*, RefPtr<nsGlobalWindowOuter>&, void (nsGlobalWindowOuter::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsXBLBinding>&>::Type, void (nsXBLBinding::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsXBLBinding>&, void (nsXBLBinding::*)()>(char const*, RefPtr<nsXBLBinding>&, void (nsXBLBinding::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::EventSourceImpl*>::Type, void (mozilla::dom::EventSourceImpl::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::EventSourceImpl*, void (mozilla::dom::EventSourceImpl::*)()>(char const*, mozilla::dom::EventSourceImpl*&&, void (mozilla::dom::EventSourceImpl::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ScreenOrientation*>::Type, void (mozilla::dom::ScreenOrientation::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ScreenOrientation*, void (mozilla::dom::ScreenOrientation::*)()>(char const*, mozilla::dom::ScreenOrientation*&&, void (mozilla::dom::ScreenOrientation::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ScreenOrientation*&>::Type, void (mozilla::dom::ScreenOrientation::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ScreenOrientation*&, void (mozilla::dom::ScreenOrientation::*)()>(char const*, mozilla::dom::ScreenOrientation*&, void (mozilla::dom::ScreenOrientation::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsIDocument*>::Type, void (nsIDocument::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsIDocument*, void (nsIDocument::*)()>(char const*, nsIDocument*&&, void (nsIDocument::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsDocument*>::Type, void (nsDocument::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsDocument*, void (nsDocument::*)()>(char const*, nsDocument*&&, void (nsDocument::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::TimedMetadata>*>::Type, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<mozilla::TimedMetadata>*, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)()>(char const*, mozilla::detail::Listener<mozilla::TimedMetadata>*&&, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsRange*>::Type, void (nsRange::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsRange*, void (nsRange::*)()>(char const*, nsRange*&&, void (nsRange::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsAttributeTextNode*>::Type, void (nsAttributeTextNode::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsAttributeTextNode*, void (nsAttributeTextNode::*)()>(char const*, nsAttributeTextNode*&&, void (nsAttributeTextNode::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher*>::Type, void (mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher::*)()>(char const*, mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher*&&, void (mozilla::WatchManager<mozilla::dom::TextTrackCue>::PerCallbackWatcher::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::cache::Context::ThreadsafeHandle*>::Type, void (mozilla::dom::cache::Context::ThreadsafeHandle::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::cache::Context::ThreadsafeHandle*, void (mozilla::dom::cache::Context::ThreadsafeHandle::*)()>(char const*, mozilla::dom::cache::Context::ThreadsafeHandle*&&, void (mozilla::dom::cache::Context::ThreadsafeHandle::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::CanvasRenderingContext2D*>::Type, void (mozilla::dom::CanvasRenderingContext2D::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::CanvasRenderingContext2D*, void (mozilla::dom::CanvasRenderingContext2D::*)()>(char const*, mozilla::dom::CanvasRenderingContext2D*&&, void (mozilla::dom::CanvasRenderingContext2D::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::EventListenerService*>::Type, void (mozilla::EventListenerService::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::EventListenerService*, void (mozilla::EventListenerService::*)()>(char const*, mozilla::EventListenerService*&&, void (mozilla::EventListenerService::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLCanvasPrintState*>::Type, void (mozilla::dom::HTMLCanvasPrintState::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::HTMLCanvasPrintState*, void (mozilla::dom::HTMLCanvasPrintState::*)()>(char const*, mozilla::dom::HTMLCanvasPrintState*&&, void (mozilla::dom::HTMLCanvasPrintState::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLCanvasElement*>::Type, void (mozilla::dom::HTMLCanvasElement::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::HTMLCanvasElement*, void (mozilla::dom::HTMLCanvasElement::*)()>(char const*, mozilla::dom::HTMLCanvasElement*&&, void (mozilla::dom::HTMLCanvasElement::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLEmbedElement*>::Type, void (mozilla::dom::HTMLEmbedElement::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::HTMLEmbedElement*, void (mozilla::dom::HTMLEmbedElement::*)()>(char const*, mozilla::dom::HTMLEmbedElement*&&, void (mozilla::dom::HTMLEmbedElement::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLInputElement*>::Type, void (mozilla::dom::HTMLInputElement::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::HTMLInputElement*, void (mozilla::dom::HTMLInputElement::*)()>(char const*, mozilla::dom::HTMLInputElement*&&, void (mozilla::dom::HTMLInputElement::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLLinkElement*>::Type, void (mozilla::dom::HTMLLinkElement::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::HTMLLinkElement*, void (mozilla::dom::HTMLLinkElement::*)()>(char const*, mozilla::dom::HTMLLinkElement*&&, void (mozilla::dom::HTMLLinkElement::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLMediaElement::StreamListener*>::Type, void (mozilla::dom::HTMLMediaElement::StreamListener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::HTMLMediaElement::StreamListener*, void (mozilla::dom::HTMLMediaElement::StreamListener::*)()>(char const*, mozilla::dom::HTMLMediaElement::StreamListener*&&, void (mozilla::dom::HTMLMediaElement::StreamListener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLMediaElement*>::Type, void (mozilla::dom::HTMLMediaElement::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::HTMLMediaElement*, void (mozilla::dom::HTMLMediaElement::*)()>(char const*, mozilla::dom::HTMLMediaElement*&&, void (mozilla::dom::HTMLMediaElement::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::MediaStreamTrack*&>::Type, void (mozilla::dom::MediaStreamTrack::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::MediaStreamTrack*&, void (mozilla::dom::MediaStreamTrack::*)()>(char const*, mozilla::dom::MediaStreamTrack*&, void (mozilla::dom::MediaStreamTrack::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher*>::Type, void (mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher::*)()>(char const*, mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher*&&, void (mozilla::WatchManager<mozilla::dom::HTMLMediaElement>::PerCallbackWatcher::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::dom::MediaStreamTrack>&>::Type, void (mozilla::dom::MediaStreamTrack::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::dom::MediaStreamTrack>&, void (mozilla::dom::MediaStreamTrack::*)()>(char const*, RefPtr<mozilla::dom::MediaStreamTrack>&, void (mozilla::dom::MediaStreamTrack::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLObjectElement*>::Type, void (mozilla::dom::HTMLObjectElement::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::HTMLObjectElement*, void (mozilla::dom::HTMLObjectElement::*)()>(char const*, mozilla::dom::HTMLObjectElement*&&, void (mozilla::dom::HTMLObjectElement::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLStyleElement*>::Type, void (mozilla::dom::HTMLStyleElement::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::HTMLStyleElement*, void (mozilla::dom::HTMLStyleElement::*)()>(char const*, mozilla::dom::HTMLStyleElement*&&, void (mozilla::dom::HTMLStyleElement::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLTrackElement*>::Type, void (mozilla::dom::HTMLTrackElement::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::HTMLTrackElement*, void (mozilla::dom::HTMLTrackElement::*)()>(char const*, mozilla::dom::HTMLTrackElement*&&, void (mozilla::dom::HTMLTrackElement::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ImageDocument*>::Type, void (mozilla::dom::ImageDocument::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ImageDocument*, void (mozilla::dom::ImageDocument::*)()>(char const*, mozilla::dom::ImageDocument*&&, void (mozilla::dom::ImageDocument::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::TextTrackManager*>::Type, void (mozilla::dom::TextTrackManager::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::TextTrackManager*, void (mozilla::dom::TextTrackManager::*)()>(char const*, mozilla::dom::TextTrackManager*&&, void (mozilla::dom::TextTrackManager::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<HTMLContentSink*>::Type, void (HTMLContentSink::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<HTMLContentSink*, void (HTMLContentSink::*)()>(char const*, HTMLContentSink*&&, void (HTMLContentSink::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsHTMLDocument*>::Type, void (nsHTMLDocument::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsHTMLDocument*, void (nsHTMLDocument::*)()>(char const*, nsHTMLDocument*&&, void (nsHTMLDocument::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsJSChannel*>::Type, void (nsJSChannel::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsJSChannel*, void (nsJSChannel::*)()>(char const*, nsJSChannel*&&, void (nsJSChannel::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::BackgroundVideoDecodingPermissionObserver*>::Type, void (mozilla::BackgroundVideoDecodingPermissionObserver::*)() const, true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::BackgroundVideoDecodingPermissionObserver*, void (mozilla::BackgroundVideoDecodingPermissionObserver::*)() const>(char const*, mozilla::BackgroundVideoDecodingPermissionObserver*&&, void (mozilla::BackgroundVideoDecodingPermissionObserver::*)() const)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::DOMMediaStream::PlaybackStreamListener*>::Type, void (mozilla::DOMMediaStream::PlaybackStreamListener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::DOMMediaStream::PlaybackStreamListener*, void (mozilla::DOMMediaStream::PlaybackStreamListener::*)()>(char const*, mozilla::DOMMediaStream::PlaybackStreamListener*&&, void (mozilla::DOMMediaStream::PlaybackStreamListener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::DOMMediaStream*&>::Type, void (mozilla::DOMMediaStream::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::DOMMediaStream*&, void (mozilla::DOMMediaStream::*)()>(char const*, mozilla::DOMMediaStream*&, void (mozilla::DOMMediaStream::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaResourceCallback*>::Type, void (mozilla::MediaResourceCallback::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)()>(char const*, mozilla::MediaResourceCallback*&&, void (mozilla::MediaResourceCallback::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChannelMediaResource*>::Type, void (mozilla::ChannelMediaResource::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ChannelMediaResource*, void (mozilla::ChannelMediaResource::*)()>(char const*, mozilla::ChannelMediaResource*&&, void (mozilla::ChannelMediaResource::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::FileBlockCache*>::Type, void (mozilla::FileBlockCache::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::FileBlockCache*, void (mozilla::FileBlockCache::*)()>(char const*, mozilla::FileBlockCache*&&, void (mozilla::FileBlockCache::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::Canonical<double>::Impl*>::Type, void (mozilla::Canonical<double>::Impl::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::Canonical<double>::Impl*, void (mozilla::Canonical<double>::Impl::*)()>(char const*, mozilla::Canonical<double>::Impl*&&, void (mozilla::Canonical<double>::Impl::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher*>::Type, void (mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher::*)()>(char const*, mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher*&&, void (mozilla::WatchManager<mozilla::MediaDecoder>::PerCallbackWatcher::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::Canonical<bool>::Impl*>::Type, void (mozilla::Canonical<bool>::Impl::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::Canonical<bool>::Impl*, void (mozilla::Canonical<bool>::Impl::*)()>(char const*, mozilla::Canonical<bool>::Impl*&&, void (mozilla::Canonical<bool>::Impl::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*>::Type, void (mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*, void (mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl::*)()>(char const*, mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*&&, void (mozilla::Canonical<nsMainThreadPtrHandle<nsIPrincipal> >::Impl::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl*>::Type, void (mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl*, void (mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl::*)()>(char const*, mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl*&&, void (mozilla::Canonical<mozilla::MediaDecoder::PlayState>::Impl::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaFormatReader*>::Type, void (mozilla::MediaFormatReader::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)()>(char const*, mozilla::MediaFormatReader*&&, void (mozilla::MediaFormatReader::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*>::Type, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)()>(char const*, mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*&&, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*>::Type, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)()>(char const*, mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*&&, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*>::Type, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)()>(char const*, mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*&&, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*>::Type, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)()>(char const*, mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*&&, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*>::Type, void (mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*, void (mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl::*)()>(char const*, mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*&&, void (mozilla::Canonical<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*>::Type, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)()>(char const*, mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*&&, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >&>::Type, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >&, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)()>(char const*, RefPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >&, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >&>::Type, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >&, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)()>(char const*, RefPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >&, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AbstractMirror<bool> >&>::Type, void (mozilla::AbstractMirror<bool>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::AbstractMirror<bool> >&, void (mozilla::AbstractMirror<bool>::*)()>(char const*, RefPtr<mozilla::AbstractMirror<bool> >&, void (mozilla::AbstractMirror<bool>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher*>::Type, void (mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher::*)()>(char const*, mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher*&&, void (mozilla::WatchManager<mozilla::MediaDecoderStateMachine>::PerCallbackWatcher::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::Canonical<mozilla::media::TimeUnit>::Impl*>::Type, void (mozilla::Canonical<mozilla::media::TimeUnit>::Impl::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::Canonical<mozilla::media::TimeUnit>::Impl*, void (mozilla::Canonical<mozilla::media::TimeUnit>::Impl::*)()>(char const*, mozilla::Canonical<mozilla::media::TimeUnit>::Impl*&&, void (mozilla::Canonical<mozilla::media::TimeUnit>::Impl::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::MediaResult>*>::Type, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<mozilla::MediaResult>*, void (mozilla::detail::Listener<mozilla::MediaResult>::*)()>(char const*, mozilla::detail::Listener<mozilla::MediaResult>*&&, void (mozilla::detail::Listener<mozilla::MediaResult>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*>::Type, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)()>(char const*, mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*&&, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaDecoderStateMachine*>::Type, void (mozilla::MediaDecoderStateMachine::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)()>(char const*, mozilla::MediaDecoderStateMachine*&&, void (mozilla::MediaDecoderStateMachine::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*>::Type, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)()>(char const*, mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*&&, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::SourceListener>&>::Type, void (mozilla::SourceListener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::SourceListener>&, void (mozilla::SourceListener::*)()>(char const*, RefPtr<mozilla::SourceListener>&, void (mozilla::SourceListener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >&>::Type, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >&, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)()>(char const*, RefPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >&, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*>::Type, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)()>(char const*, mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*&&, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl*>::Type, void (mozilla::Canonical<mozilla::media::TimeIntervals>::Impl::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::Canonical<mozilla::media::TimeIntervals>::Impl*, void (mozilla::Canonical<mozilla::media::TimeIntervals>::Impl::*)()>(char const*, mozilla::Canonical<mozilla::media::TimeIntervals>::Impl*&&, void (mozilla::Canonical<mozilla::media::TimeIntervals>::Impl::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::GetUserMediaWindowListener*>::Type, void (mozilla::GetUserMediaWindowListener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::GetUserMediaWindowListener*, void (mozilla::GetUserMediaWindowListener::*)()>(char const*, mozilla::GetUserMediaWindowListener*&&, void (mozilla::GetUserMediaWindowListener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaTimer*>::Type, void (mozilla::MediaTimer::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaTimer*, void (mozilla::MediaTimer::*)()>(char const*, mozilla::MediaTimer*&&, void (mozilla::MediaTimer::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::MediaFormatReader> const&>::Type, void (mozilla::MediaFormatReader::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::MediaFormatReader> const&, void (mozilla::MediaFormatReader::*)()>(char const*, RefPtr<mozilla::MediaFormatReader> const&, void (mozilla::MediaFormatReader::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher*>::Type, void (mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher::*)()>(char const*, mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher*&&, void (mozilla::WatchManager<mozilla::ReaderProxy>::PerCallbackWatcher::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::MediaEncoder>&>::Type, void (mozilla::MediaEncoder::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::MediaEncoder>&, void (mozilla::MediaEncoder::*)()>(char const*, RefPtr<mozilla::MediaEncoder>&, void (mozilla::MediaEncoder::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaEncoder::EncoderListener*>::Type, void (mozilla::MediaEncoder::EncoderListener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaEncoder::EncoderListener*, void (mozilla::MediaEncoder::EncoderListener::*)()>(char const*, mozilla::MediaEncoder::EncoderListener*&&, void (mozilla::MediaEncoder::EncoderListener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AudioTrackEncoder>&>::Type, void (mozilla::AudioTrackEncoder::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::AudioTrackEncoder::*)()>(char const*, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::AudioTrackEncoder::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::VideoTrackEncoder>&>::Type, void (mozilla::VideoTrackEncoder::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)()>(char const*, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::MediaEncoderListener>&>::Type, void (mozilla::MediaEncoderListener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::MediaEncoderListener>&, void (mozilla::MediaEncoderListener::*)()>(char const*, RefPtr<mozilla::MediaEncoderListener>&, void (mozilla::MediaEncoderListener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChromiumCDMProxy*&>::Type, void (mozilla::ChromiumCDMProxy::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)()>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gmp::GMPContentParent>&>::Type, void (mozilla::gmp::GMPContentParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::gmp::GMPContentParent>&, void (mozilla::gmp::GMPContentParent::*)()>(char const*, RefPtr<mozilla::gmp::GMPContentParent>&, void (mozilla::gmp::GMPContentParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::GMPParent*>::Type, void (mozilla::gmp::GMPParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gmp::GMPParent*, void (mozilla::gmp::GMPParent::*)()>(char const*, mozilla::gmp::GMPParent*&&, void (mozilla::gmp::GMPParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::GMPSyncRunnable*>::Type, void (mozilla::gmp::GMPSyncRunnable::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gmp::GMPSyncRunnable*, void (mozilla::gmp::GMPSyncRunnable::*)()>(char const*, mozilla::gmp::GMPSyncRunnable*&&, void (mozilla::gmp::GMPSyncRunnable::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gmp::GMPRunnable>&>::Type, void (mozilla::gmp::GMPRunnable::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::gmp::GMPRunnable>&, void (mozilla::gmp::GMPRunnable::*)()>(char const*, RefPtr<mozilla::gmp::GMPRunnable>&, void (mozilla::gmp::GMPRunnable::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::GMPRunnable*>::Type, void (mozilla::gmp::GMPRunnable::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gmp::GMPRunnable*, void (mozilla::gmp::GMPRunnable::*)()>(char const*, mozilla::gmp::GMPRunnable*&&, void (mozilla::gmp::GMPRunnable::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::GeckoMediaPluginServiceParent*>::Type, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)()>(char const*, mozilla::gmp::GeckoMediaPluginServiceParent*&&, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::GMPVideoDecoderChild*>::Type, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoDecoderChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gmp::GMPVideoDecoderChild*, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoDecoderChild::*)()>(char const*, mozilla::gmp::GMPVideoDecoderChild*&&, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoDecoderChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::GMPVideoEncoderChild*>::Type, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoEncoderChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gmp::GMPVideoEncoderChild*, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoEncoderChild::*)()>(char const*, mozilla::gmp::GMPVideoEncoderChild*&&, mozilla::ipc::IPCResult (mozilla::gmp::GMPVideoEncoderChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<long>*>::Type, void (mozilla::detail::Listener<long>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<long>*, void (mozilla::detail::Listener<long>::*)()>(char const*, mozilla::detail::Listener<long>*&&, void (mozilla::detail::Listener<long>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::DecodedStreamGraphListener*>::Type, void (mozilla::DecodedStreamGraphListener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::DecodedStreamGraphListener*, void (mozilla::DecodedStreamGraphListener::*)()>(char const*, mozilla::DecodedStreamGraphListener*&&, void (mozilla::DecodedStreamGraphListener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaStream*&>::Type, void (mozilla::MediaStream::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaStream*&, void (mozilla::MediaStream::*)()>(char const*, mozilla::MediaStream*&, void (mozilla::MediaStream::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::TrackBuffersManager*>::Type, void (mozilla::TrackBuffersManager::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::TrackBuffersManager*, void (mozilla::TrackBuffersManager::*)()>(char const*, mozilla::TrackBuffersManager*&&, void (mozilla::TrackBuffersManager::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*>::Type, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)()>(char const*, mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*&&, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher*>::Type, void (mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher*, void (mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher::*)()>(char const*, mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher*&&, void (mozilla::WatchManager<mozilla::OmxDataDecoder>::PerCallbackWatcher::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::camera::CamerasChild*>::Type, bool (mozilla::camera::PCamerasChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)()>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::AudioDestinationNode*>::Type, void (mozilla::dom::AudioDestinationNode::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::AudioDestinationNode*, void (mozilla::dom::AudioDestinationNode::*)()>(char const*, mozilla::dom::AudioDestinationNode*&&, void (mozilla::dom::AudioDestinationNode::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaDecodeTask*>::Type, void (mozilla::MediaDecodeTask::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaDecodeTask*, void (mozilla::MediaDecodeTask::*)()>(char const*, mozilla::MediaDecodeTask*&&, void (mozilla::MediaDecodeTask::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::nsFakeSynthServices*>::Type, void (mozilla::dom::nsFakeSynthServices::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::nsFakeSynthServices*, void (mozilla::dom::nsFakeSynthServices::*)()>(char const*, mozilla::dom::nsFakeSynthServices*&&, void (mozilla::dom::nsFakeSynthServices::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::SpeechDispatcherService*>::Type, void (mozilla::dom::SpeechDispatcherService::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::SpeechDispatcherService*, void (mozilla::dom::SpeechDispatcherService::*)()>(char const*, mozilla::dom::SpeechDispatcherService*&&, void (mozilla::dom::SpeechDispatcherService::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::NotificationPermissionRequest*>::Type, nsresult (mozilla::dom::NotificationPermissionRequest::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::NotificationPermissionRequest*, nsresult (mozilla::dom::NotificationPermissionRequest::*)()>(char const*, mozilla::dom::NotificationPermissionRequest*&&, nsresult (mozilla::dom::NotificationPermissionRequest::*)())
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::quota::(anonymous namespace)::Quota*>::Type, void (mozilla::dom::quota::(anonymous namespace)::Quota::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::quota::(anonymous namespace)::Quota*, void (mozilla::dom::quota::(anonymous namespace)::Quota::*)()>(char const*, mozilla::dom::quota::(anonymous namespace)::Quota*&&, void (mozilla::dom::quota::(anonymous namespace)::Quota::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::quota::QuotaManager*>::Type, void (mozilla::dom::quota::QuotaManager::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::quota::QuotaManager*, void (mozilla::dom::quota::QuotaManager::*)()>(char const*, mozilla::dom::quota::QuotaManager*&&, void (mozilla::dom::quota::QuotaManager::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::StorageDBParent::ObserverSink*>::Type, void (mozilla::dom::StorageDBParent::ObserverSink::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::StorageDBParent::ObserverSink*, void (mozilla::dom::StorageDBParent::ObserverSink::*)()>(char const*, mozilla::dom::StorageDBParent::ObserverSink*&&, void (mozilla::dom::StorageDBParent::ObserverSink::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::SVGFEImageElement*>::Type, void (mozilla::dom::SVGFEImageElement::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::SVGFEImageElement*, void (mozilla::dom::SVGFEImageElement::*)()>(char const*, mozilla::dom::SVGFEImageElement*&&, void (mozilla::dom::SVGFEImageElement::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::SVGImageElement*>::Type, void (mozilla::dom::SVGImageElement::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::SVGImageElement*, void (mozilla::dom::SVGImageElement::*)()>(char const*, mozilla::dom::SVGImageElement*&&, void (mozilla::dom::SVGImageElement::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::SVGStyleElement*>::Type, void (mozilla::dom::SVGStyleElement::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::SVGStyleElement*, void (mozilla::dom::SVGStyleElement::*)()>(char const*, mozilla::dom::SVGStyleElement*&&, void (mozilla::dom::SVGStyleElement::*)())
Unexecuted instantiation: ActorsParent.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::indexedDB::(anonymous namespace)::Database*>::Type, void (mozilla::dom::indexedDB::(anonymous namespace)::Database::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::indexedDB::(anonymous namespace)::Database*, void (mozilla::dom::indexedDB::(anonymous namespace)::Database::*)()>(char const*, mozilla::dom::indexedDB::(anonymous namespace)::Database*&&, void (mozilla::dom::indexedDB::(anonymous namespace)::Database::*)())
Unexecuted instantiation: ActorsParent.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp*>::Type, void (mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp*, void (mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp::*)()>(char const*, mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp*&&, void (mozilla::dom::indexedDB::(anonymous namespace)::OpenDatabaseOp::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::IDBDatabase*>::Type, void (mozilla::dom::IDBDatabase::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::IDBDatabase*, void (mozilla::dom::IDBDatabase::*)()>(char const*, mozilla::dom::IDBDatabase*&&, void (mozilla::dom::IDBDatabase::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ContentChild*>::Type, void (mozilla::dom::ContentChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ContentChild*, void (mozilla::dom::ContentChild::*)()>(char const*, mozilla::dom::ContentChild*&&, void (mozilla::dom::ContentChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ContentBridgeChild*>::Type, void (mozilla::dom::ContentBridgeChild::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ContentBridgeChild*, void (mozilla::dom::ContentBridgeChild::*)()>(char const*, mozilla::dom::ContentBridgeChild*&&, void (mozilla::dom::ContentBridgeChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ContentBridgeParent*>::Type, void (mozilla::dom::ContentBridgeParent::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ContentBridgeParent*, void (mozilla::dom::ContentBridgeParent::*)()>(char const*, mozilla::dom::ContentBridgeParent*&&, void (mozilla::dom::ContentBridgeParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::PreallocatedProcessManagerImpl*>::Type, void (mozilla::PreallocatedProcessManagerImpl::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::PreallocatedProcessManagerImpl*, void (mozilla::PreallocatedProcessManagerImpl::*)()>(char const*, mozilla::PreallocatedProcessManagerImpl*&&, void (mozilla::PreallocatedProcessManagerImpl::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ipc::WritableSharedMap*>::Type, void (mozilla::dom::ipc::WritableSharedMap::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ipc::WritableSharedMap*, void (mozilla::dom::ipc::WritableSharedMap::*)()>(char const*, mozilla::dom::ipc::WritableSharedMap*&&, void (mozilla::dom::ipc::WritableSharedMap::*)())
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable> const&>::Type, void (mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable> const&, void (mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable::*)()>(char const*, RefPtr<mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable> const&, void (mozilla::dom::(anonymous namespace)::ScriptLoaderRunnable::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsBindingManager*>::Type, void (nsBindingManager::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsBindingManager*, void (nsBindingManager::*)()>(char const*, nsBindingManager*&&, void (nsBindingManager::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::XMLStylesheetProcessingInstruction*>::Type, void (mozilla::dom::XMLStylesheetProcessingInstruction::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::XMLStylesheetProcessingInstruction*, void (mozilla::dom::XMLStylesheetProcessingInstruction::*)()>(char const*, mozilla::dom::XMLStylesheetProcessingInstruction*&&, void (mozilla::dom::XMLStylesheetProcessingInstruction::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsXMLContentSink*>::Type, void (nsXMLContentSink::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsXMLContentSink*, void (nsXMLContentSink::*)()>(char const*, nsXMLContentSink*&&, void (nsXMLContentSink::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsXMLPrettyPrinter*>::Type, void (nsXMLPrettyPrinter::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsXMLPrettyPrinter*, void (nsXMLPrettyPrinter::*)()>(char const*, nsXMLPrettyPrinter*&&, void (nsXMLPrettyPrinter::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::XULDocument*>::Type, void (mozilla::dom::XULDocument::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::XULDocument*, void (mozilla::dom::XULDocument::*)()>(char const*, mozilla::dom::XULDocument*&&, void (mozilla::dom::XULDocument::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsWebBrowserPersist*>::Type, void (nsWebBrowserPersist::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsWebBrowserPersist*, void (nsWebBrowserPersist::*)()>(char const*, nsWebBrowserPersist*&&, void (nsWebBrowserPersist::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsWebBrowserPersist>&>::Type, void (nsWebBrowserPersist::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsWebBrowserPersist>&, void (nsWebBrowserPersist::*)()>(char const*, RefPtr<nsWebBrowserPersist>&, void (nsWebBrowserPersist::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::WorkletThread*>::Type, nsresult (nsThread::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::WorkletThread*, nsresult (nsThread::*)()>(char const*, mozilla::dom::WorkletThread*&&, nsresult (nsThread::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsIScriptElement*&>::Type, nsresult (nsIScriptElement::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsIScriptElement*&, nsresult (nsIScriptElement::*)()>(char const*, nsIScriptElement*&, nsresult (nsIScriptElement::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ScriptLoader*>::Type, void (mozilla::dom::ScriptLoader::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ScriptLoader*, void (mozilla::dom::ScriptLoader::*)()>(char const*, mozilla::dom::ScriptLoader*&&, void (mozilla::dom::ScriptLoader::*)())
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::(anonymous namespace)::WaitUntilHandler*>::Type, void (mozilla::dom::(anonymous namespace)::WaitUntilHandler::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::(anonymous namespace)::WaitUntilHandler*, void (mozilla::dom::(anonymous namespace)::WaitUntilHandler::*)()>(char const*, mozilla::dom::(anonymous namespace)::WaitUntilHandler*&&, void (mozilla::dom::(anonymous namespace)::WaitUntilHandler::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ServiceWorkerJob*>::Type, void (mozilla::dom::ServiceWorkerJob::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ServiceWorkerJob*, void (mozilla::dom::ServiceWorkerJob::*)()>(char const*, mozilla::dom::ServiceWorkerJob*&&, void (mozilla::dom::ServiceWorkerJob::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ServiceWorkerProxy*>::Type, void (mozilla::dom::ServiceWorkerProxy::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ServiceWorkerProxy*, void (mozilla::dom::ServiceWorkerProxy::*)()>(char const*, mozilla::dom::ServiceWorkerProxy*&&, void (mozilla::dom::ServiceWorkerProxy::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ServiceWorkerRegistrar*>::Type, void (mozilla::dom::ServiceWorkerRegistrar::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ServiceWorkerRegistrar*, void (mozilla::dom::ServiceWorkerRegistrar::*)()>(char const*, mozilla::dom::ServiceWorkerRegistrar*&&, void (mozilla::dom::ServiceWorkerRegistrar::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ServiceWorkerRegistrationMainThread*>::Type, void (mozilla::dom::ServiceWorkerRegistrationMainThread::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ServiceWorkerRegistrationMainThread*, void (mozilla::dom::ServiceWorkerRegistrationMainThread::*)()>(char const*, mozilla::dom::ServiceWorkerRegistrationMainThread*&&, void (mozilla::dom::ServiceWorkerRegistrationMainThread::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::dom::WorkerListener>&>::Type, void (mozilla::dom::WorkerListener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::dom::WorkerListener>&, void (mozilla::dom::WorkerListener::*)()>(char const*, RefPtr<mozilla::dom::WorkerListener>&, void (mozilla::dom::WorkerListener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ServiceWorkerRegistrationInfo*>::Type, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ServiceWorkerRegistrationInfo*, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)()>(char const*, mozilla::dom::ServiceWorkerRegistrationInfo*&&, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ServiceWorkerRegistrationProxy*>::Type, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ServiceWorkerRegistrationProxy*, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)()>(char const*, mozilla::dom::ServiceWorkerRegistrationProxy*&&, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)())
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::(anonymous namespace)::Connection*>::Type, void (mozilla::dom::(anonymous namespace)::Connection::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::(anonymous namespace)::Connection*, void (mozilla::dom::(anonymous namespace)::Connection::*)()>(char const*, mozilla::dom::(anonymous namespace)::Connection*&&, void (mozilla::dom::(anonymous namespace)::Connection::*)())
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::(anonymous namespace)::OpenOp*>::Type, void (mozilla::dom::(anonymous namespace)::OpenOp::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::(anonymous namespace)::OpenOp*, void (mozilla::dom::(anonymous namespace)::OpenOp::*)()>(char const*, mozilla::dom::(anonymous namespace)::OpenOp*&&, void (mozilla::dom::(anonymous namespace)::OpenOp::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::PresentationConnection*>::Type, nsresult (mozilla::dom::PresentationConnection::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::PresentationConnection*, nsresult (mozilla::dom::PresentationConnection::*)()>(char const*, mozilla::dom::PresentationConnection*&&, nsresult (mozilla::dom::PresentationConnection::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::PresentationDeviceManager*>::Type, nsresult (mozilla::dom::PresentationDeviceManager::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::PresentationDeviceManager*, nsresult (mozilla::dom::PresentationDeviceManager::*)()>(char const*, mozilla::dom::PresentationDeviceManager*&&, nsresult (mozilla::dom::PresentationDeviceManager::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::presentation::MulticastDNSDeviceProvider*>::Type, nsresult (mozilla::dom::presentation::MulticastDNSDeviceProvider::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::presentation::MulticastDNSDeviceProvider*, nsresult (mozilla::dom::presentation::MulticastDNSDeviceProvider::*)()>(char const*, mozilla::dom::presentation::MulticastDNSDeviceProvider*&&, nsresult (mozilla::dom::presentation::MulticastDNSDeviceProvider::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::RefreshTimerVsyncDispatcher*>::Type, void (mozilla::RefreshTimerVsyncDispatcher::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::RefreshTimerVsyncDispatcher*, void (mozilla::RefreshTimerVsyncDispatcher::*)()>(char const*, mozilla::RefreshTimerVsyncDispatcher*&&, void (mozilla::RefreshTimerVsyncDispatcher::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsWindow*>::Type, void (nsWindow::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsWindow*, void (nsWindow::*)()>(char const*, nsWindow*&&, void (nsWindow::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsDeviceContextSpecGTK*&>::Type, void (nsDeviceContextSpecGTK::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsDeviceContextSpecGTK*&, void (nsDeviceContextSpecGTK::*)()>(char const*, nsDeviceContextSpecGTK*&, void (nsDeviceContextSpecGTK::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsDeviceContextSpecGTK*>::Type, void (nsDeviceContextSpecGTK::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsDeviceContextSpecGTK*, void (nsDeviceContextSpecGTK::*)()>(char const*, nsDeviceContextSpecGTK*&&, void (nsDeviceContextSpecGTK::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::HTMLEditRules*>::Type, void (mozilla::HTMLEditRules::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::HTMLEditRules*, void (mozilla::HTMLEditRules::*)()>(char const*, mozilla::HTMLEditRules*&&, void (mozilla::HTMLEditRules::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::HTMLEditor*>::Type, void (mozilla::HTMLEditor::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::HTMLEditor*, void (mozilla::HTMLEditor::*)()>(char const*, mozilla::HTMLEditor*&&, void (mozilla::HTMLEditor::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::FontFaceSet*>::Type, void (mozilla::dom::FontFaceSet::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::FontFaceSet*, void (mozilla::dom::FontFaceSet::*)()>(char const*, mozilla::dom::FontFaceSet*&&, void (mozilla::dom::FontFaceSet::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver*>::Type, void (mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver*, void (mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver::*)()>(char const*, mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver*&&, void (mozilla::VsyncRefreshDriverTimer::RefreshDriverVsyncObserver::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsRefreshDriver*>::Type, void (nsRefreshDriver::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsRefreshDriver*, void (nsRefreshDriver::*)()>(char const*, nsRefreshDriver*&&, void (nsRefreshDriver::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::PresShell*>::Type, void (mozilla::PresShell::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::PresShell*, void (mozilla::PresShell::*)()>(char const*, mozilla::PresShell*&&, void (mozilla::PresShell::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<ZoomConstraintsClient*>::Type, void (ZoomConstraintsClient::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<ZoomConstraintsClient*, void (ZoomConstraintsClient::*)()>(char const*, ZoomConstraintsClient*&&, void (ZoomConstraintsClient::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsPresContext*>::Type, void (nsPresContext::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsPresContext*, void (nsPresContext::*)()>(char const*, nsPresContext*&&, void (nsPresContext::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIDateTimeInputArea>&>::Type, nsresult (nsIDateTimeInputArea::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsCOMPtr<nsIDateTimeInputArea>&, nsresult (nsIDateTimeInputArea::*)()>(char const*, nsCOMPtr<nsIDateTimeInputArea>&, nsresult (nsIDateTimeInputArea::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsDocShell*>::Type, void (nsDocShell::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsDocShell*, void (nsDocShell::*)()>(char const*, nsDocShell*&&, void (nsDocShell::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::DataStorage*>::Type, void (mozilla::DataStorage::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::DataStorage*, void (mozilla::DataStorage::*)()>(char const*, mozilla::DataStorage*&&, void (mozilla::DataStorage::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::psm::PSMContentStreamListener*>::Type, void (mozilla::psm::PSMContentStreamListener::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::psm::PSMContentStreamListener*, void (mozilla::psm::PSMContentStreamListener::*)()>(char const*, mozilla::psm::PSMContentStreamListener*&&, void (mozilla::psm::PSMContentStreamListener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::extensions::StreamFilterParent*>::Type, void (mozilla::ipc::IToplevelProtocol::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::extensions::StreamFilterParent*, void (mozilla::ipc::IToplevelProtocol::*)()>(char const*, mozilla::extensions::StreamFilterParent*&&, void (mozilla::ipc::IToplevelProtocol::*)())
Unexecuted instantiation: Unified_cpp_components_places0.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::places::(anonymous namespace)::VisitedQuery>&>::Type, nsresult (mozilla::places::(anonymous namespace)::VisitedQuery::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::places::(anonymous namespace)::VisitedQuery>&, nsresult (mozilla::places::(anonymous namespace)::VisitedQuery::*)()>(char const*, RefPtr<mozilla::places::(anonymous namespace)::VisitedQuery>&, nsresult (mozilla::places::(anonymous namespace)::VisitedQuery::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::places::Database*>::Type, nsresult (mozilla::places::Database::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::places::Database*, nsresult (mozilla::places::Database::*)()>(char const*, mozilla::places::Database*&&, nsresult (mozilla::places::Database::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::places::AsyncFetchAndSetIconForPage*>::Type, nsresult (mozilla::places::AsyncFetchAndSetIconForPage::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::places::AsyncFetchAndSetIconForPage*, nsresult (mozilla::places::AsyncFetchAndSetIconForPage::*)()>(char const*, mozilla::places::AsyncFetchAndSetIconForPage*&&, nsresult (mozilla::places::AsyncFetchAndSetIconForPage::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::places::AsyncReplaceFaviconData*>::Type, nsresult (mozilla::places::AsyncReplaceFaviconData::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::places::AsyncReplaceFaviconData*, nsresult (mozilla::places::AsyncReplaceFaviconData::*)()>(char const*, mozilla::places::AsyncReplaceFaviconData*&&, nsresult (mozilla::places::AsyncReplaceFaviconData::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsUrlClassifierDBServiceWorker>&>::Type, void (nsUrlClassifierDBServiceWorker::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsUrlClassifierDBServiceWorker>&, void (nsUrlClassifierDBServiceWorker::*)()>(char const*, RefPtr<nsUrlClassifierDBServiceWorker>&, void (nsUrlClassifierDBServiceWorker::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsUrlClassifierDBServiceWorker> const&>::Type, nsresult (nsUrlClassifierDBServiceWorker::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsUrlClassifierDBServiceWorker> const&, nsresult (nsUrlClassifierDBServiceWorker::*)()>(char const*, RefPtr<nsUrlClassifierDBServiceWorker> const&, nsresult (nsUrlClassifierDBServiceWorker::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsNativeAppSupportUnix*&>::Type, void (nsNativeAppSupportUnix::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsNativeAppSupportUnix*&, void (nsNativeAppSupportUnix::*)()>(char const*, nsNativeAppSupportUnix*&, void (nsNativeAppSupportUnix::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsUpdateProcessor*>::Type, void (nsUpdateProcessor::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsUpdateProcessor*, void (nsUpdateProcessor::*)()>(char const*, nsUpdateProcessor*&&, void (nsUpdateProcessor::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher*>::Type, void (mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher*, void (mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher::*)()>(char const*, mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher*&&, void (mozilla::WatchManager<TestStateWatching::Foo>::PerCallbackWatcher::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsBar>&>::Type, void (nsBar::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsBar>&, void (nsBar::*)()>(char const*, RefPtr<nsBar>&, void (nsBar::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsBar const>&>::Type, void (nsBar::*)() const, true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsBar const>&, void (nsBar::*)() const>(char const*, RefPtr<nsBar const>&, void (nsBar::*)() const)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsBar>&>::Type, nsresult (nsBar::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsBar>&, nsresult (nsBar::*)()>(char const*, RefPtr<nsBar>&, nsresult (nsBar::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<IdleObject*>::Type, void (IdleObject::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<IdleObject*, void (IdleObject::*)()>(char const*, IdleObject*&&, void (IdleObject::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<IdleObject>&>::Type, void (IdleObject::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<IdleObject>&, void (IdleObject::*)()>(char const*, RefPtr<IdleObject>&, void (IdleObject::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)()>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObjectNonRefCountedBase::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObjectNonRefCountedBase::*)()>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObjectNonRefCountedBase::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<CDMStorageTest*>::Type, void (CDMStorageTest::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<CDMStorageTest*, void (CDMStorageTest::*)()>(char const*, CDMStorageTest*&&, void (CDMStorageTest::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<int>*>::Type, void (mozilla::detail::Listener<int>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<int>*, void (mozilla::detail::Listener<int>::*)()>(char const*, mozilla::detail::Listener<int>*&&, void (mozilla::detail::Listener<int>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<SomeEvent>*>::Type, void (mozilla::detail::Listener<SomeEvent>::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<SomeEvent>*, void (mozilla::detail::Listener<SomeEvent>::*)()>(char const*, mozilla::detail::Listener<SomeEvent>*&&, void (mozilla::detail::Listener<SomeEvent>::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*>::Type, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)()>(char const*, mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*&&, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<RefPtr<RefCounter> >*>::Type, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::detail::Listener<RefPtr<RefCounter> >*, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)()>(char const*, mozilla::detail::Listener<RefPtr<RefCounter> >*&&, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)())
1431
1432
template<typename PtrType, typename Method>
1433
already_AddRefed<detail::CancelableRunnableMethod<PtrType, Method>>
1434
NewCancelableRunnableMethod(const char* aName, PtrType&& aPtr, Method aMethod)
1435
0
{
1436
0
  return do_AddRef(
1437
0
    new detail::CancelableRunnableMethodImpl<PtrType, Method>(
1438
0
      aName, std::forward<PtrType>(aPtr), aMethod));
1439
0
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::GestureEventListener*>::Type, void (mozilla::layers::GestureEventListener::*)(), true, (mozilla::RunnableKind)1>::base_type> mozilla::NewCancelableRunnableMethod<mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)()>(char const*, mozilla::layers::GestureEventListener*&&, void (mozilla::layers::GestureEventListener::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::CompositorBridgeParent*>::Type, void (mozilla::layers::CompositorBridgeParent::*)(), true, (mozilla::RunnableKind)1>::base_type> mozilla::NewCancelableRunnableMethod<mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)()>(char const*, mozilla::layers::CompositorBridgeParent*&&, void (mozilla::layers::CompositorBridgeParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::cache::ReadStream::Inner*>::Type, void (mozilla::dom::cache::ReadStream::Inner::*)(), true, (mozilla::RunnableKind)1>::base_type> mozilla::NewCancelableRunnableMethod<mozilla::dom::cache::ReadStream::Inner*, void (mozilla::dom::cache::ReadStream::Inner::*)()>(char const*, mozilla::dom::cache::ReadStream::Inner*&&, void (mozilla::dom::cache::ReadStream::Inner::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ServiceWorkerRegistration*>::Type, void (mozilla::dom::ServiceWorkerRegistration::*)(), true, (mozilla::RunnableKind)1>::base_type> mozilla::NewCancelableRunnableMethod<mozilla::dom::ServiceWorkerRegistration*, void (mozilla::dom::ServiceWorkerRegistration::*)()>(char const*, mozilla::dom::ServiceWorkerRegistration*&&, void (mozilla::dom::ServiceWorkerRegistration::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::dom::WorkerListener>&>::Type, void (mozilla::dom::WorkerListener::*)(), true, (mozilla::RunnableKind)1>::base_type> mozilla::NewCancelableRunnableMethod<RefPtr<mozilla::dom::WorkerListener>&, void (mozilla::dom::WorkerListener::*)()>(char const*, RefPtr<mozilla::dom::WorkerListener>&, void (mozilla::dom::WorkerListener::*)())
1440
1441
template<typename PtrType, typename Method>
1442
already_AddRefed<detail::IdleRunnableMethod<PtrType, Method>>
1443
NewIdleRunnableMethod(const char* aName, PtrType&& aPtr, Method aMethod)
1444
0
{
1445
0
  return do_AddRef(
1446
0
    new detail::IdleRunnableMethodImpl<PtrType, Method>(
1447
0
      aName, std::forward<PtrType>(aPtr), aMethod));
1448
0
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsStringBundleBase*>::Type, nsresult (nsStringBundleBase::*)(), true, (mozilla::RunnableKind)2>::base_type> mozilla::NewIdleRunnableMethod<nsStringBundleBase*, nsresult (nsStringBundleBase::*)()>(char const*, nsStringBundleBase*&&, nsresult (nsStringBundleBase::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<IdleObject>&>::Type, void (IdleObject::*)(), true, (mozilla::RunnableKind)2>::base_type> mozilla::NewIdleRunnableMethod<RefPtr<IdleObject>&, void (IdleObject::*)()>(char const*, RefPtr<IdleObject>&, void (IdleObject::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<IdleObjectWithoutSetDeadline>&>::Type, void (IdleObjectWithoutSetDeadline::*)(), true, (mozilla::RunnableKind)2>::base_type> mozilla::NewIdleRunnableMethod<RefPtr<IdleObjectWithoutSetDeadline>&, void (IdleObjectWithoutSetDeadline::*)()>(char const*, RefPtr<IdleObjectWithoutSetDeadline>&, void (IdleObjectWithoutSetDeadline::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<IdleObjectInheritedSetDeadline>&>::Type, void (IdleObjectInheritedSetDeadline::*)(), true, (mozilla::RunnableKind)2>::base_type> mozilla::NewIdleRunnableMethod<RefPtr<IdleObjectInheritedSetDeadline>&, void (IdleObjectInheritedSetDeadline::*)()>(char const*, RefPtr<IdleObjectInheritedSetDeadline>&, void (IdleObjectInheritedSetDeadline::*)())
1449
1450
template<typename PtrType, typename Method>
1451
already_AddRefed<detail::IdleRunnableMethodWithTimer<PtrType, Method>>
1452
NewIdleRunnableMethodWithTimer(const char* aName,
1453
                               PtrType&& aPtr,
1454
                               Method aMethod)
1455
0
{
1456
0
  return do_AddRef(
1457
0
    new detail::IdleRunnableMethodWithTimerImpl<PtrType, Method>(
1458
0
      aName, std::forward<PtrType>(aPtr), aMethod));
1459
0
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<IdleObject*>::Type, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::base_type> mozilla::NewIdleRunnableMethodWithTimer<IdleObject*, void (IdleObject::*)()>(char const*, IdleObject*&&, void (IdleObject::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<IdleObject>&>::Type, void (IdleObject::*)(), true, (mozilla::RunnableKind)3>::base_type> mozilla::NewIdleRunnableMethodWithTimer<RefPtr<IdleObject>&, void (IdleObject::*)()>(char const*, RefPtr<IdleObject>&, void (IdleObject::*)())
1460
1461
template<typename PtrType, typename Method>
1462
already_AddRefed<detail::NonOwningRunnableMethod<PtrType, Method>>
1463
NewNonOwningRunnableMethod(const char* aName, PtrType&& aPtr, Method aMethod)
1464
0
{
1465
0
  return do_AddRef(
1466
0
    new detail::NonOwningRunnableMethodImpl<PtrType, Method>(
1467
0
      aName, std::forward<PtrType>(aPtr), aMethod));
1468
0
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::LazyIdleThread*>::Type, void (mozilla::LazyIdleThread::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::LazyIdleThread*, void (mozilla::LazyIdleThread::*)()>(char const*, mozilla::LazyIdleThread*&&, void (mozilla::LazyIdleThread::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::CacheFileChunk*>::Type, unsigned int (mozilla::net::CacheFileChunk::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::net::CacheFileChunk*, unsigned int (mozilla::net::CacheFileChunk::*)()>(char const*, mozilla::net::CacheFileChunk*&&, unsigned int (mozilla::net::CacheFileChunk::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::CacheFileHandle*>::Type, unsigned int (mozilla::net::CacheFileHandle::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::net::CacheFileHandle*, unsigned int (mozilla::net::CacheFileHandle::*)()>(char const*, mozilla::net::CacheFileHandle*&&, unsigned int (mozilla::net::CacheFileHandle::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpChannelChild*>::Type, unsigned int (mozilla::net::HttpChannelChild::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::net::HttpChannelChild*, unsigned int (mozilla::net::HttpChannelChild::*)()>(char const*, mozilla::net::HttpChannelChild*&&, unsigned int (mozilla::net::HttpChannelChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpChannelChild*>::Type, void (mozilla::net::HttpChannelChild::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)()>(char const*, mozilla::net::HttpChannelChild*&&, void (mozilla::net::HttpChannelChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::dom::ContentParent>&>::Type, unsigned int (mozilla::dom::ContentParent::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<RefPtr<mozilla::dom::ContentParent>&, unsigned int (mozilla::dom::ContentParent::*)()>(char const*, RefPtr<mozilla::dom::ContentParent>&, unsigned int (mozilla::dom::ContentParent::*)())
Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<(anonymous namespace)::ParentImpl*>::Type, void ((anonymous namespace)::ParentImpl::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<(anonymous namespace)::ParentImpl*, void ((anonymous namespace)::ParentImpl::*)()>(char const*, (anonymous namespace)::ParentImpl*&&, void ((anonymous namespace)::ParentImpl::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ipc::ProcessLink*>::Type, void (mozilla::ipc::ProcessLink::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::ipc::ProcessLink*, void (mozilla::ipc::ProcessLink::*)()>(char const*, mozilla::ipc::ProcessLink*&&, void (mozilla::ipc::ProcessLink::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsContentSink*>::Type, void (nsContentSink::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<nsContentSink*, void (nsContentSink::*)()>(char const*, nsContentSink*&&, void (nsContentSink::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsIDocument*>::Type, void (nsIDocument::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<nsIDocument*, void (nsIDocument::*)()>(char const*, nsIDocument*&&, void (nsIDocument::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaResource*>::Type, void (mozilla::MediaResource::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::MediaResource*, void (mozilla::MediaResource::*)()>(char const*, mozilla::MediaResource*&&, void (mozilla::MediaResource::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaTimer*>::Type, void (mozilla::MediaTimer::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::MediaTimer*, void (mozilla::MediaTimer::*)()>(char const*, mozilla::MediaTimer*&&, void (mozilla::MediaTimer::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::GMPCrashHelper*>::Type, void (mozilla::GMPCrashHelper::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::GMPCrashHelper*, void (mozilla::GMPCrashHelper::*)()>(char const*, mozilla::GMPCrashHelper*&&, void (mozilla::GMPCrashHelper::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::GMPProcessParent*>::Type, void (mozilla::gmp::GMPProcessParent::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::gmp::GMPProcessParent*, void (mozilla::gmp::GMPProcessParent::*)()>(char const*, mozilla::gmp::GMPProcessParent*&&, void (mozilla::gmp::GMPProcessParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<WebCore::ReverbConvolver*>::Type, void (WebCore::ReverbConvolver::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<WebCore::ReverbConvolver*, void (WebCore::ReverbConvolver::*)()>(char const*, WebCore::ReverbConvolver*&&, void (WebCore::ReverbConvolver::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::LocalStorageCacheBridge*>::Type, void (mozilla::dom::LocalStorageCacheBridge::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::dom::LocalStorageCacheBridge*, void (mozilla::dom::LocalStorageCacheBridge::*)()>(char const*, mozilla::dom::LocalStorageCacheBridge*&&, void (mozilla::dom::LocalStorageCacheBridge::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::StorageDBThread*>::Type, void (mozilla::dom::StorageDBThread::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::dom::StorageDBThread*, void (mozilla::dom::StorageDBThread::*)()>(char const*, mozilla::dom::StorageDBThread*&&, void (mozilla::dom::StorageDBThread::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::StorageDBParent::CacheParentBridge*>::Type, void (mozilla::dom::StorageDBParent::CacheParentBridge::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::dom::StorageDBParent::CacheParentBridge*, void (mozilla::dom::StorageDBParent::CacheParentBridge::*)()>(char const*, mozilla::dom::StorageDBParent::CacheParentBridge*&&, void (mozilla::dom::StorageDBParent::CacheParentBridge::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::StorageDBParent::UsageParentBridge*>::Type, void (mozilla::dom::StorageDBParent::UsageParentBridge::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::dom::StorageDBParent::UsageParentBridge*, void (mozilla::dom::StorageDBParent::UsageParentBridge::*)()>(char const*, mozilla::dom::StorageDBParent::UsageParentBridge*&&, void (mozilla::dom::StorageDBParent::UsageParentBridge::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::plugins::FunctionBrokerChild*&>::Type, void (mozilla::plugins::FunctionBrokerChild::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::plugins::FunctionBrokerChild*&, void (mozilla::plugins::FunctionBrokerChild::*)()>(char const*, mozilla::plugins::FunctionBrokerChild*&, void (mozilla::plugins::FunctionBrokerChild::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::plugins::FunctionBrokerParent*&>::Type, void (mozilla::plugins::FunctionBrokerParent::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::plugins::FunctionBrokerParent*&, void (mozilla::plugins::FunctionBrokerParent::*)()>(char const*, mozilla::plugins::FunctionBrokerParent*&, void (mozilla::plugins::FunctionBrokerParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::plugins::PluginProcessParent*>::Type, void (mozilla::plugins::PluginProcessParent::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::plugins::PluginProcessParent*, void (mozilla::plugins::PluginProcessParent::*)()>(char const*, mozilla::plugins::PluginProcessParent*&&, void (mozilla::plugins::PluginProcessParent::*)())
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper*>::Type, void (mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper*, void (mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper::*)()>(char const*, mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper*&&, void (mozilla::dom::indexedDB::(anonymous namespace)::StreamWrapper::*)())
Unexecuted instantiation: ProcessHangMonitor.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<(anonymous namespace)::HangMonitorChild*>::Type, void ((anonymous namespace)::HangMonitorChild::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<(anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)()>(char const*, (anonymous namespace)::HangMonitorChild*&&, void ((anonymous namespace)::HangMonitorChild::*)())
Unexecuted instantiation: ProcessHangMonitor.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<(anonymous namespace)::HangMonitorParent*&>::Type, void ((anonymous namespace)::HangMonitorParent::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<(anonymous namespace)::HangMonitorParent*&, void ((anonymous namespace)::HangMonitorParent::*)()>(char const*, (anonymous namespace)::HangMonitorParent*&, void ((anonymous namespace)::HangMonitorParent::*)())
Unexecuted instantiation: ProcessHangMonitor.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<(anonymous namespace)::HangMonitorParent*>::Type, void ((anonymous namespace)::HangMonitorParent::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<(anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)()>(char const*, (anonymous namespace)::HangMonitorParent*&&, void ((anonymous namespace)::HangMonitorParent::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<GMPTestMonitor*>::Type, void (GMPTestMonitor::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<GMPTestMonitor*, void (GMPTestMonitor::*)()>(char const*, GMPTestMonitor*&&, void (GMPTestMonitor::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<GMPVideoDecoderProxy*&>::Type, void (GMPVideoDecoderProxy::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<GMPVideoDecoderProxy*&, void (GMPVideoDecoderProxy::*)()>(char const*, GMPVideoDecoderProxy*&, void (GMPVideoDecoderProxy::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<GMPRemoveTest*>::Type, void (GMPRemoveTest::*)(), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<GMPRemoveTest*, void (GMPRemoveTest::*)()>(char const*, GMPRemoveTest*&&, void (GMPRemoveTest::*)())
1469
1470
template<typename PtrType, typename Method>
1471
already_AddRefed<detail::NonOwningCancelableRunnableMethod<PtrType, Method>>
1472
NewNonOwningCancelableRunnableMethod(const char* aName, PtrType&& aPtr,
1473
                                     Method aMethod)
1474
0
{
1475
0
  return do_AddRef(
1476
0
    new detail::NonOwningCancelableRunnableMethodImpl<PtrType, Method>(
1477
0
      aName, std::forward<PtrType>(aPtr), aMethod));
1478
0
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ipc::MessageChannel*>::Type, void (mozilla::ipc::MessageChannel::*)(), false, (mozilla::RunnableKind)1>::base_type> mozilla::NewNonOwningCancelableRunnableMethod<mozilla::ipc::MessageChannel*, void (mozilla::ipc::MessageChannel::*)()>(char const*, mozilla::ipc::MessageChannel*&&, void (mozilla::ipc::MessageChannel::*)())
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::plugins::PluginInstanceChild*>::Type, void (mozilla::plugins::PluginInstanceChild::*)(), false, (mozilla::RunnableKind)1>::base_type> mozilla::NewNonOwningCancelableRunnableMethod<mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)()>(char const*, mozilla::plugins::PluginInstanceChild*&&, void (mozilla::plugins::PluginInstanceChild::*)())
1479
1480
template<typename PtrType, typename Method>
1481
already_AddRefed<detail::NonOwningIdleRunnableMethod<PtrType, Method>>
1482
NewNonOwningIdleRunnableMethod(const char* aName,
1483
                               PtrType&& aPtr,
1484
                               Method aMethod)
1485
{
1486
  return do_AddRef(
1487
    new detail::NonOwningIdleRunnableMethodImpl<PtrType, Method>(
1488
      aName, std::forward<PtrType>(aPtr), aMethod));
1489
}
1490
1491
template<typename PtrType, typename Method>
1492
already_AddRefed<detail::NonOwningIdleRunnableMethodWithTimer<PtrType, Method>>
1493
NewNonOwningIdleRunnableMethodWithTimer(const char* aName,
1494
                                        PtrType&& aPtr,
1495
                                        Method aMethod)
1496
{
1497
  return do_AddRef(
1498
    new detail::NonOwningIdleRunnableMethodWithTimerImpl<PtrType, Method>(
1499
      aName, std::forward<PtrType>(aPtr), aMethod));
1500
}
1501
1502
// Similar to NewRunnableMethod. Call like so:
1503
// nsCOMPtr<nsIRunnable> event =
1504
//   NewRunnableMethod<Types,...>(myObject, &MyClass::HandleEvent, myArg1,...);
1505
// 'Types' are the stored type for each argument, see ParameterStorage for details.
1506
template<typename... Storages, typename PtrType, typename Method, typename... Args>
1507
already_AddRefed<detail::OwningRunnableMethod<PtrType, Method>>
1508
NewRunnableMethod(const char* aName, PtrType&& aPtr, Method aMethod, Args&&... aArgs)
1509
0
{
1510
0
  static_assert(sizeof...(Storages) == sizeof...(Args),
1511
0
                "<Storages...> size should be equal to number of arguments");
1512
0
  return do_AddRef(
1513
0
    new detail::OwningRunnableMethodImpl<PtrType, Method, Storages...>(
1514
0
      aName, std::forward<PtrType>(aPtr), aMethod, std::forward<Args>(aArgs)...));
1515
0
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<bool>*>::Type, void (mozilla::detail::Listener<bool>::*)(bool&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool&&, mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(bool&&), bool>(char const*, mozilla::detail::Listener<bool>*&&, void (mozilla::detail::Listener<bool>::*)(bool&&), bool&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::Dashboard*&>::Type, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::ConnectionData>, mozilla::net::Dashboard*&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), mozilla::net::ConnectionData*>(char const*, mozilla::net::Dashboard*&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), mozilla::net::ConnectionData*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::LookupHelper*>::Type, nsresult (mozilla::net::LookupHelper::*)(mozilla::net::LookupArgument*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::LookupArgument>, mozilla::net::LookupHelper*, nsresult (mozilla::net::LookupHelper::*)(mozilla::net::LookupArgument*), RefPtr<mozilla::net::LookupArgument>&>(char const*, mozilla::net::LookupHelper*&&, nsresult (mozilla::net::LookupHelper::*)(mozilla::net::LookupArgument*), RefPtr<mozilla::net::LookupArgument>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::Dashboard*>::Type, nsresult (mozilla::net::Dashboard::*)(mozilla::net::SocketData*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::SocketData>, mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::SocketData*), RefPtr<mozilla::net::SocketData>&>(char const*, mozilla::net::Dashboard*&&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::SocketData*), RefPtr<mozilla::net::SocketData>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::Dashboard*>::Type, nsresult (mozilla::net::Dashboard::*)(mozilla::net::HttpData*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::HttpData>, mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::HttpData*), RefPtr<mozilla::net::HttpData>&>(char const*, mozilla::net::Dashboard*&&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::HttpData*), RefPtr<mozilla::net::HttpData>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::Dashboard*>::Type, nsresult (mozilla::net::Dashboard::*)(mozilla::net::WebSocketRequest*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::WebSocketRequest>, mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::WebSocketRequest*), RefPtr<mozilla::net::WebSocketRequest>&>(char const*, mozilla::net::Dashboard*&&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::WebSocketRequest*), RefPtr<mozilla::net::WebSocketRequest>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::Dashboard*>::Type, nsresult (mozilla::net::Dashboard::*)(mozilla::net::DnsData*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::DnsData>, mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::DnsData*), RefPtr<mozilla::net::DnsData>&>(char const*, mozilla::net::Dashboard*&&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::DnsData*), RefPtr<mozilla::net::DnsData>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::Dashboard*>::Type, nsresult (mozilla::net::Dashboard::*)(mozilla::net::RcwnData*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::RcwnData>, mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::RcwnData*), RefPtr<mozilla::net::RcwnData>&>(char const*, mozilla::net::Dashboard*&&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::RcwnData*), RefPtr<mozilla::net::RcwnData>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::Dashboard*>::Type, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::ConnectionData>, mozilla::net::Dashboard*, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), RefPtr<mozilla::net::ConnectionData>&>(char const*, mozilla::net::Dashboard*&&, nsresult (mozilla::net::Dashboard::*)(mozilla::net::ConnectionData*), RefPtr<mozilla::net::ConnectionData>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::CacheEntry*>::Type, void (mozilla::net::CacheEntry::*)(double), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<double, mozilla::net::CacheEntry*, void (mozilla::net::CacheEntry::*)(double), double&>(char const*, mozilla::net::CacheEntry*&&, void (mozilla::net::CacheEntry::*)(double), double&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::net::CacheFileIOManager>&>::Type, nsresult (mozilla::net::CacheFileIOManager::*)(nsILoadContextInfo*, bool, nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsCOMPtr<nsILoadContextInfo>, bool, nsTString<char16_t>, RefPtr<mozilla::net::CacheFileIOManager>&, nsresult (mozilla::net::CacheFileIOManager::*)(nsILoadContextInfo*, bool, nsTSubstring<char16_t> const&), nsILoadContextInfo*&, bool&, nsTSubstring<char16_t> const&>(char const*, RefPtr<mozilla::net::CacheFileIOManager>&, nsresult (mozilla::net::CacheFileIOManager::*)(nsILoadContextInfo*, bool, nsTSubstring<char16_t> const&), nsILoadContextInfo*&, bool&, nsTSubstring<char16_t> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::AltSvcMapping*>::Type, void (mozilla::net::AltSvcMapping::*)(nsTString<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char>, mozilla::net::AltSvcMapping*, void (mozilla::net::AltSvcMapping::*)(nsTString<char> const&), nsTString<char>&>(char const*, mozilla::net::AltSvcMapping*&&, void (mozilla::net::AltSvcMapping::*)(nsTString<char> const&), nsTString<char>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBackgroundChannelChild*>::Type, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const, mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&>(char const*, mozilla::net::HttpBackgroundChannelChild*&&, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBackgroundChannelChild*>::Type, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::TimeStamp const, mozilla::net::nsHttpHeaderArray const, mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&), nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&>(char const*, mozilla::net::HttpBackgroundChannelChild*&&, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&), nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBackgroundChannelChild*>::Type, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(long const&, long const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<long const, long const, mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(long const&, long const&), long const&, long const&>(char const*, mozilla::net::HttpBackgroundChannelChild*&&, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(long const&, long const&), long const&, long const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBackgroundChannelChild*>::Type, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult const, mozilla::net::HttpBackgroundChannelChild*, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&), nsresult const&>(char const*, mozilla::net::HttpBackgroundChannelChild*&&, mozilla::ipc::IPCResult (mozilla::net::HttpBackgroundChannelChild::*)(nsresult const&), nsresult const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBackgroundChannelParent*>::Type, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult const, nsresult const, unsigned long const, unsigned int const, nsTString<char> const, mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&), nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBackgroundChannelParent*>::Type, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult const, mozilla::net::ResourceTimingStruct const, mozilla::net::nsHttpHeaderArray const, mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&), nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&), nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBackgroundChannelParent*>::Type, bool (mozilla::net::HttpBackgroundChannelParent::*)(long const&, long const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<long const, long const, mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(long const&, long const&), long const&, long const&>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)(long const&, long const&), long const&, long const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBackgroundChannelParent*>::Type, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult const, mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&), nsresult const&>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsresult const&), nsresult const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBackgroundChannelParent*>::Type, bool (mozilla::net::HttpBackgroundChannelParent::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(bool), bool&>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)(bool), bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBackgroundChannelParent*>::Type, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char> const, nsTString<char> const, nsTString<char> const, mozilla::net::HttpBackgroundChannelParent*, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&>(char const*, mozilla::net::HttpBackgroundChannelParent*&&, bool (mozilla::net::HttpBackgroundChannelParent::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpBaseChannel*>::Type, void (mozilla::net::HttpBaseChannel::*)(nsresult), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult, mozilla::net::HttpBaseChannel*, void (mozilla::net::HttpBaseChannel::*)(nsresult), nsresult&>(char const*, mozilla::net::HttpBaseChannel*&&, void (mozilla::net::HttpBaseChannel::*)(nsresult), nsresult&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpChannelChild*>::Type, nsresult (mozilla::net::HttpBaseChannel::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char> const, nsTString<char> const, nsTString<char> const, mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpBaseChannel::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), nsTString<char> const&, nsTString<char> const&, nsTString<char> const&>(char const*, mozilla::net::HttpChannelChild*&&, nsresult (mozilla::net::HttpBaseChannel::*)(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&), nsTString<char> const&, nsTString<char> const&, nsTString<char> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpChannelChild*>::Type, nsresult (mozilla::net::HttpChannelChild::*)(nsresult), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult, mozilla::net::HttpChannelChild*, nsresult (mozilla::net::HttpChannelChild::*)(nsresult), nsresult const&>(char const*, mozilla::net::HttpChannelChild*&&, nsresult (mozilla::net::HttpChannelChild::*)(nsresult), nsresult const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::net::HttpBackgroundChannelChild>&>::Type, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::HttpChannelChild>, RefPtr<mozilla::net::HttpBackgroundChannelChild>&, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), RefPtr<mozilla::net::HttpChannelChild> >(char const*, RefPtr<mozilla::net::HttpBackgroundChannelChild>&, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), RefPtr<mozilla::net::HttpChannelChild>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpChannelChild*>::Type, void (mozilla::net::HttpChannelChild::*)(nsresult const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult, mozilla::net::HttpChannelChild*, void (mozilla::net::HttpChannelChild::*)(nsresult const&), nsresult const&>(char const*, mozilla::net::HttpChannelChild*&&, void (mozilla::net::HttpChannelChild::*)(nsresult const&), nsresult const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::net::HttpBackgroundChannelChild>&>::Type, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::net::HttpChannelChild>, RefPtr<mozilla::net::HttpBackgroundChannelChild>&, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), RefPtr<mozilla::net::HttpChannelChild>&>(char const*, RefPtr<mozilla::net::HttpBackgroundChannelChild>&, nsresult (mozilla::net::HttpBackgroundChannelChild::*)(mozilla::net::HttpChannelChild*), RefPtr<mozilla::net::HttpChannelChild>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::HttpChannelChild*>::Type, void (mozilla::net::HttpBaseChannel::*)(nsresult), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult, mozilla::net::HttpChannelChild*, void (mozilla::net::HttpBaseChannel::*)(nsresult), nsresult&>(char const*, mozilla::net::HttpChannelChild*&&, void (mozilla::net::HttpBaseChannel::*)(nsresult), nsresult&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsIInterceptedChannel*&>::Type, nsresult (nsIInterceptedChannel::*)(nsresult), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult, nsIInterceptedChannel*&, nsresult (nsIInterceptedChannel::*)(nsresult), nsresult const&>(char const*, nsIInterceptedChannel*&, nsresult (nsIInterceptedChannel::*)(nsresult), nsresult const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::WebSocketChannel*>::Type, void (mozilla::net::WebSocketChannel::*)(nsresult), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult, mozilla::net::WebSocketChannel*, void (mozilla::net::WebSocketChannel::*)(nsresult), nsresult&>(char const*, mozilla::net::WebSocketChannel*&&, void (mozilla::net::WebSocketChannel::*)(nsresult), nsresult&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::dom::ContentChild>&>::Type, bool (mozilla::dom::PContentChild::*)(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&, RefPtr<mozilla::dom::ContentChild>&, bool (mozilla::dom::PContentChild::*)(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> const&), mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> >(char const*, RefPtr<mozilla::dom::ContentChild>&, bool (mozilla::dom::PContentChild::*)(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> const&), mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsJARChannel>&>::Type, nsresult (nsJARChannel::*)(nsJARInputThunk*, bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsJARInputThunk>, bool, RefPtr<nsJARChannel>&, nsresult (nsJARChannel::*)(nsJARInputThunk*, bool), RefPtr<nsJARInputThunk>&, bool>(char const*, RefPtr<nsJARChannel>&, nsresult (nsJARChannel::*)(nsJARInputThunk*, bool), RefPtr<nsJARInputThunk>&, bool&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsJARChannel>&>::Type, nsresult (nsJARChannel::*)(nsresult, bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult, bool, RefPtr<nsJARChannel>&, nsresult (nsJARChannel::*)(nsresult, bool), nsresult&, bool>(char const*, RefPtr<nsJARChannel>&, nsresult (nsJARChannel::*)(nsresult, bool), nsresult&, bool&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsJARChannel*>::Type, void (nsJARChannel::*)(unsigned long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, nsJARChannel*, void (nsJARChannel::*)(unsigned long), unsigned long>(char const*, nsJARChannel*&&, void (nsJARChannel::*)(unsigned long), unsigned long&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::storage::AsyncExecuteStatements*>::Type, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozIStorageError*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsCOMPtr<mozIStorageError>, mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozIStorageError*), mozIStorageError*&>(char const*, mozilla::storage::AsyncExecuteStatements*&&, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozIStorageError*), mozIStorageError*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::storage::AsyncExecuteStatements*>::Type, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozilla::storage::ResultSet*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::storage::ResultSet>, mozilla::storage::AsyncExecuteStatements*, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozilla::storage::ResultSet*), already_AddRefed<mozilla::storage::ResultSet> >(char const*, mozilla::storage::AsyncExecuteStatements*&&, nsresult (mozilla::storage::AsyncExecuteStatements::*)(mozilla::storage::ResultSet*), already_AddRefed<mozilla::storage::ResultSet>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::storage::Connection>&>::Type, nsresult (mozilla::storage::Connection::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char> const, RefPtr<mozilla::storage::Connection>&, nsresult (mozilla::storage::Connection::*)(nsTSubstring<char> const&), nsTLiteralString<char> const&>(char const*, RefPtr<mozilla::storage::Connection>&, nsresult (mozilla::storage::Connection::*)(nsTSubstring<char> const&), nsTLiteralString<char> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::VideoFrameConverter*>::Type, void (mozilla::VideoFrameConverter::*)(mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::layers::Image>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool, mozilla::VideoFrameConverter*, void (mozilla::VideoFrameConverter::*)(mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool), mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, bool&>(char const*, mozilla::VideoFrameConverter*&&, void (mozilla::VideoFrameConverter::*)(mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool), mozilla::layers::Image*&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::CompositorBridgeParentBase>&>::Type, void (mozilla::layers::CompositorBridgeParentBase::*)(mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, int, RefPtr<mozilla::layers::CompositorBridgeParentBase>&, void (mozilla::layers::CompositorBridgeParentBase::*)(mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, bool), mozilla::layers::LayersId&, mozilla::layers::LayersObserverEpoch&, bool&>(char const*, RefPtr<mozilla::layers::CompositorBridgeParentBase>&, void (mozilla::layers::CompositorBridgeParentBase::*)(mozilla::layers::LayersId, mozilla::layers::LayersObserverEpoch, bool), mozilla::layers::LayersId&, mozilla::layers::LayersObserverEpoch&, bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::AsyncPanZoomController*>::Type, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>, mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&>(char const*, mozilla::layers::AsyncPanZoomController*&&, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::APZCTreeManager*>::Type, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ScrollableLayerGuid, mozilla::Maybe<mozilla::layers::ZoomConstraints>, mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&), mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&>(char const*, mozilla::layers::APZCTreeManager*&&, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&), mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::APZCTreeManager>&>::Type, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&), mozilla::layers::LayersId&, mozilla::layers::LayersId&, mozilla::layers::FocusTarget const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&), mozilla::layers::LayersId&, mozilla::layers::LayersId&, mozilla::layers::FocusTarget const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::APZCTreeManager>&>::Type, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager>, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> const&), mozilla::layers::LayersId&, RefPtr<mozilla::layers::APZCTreeManager> >(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::APZCTreeManager::*)(mozilla::layers::LayersId, RefPtr<mozilla::layers::APZCTreeManager> const&), mozilla::layers::LayersId&, RefPtr<mozilla::layers::APZCTreeManager>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::OverscrollHandoffChain const*>::Type, void (mozilla::layers::OverscrollHandoffChain::*)(mozilla::layers::AsyncPanZoomController const*) const, true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::AsyncPanZoomController*, mozilla::layers::OverscrollHandoffChain const*, void (mozilla::layers::OverscrollHandoffChain::*)(mozilla::layers::AsyncPanZoomController const*) const, mozilla::layers::AsyncPanZoomController*>(char const*, mozilla::layers::OverscrollHandoffChain const*&&, void (mozilla::layers::OverscrollHandoffChain::*)(mozilla::layers::AsyncPanZoomController const*) const, mozilla::layers::AsyncPanZoomController*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::AsyncPanZoomController*>::Type, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&, RefPtr<mozilla::layers::OverscrollHandoffChain const> const&, RefPtr<mozilla::layers::AsyncPanZoomController const> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>, RefPtr<mozilla::layers::OverscrollHandoffChain const>, RefPtr<mozilla::layers::AsyncPanZoomController const>, mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&, RefPtr<mozilla::layers::OverscrollHandoffChain const> const&, RefPtr<mozilla::layers::AsyncPanZoomController const> const&), mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, RefPtr<mozilla::layers::OverscrollHandoffChain const>&, RefPtr<mozilla::layers::AsyncPanZoomController const>&>(char const*, mozilla::layers::AsyncPanZoomController*&&, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&, RefPtr<mozilla::layers::OverscrollHandoffChain const> const&, RefPtr<mozilla::layers::AsyncPanZoomController const> const&), mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, RefPtr<mozilla::layers::OverscrollHandoffChain const>&, RefPtr<mozilla::layers::AsyncPanZoomController const>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::GeckoContentController>&>::Type, void (mozilla::layers::GeckoContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long, RefPtr<mozilla::layers::GeckoContentController>&, void (mozilla::layers::GeckoContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, mozilla::layers::ScrollableLayerGuid, unsigned long>(char const*, RefPtr<mozilla::layers::GeckoContentController>&, void (mozilla::layers::GeckoContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, mozilla::layers::ScrollableLayerGuid&&, unsigned long&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::AsyncPanZoomController*>::Type, void (mozilla::layers::AsyncPanZoomController::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(bool), bool&>(char const*, mozilla::layers::AsyncPanZoomController*&&, void (mozilla::layers::AsyncPanZoomController::*)(bool), bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::AsyncPanZoomController*>::Type, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::layers::FrameMetrics const&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::FrameMetrics, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>, mozilla::layers::AsyncPanZoomController*, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::layers::FrameMetrics const&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), mozilla::layers::FrameMetrics&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&>(char const*, mozilla::layers::AsyncPanZoomController*&&, void (mozilla::layers::AsyncPanZoomController::*)(mozilla::layers::FrameMetrics const&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> const&), mozilla::layers::FrameMetrics&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::InputQueue*>::Type, void (mozilla::layers::InputQueue::*)(unsigned long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, mozilla::layers::InputQueue*, void (mozilla::layers::InputQueue::*)(unsigned long), unsigned long>(char const*, mozilla::layers::InputQueue*&&, void (mozilla::layers::InputQueue::*)(unsigned long), unsigned long&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::IAPZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&, mozilla::layers::ZoomToRectBehavior>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), mozilla::layers::ScrollableLayerGuid&&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&, mozilla::layers::ZoomToRectBehavior&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::ChromeProcessController*>::Type, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long, mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short, mozilla::layers::ScrollableLayerGuid const&, unsigned long), mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::ChromeProcessController*>::Type, void (mozilla::layers::ChromeProcessController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::ChromeProcessController*>::Type, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int, mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::ChromeProcessController*>::Type, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&, nsTString<char16_t> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, nsTString<char16_t>, mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&, nsTString<char16_t> const&), unsigned long const&, nsTString<char16_t> const&>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&, nsTString<char16_t> const&), unsigned long const&, nsTString<char16_t> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::ChromeProcessController*>::Type, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&), unsigned long const&>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)(unsigned long const&), unsigned long const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::ChromeProcessController*>::Type, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ScrollableLayerGuid, mozilla::layers::ChromeProcessController*, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&), mozilla::layers::ScrollableLayerGuid const&>(char const*, mozilla::layers::ChromeProcessController*&&, void (mozilla::layers::ChromeProcessController::*)(mozilla::layers::ScrollableLayerGuid const&), mozilla::layers::ScrollableLayerGuid const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::APZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::KeyboardMap, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), mozilla::layers::KeyboardMap const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), mozilla::layers::KeyboardMap const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::APZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::APZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, bool, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), unsigned long const&, bool const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), unsigned long const&, bool const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::APZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> >, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid>&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::APZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(float), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<float, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(float), float const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(float), float const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::APZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, StoreCopyPassByRRef<nsTArray<unsigned int> >, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), unsigned long const&, nsTArray<unsigned int> >(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), unsigned long const&, nsTArray<unsigned int>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::APZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::APZCTreeManager>&>::Type, bool (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float>, RefPtr<mozilla::layers::APZCTreeManager>&, bool (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&), mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, bool (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&), mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::APZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ScrollableLayerGuid, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&), mozilla::layers::ScrollableLayerGuid const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&), mozilla::layers::ScrollableLayerGuid const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::APZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(bool), bool const&>(char const*, RefPtr<mozilla::layers::APZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(bool), bool const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::CompositorBridgeParentBase*>::Type, bool (mozilla::layers::CompositorBridgeParentBase::*)(base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int, mozilla::layers::CompositorBridgeParentBase*, bool (mozilla::layers::CompositorBridgeParentBase::*)(base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int), base::FileDescriptor&, base::FileDescriptor&, mozilla::layers::LayersId&, unsigned int&>(char const*, mozilla::layers::CompositorBridgeParentBase*&&, bool (mozilla::layers::CompositorBridgeParentBase::*)(base::FileDescriptor, base::FileDescriptor, mozilla::layers::LayersId, unsigned int), base::FileDescriptor&, base::FileDescriptor&, mozilla::layers::LayersId&, unsigned int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::CompositorBridgeParentBase*>::Type, bool (mozilla::layers::CompositorBridgeParentBase::*)(unsigned long, unsigned int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, unsigned int, mozilla::layers::CompositorBridgeParentBase*, bool (mozilla::layers::CompositorBridgeParentBase::*)(unsigned long, unsigned int), unsigned long&, unsigned int&>(char const*, mozilla::layers::CompositorBridgeParentBase*&&, bool (mozilla::layers::CompositorBridgeParentBase::*)(unsigned long, unsigned int), unsigned long&, unsigned int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::CompositorBridgeParent*>::Type, void (mozilla::layers::CompositorBridgeParent::*)(int, int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int, int, mozilla::layers::CompositorBridgeParent*, void (mozilla::layers::CompositorBridgeParent::*)(int, int), int&, int&>(char const*, mozilla::layers::CompositorBridgeParent*&&, void (mozilla::layers::CompositorBridgeParent::*)(int, int), int&, int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::APZCTreeManager*>::Type, void (mozilla::layers::APZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> >, mozilla::layers::APZCTreeManager*, void (mozilla::layers::APZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&>(char const*, mozilla::layers::APZCTreeManager*&&, void (mozilla::layers::APZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::CompositorManagerParent>&>::Type, void (mozilla::layers::CompositorManagerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&, RefPtr<mozilla::layers::CompositorManagerParent>&, void (mozilla::layers::CompositorManagerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&), mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> >(char const*, RefPtr<mozilla::layers::CompositorManagerParent>&, void (mozilla::layers::CompositorManagerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&), mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::CompositorVsyncScheduler*>::Type, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::TimeStamp, mozilla::layers::CompositorVsyncScheduler*, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), mozilla::TimeStamp&>(char const*, mozilla::layers::CompositorVsyncScheduler*&&, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), mozilla::TimeStamp&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::ImageBridgeChild>&>::Type, void (mozilla::layers::ImageBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&, RefPtr<mozilla::layers::ImageBridgeChild>&, void (mozilla::layers::ImageBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&), mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> >(char const*, RefPtr<mozilla::layers::ImageBridgeChild>&, void (mozilla::layers::ImageBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&), mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::ImageBridgeParent>&>::Type, void (mozilla::layers::ImageBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&, RefPtr<mozilla::layers::ImageBridgeParent>&, void (mozilla::layers::ImageBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&), mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> >(char const*, RefPtr<mozilla::layers::ImageBridgeParent>&, void (mozilla::layers::ImageBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&), mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::RemoteContentController*>::Type, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long, mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long), mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::GeckoContentController::TapType, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::ScrollableLayerGuid, unsigned long), mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::RemoteContentController*>::Type, void (mozilla::layers::RemoteContentController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short, mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(mozilla::PinchGestureInput::PinchGestureType, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>, unsigned short), mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::RemoteContentController*>::Type, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ScrollableLayerGuid, mozilla::layers::GeckoContentController::APZStateChange, int, mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange, int), mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::RemoteContentController*>::Type, void (mozilla::layers::RemoteContentController::*)(float, float, bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<float, float, bool, mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(float, float, bool), float&, float&, bool&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(float, float, bool), float&, float&, bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::RemoteContentController*>::Type, void (mozilla::layers::RemoteContentController::*)(unsigned long const&, nsTString<char16_t> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, nsTString<char16_t>, mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(unsigned long const&, nsTString<char16_t> const&), unsigned long const&, nsTString<char16_t> const&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(unsigned long const&, nsTString<char16_t> const&), unsigned long const&, nsTString<char16_t> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::RemoteContentController*>::Type, void (mozilla::layers::RemoteContentController::*)(unsigned long const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(unsigned long const&), unsigned long const&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(unsigned long const&), unsigned long const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::RemoteContentController*>::Type, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ScrollableLayerGuid, mozilla::layers::RemoteContentController*, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&), mozilla::layers::ScrollableLayerGuid const&>(char const*, mozilla::layers::RemoteContentController*&&, void (mozilla::layers::RemoteContentController::*)(mozilla::layers::ScrollableLayerGuid const&), mozilla::layers::ScrollableLayerGuid const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::UiCompositorControllerChild>&>::Type, void (mozilla::layers::UiCompositorControllerChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&, RefPtr<mozilla::layers::UiCompositorControllerChild>&, void (mozilla::layers::UiCompositorControllerChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&), mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild> >(char const*, RefPtr<mozilla::layers::UiCompositorControllerChild>&, void (mozilla::layers::UiCompositorControllerChild::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&), mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::UiCompositorControllerParent>&>::Type, void (mozilla::layers::UiCompositorControllerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&, RefPtr<mozilla::layers::UiCompositorControllerParent>&, void (mozilla::layers::UiCompositorControllerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&), mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> >(char const*, RefPtr<mozilla::layers::UiCompositorControllerParent>&, void (mozilla::layers::UiCompositorControllerParent::*)(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&), mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::UiCompositorControllerParent*>::Type, void (mozilla::layers::UiCompositorControllerParent::*)(int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int, mozilla::layers::UiCompositorControllerParent*, void (mozilla::layers::UiCompositorControllerParent::*)(int), int&>(char const*, mozilla::layers::UiCompositorControllerParent*&&, void (mozilla::layers::UiCompositorControllerParent::*)(int), int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gfx::VsyncBridgeChild>&>::Type, void (mozilla::gfx::VsyncBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&, RefPtr<mozilla::gfx::VsyncBridgeChild>&, void (mozilla::gfx::VsyncBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&), mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild> >(char const*, RefPtr<mozilla::gfx::VsyncBridgeChild>&, void (mozilla::gfx::VsyncBridgeChild::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&), mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gfx::VsyncBridgeParent>&>::Type, void (mozilla::gfx::VsyncBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&, RefPtr<mozilla::gfx::VsyncBridgeParent>&, void (mozilla::gfx::VsyncBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&), mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> >(char const*, RefPtr<mozilla::gfx::VsyncBridgeParent>&, void (mozilla::gfx::VsyncBridgeParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&), mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gfx::VRDisplayHost*>::Type, void (mozilla::gfx::VRDisplayHost::*)(mozilla::layers::SurfaceDescriptor const&, unsigned long, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, mozilla::gfx::VRDisplayHost*, void (mozilla::gfx::VRDisplayHost::*)(mozilla::layers::SurfaceDescriptor const&, unsigned long, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&), mozilla::layers::SurfaceDescriptor const&, unsigned long&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&>(char const*, mozilla::gfx::VRDisplayHost*&&, void (mozilla::gfx::VRDisplayHost::*)(mozilla::layers::SurfaceDescriptor const&, unsigned long, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&), mozilla::layers::SurfaceDescriptor const&, unsigned long&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gfx::impl::VRControllerOpenVR*>::Type, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<vr::IVRSystem*, unsigned int, double, double, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise>, mozilla::gfx::impl::VRControllerOpenVR*, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), vr::IVRSystem*&, unsigned int&, double&, double, unsigned long&, mozilla::gfx::VRManagerPromise const&>(char const*, mozilla::gfx::impl::VRControllerOpenVR*&&, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), vr::IVRSystem*&, unsigned int&, double&, double&&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gfx::VRManager*&>::Type, void (mozilla::gfx::VRManager::*)(mozilla::gfx::VRManagerPromise const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise>, mozilla::gfx::VRManager*&, void (mozilla::gfx::VRManager::*)(mozilla::gfx::VRManagerPromise const&), mozilla::gfx::VRManagerPromise const&>(char const*, mozilla::gfx::VRManager*&, void (mozilla::gfx::VRManager::*)(mozilla::gfx::VRManagerPromise const&), mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gfx::impl::VRControllerOpenVR*>::Type, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<vr::IVRSystem*, unsigned int, double, double, unsigned long, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise>, mozilla::gfx::impl::VRControllerOpenVR*, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), vr::IVRSystem*&, unsigned int&, double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&>(char const*, mozilla::gfx::impl::VRControllerOpenVR*&&, void (mozilla::gfx::impl::VRControllerOpenVR::*)(vr::IVRSystem*, unsigned int, double, double, unsigned long, mozilla::gfx::VRManagerPromise const&), vr::IVRSystem*&, unsigned int&, double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gfx::VRThread*>::Type, void (mozilla::gfx::VRThread::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::TimeStamp, mozilla::gfx::VRThread*, void (mozilla::gfx::VRThread::*)(mozilla::TimeStamp), mozilla::TimeStamp>(char const*, mozilla::gfx::VRThread*&&, void (mozilla::gfx::VRThread::*)(mozilla::TimeStamp), mozilla::TimeStamp&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gfx::VRGPUParent>&>::Type, void (mozilla::gfx::VRGPUParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&, RefPtr<mozilla::gfx::VRGPUParent>&, void (mozilla::gfx::VRGPUParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&), mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> >(char const*, RefPtr<mozilla::gfx::VRGPUParent>&, void (mozilla::gfx::VRGPUParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&), mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gfx::VRManagerChild*>::Type, void (mozilla::gfx::VRManagerChild::*)(unsigned int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, mozilla::gfx::VRManagerChild*, void (mozilla::gfx::VRManagerChild::*)(unsigned int), unsigned int&>(char const*, mozilla::gfx::VRManagerChild*&&, void (mozilla::gfx::VRManagerChild::*)(unsigned int), unsigned int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gfx::VRManagerChild*>::Type, void (mozilla::gfx::VRManagerChild::*)(unsigned int, mozilla::dom::VREventObserver*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, RefPtr<mozilla::dom::VREventObserver>, mozilla::gfx::VRManagerChild*, void (mozilla::gfx::VRManagerChild::*)(unsigned int, mozilla::dom::VREventObserver*), unsigned int, mozilla::dom::VREventObserver*&>(char const*, mozilla::gfx::VRManagerChild*&&, void (mozilla::gfx::VRManagerChild::*)(unsigned int, mozilla::dom::VREventObserver*), unsigned int&&, mozilla::dom::VREventObserver*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gfx::VRManagerParent>&>::Type, void (mozilla::gfx::VRManagerParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&, RefPtr<mozilla::gfx::VRManagerParent>&, void (mozilla::gfx::VRManagerParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&), mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> >(char const*, RefPtr<mozilla::gfx::VRManagerParent>&, void (mozilla::gfx::VRManagerParent::*)(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&), mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::wr::RenderThread*>::Type, void (mozilla::wr::RenderThread::*)(mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>, mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> const&), mozilla::wr::MemoryReport&, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&>(char const*, mozilla::wr::RenderThread*&&, void (mozilla::wr::RenderThread::*)(mozilla::wr::MemoryReport, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> const&), mozilla::wr::MemoryReport&, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::wr::RenderThread*>::Type, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::wr::WrWindowId, mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId), mozilla::wr::WrWindowId&>(char const*, mozilla::wr::RenderThread*&&, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId), mozilla::wr::WrWindowId&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::wr::RenderThread*>::Type, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&, mozilla::wr::RenderThread*, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >), mozilla::wr::WrWindowId&, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > >(char const*, mozilla::wr::RenderThread*&&, void (mozilla::wr::RenderThread::*)(mozilla::wr::WrWindowId, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >), mozilla::wr::WrWindowId&, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::wr::RenderTextureHostWrapper*&>::Type, void (mozilla::wr::RenderTextureHostWrapper::*)(mozilla::wr::RenderTextureHost*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::wr::RenderTextureHost*, mozilla::wr::RenderTextureHostWrapper*&, void (mozilla::wr::RenderTextureHostWrapper::*)(mozilla::wr::RenderTextureHost*), RefPtr<mozilla::wr::RenderTextureHost>&>(char const*, mozilla::wr::RenderTextureHostWrapper*&, void (mozilla::wr::RenderTextureHostWrapper::*)(mozilla::wr::RenderTextureHost*), RefPtr<mozilla::wr::RenderTextureHost>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIWidget>&>::Type, nsresult (nsIWidget::*)(int, int, unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int, int, unsigned int, nsTString<char16_t>, nsTString<char16_t>, nsIObserver*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(int, int, unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*), int&, int&, int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(int, int, unsigned int, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*), int&, int&, int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIWidget>&>::Type, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, int, int, nsIObserver*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, unsigned int, nsIObserver*), mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, int&, int&, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, unsigned int, nsIObserver*), mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, int&, int&, nsIObserver*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIWidget>&>::Type, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*), mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*), mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, nsIObserver*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIWidget>&>::Type, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*), mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int&, double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int, double, double, double, unsigned int, unsigned int, nsIObserver*), mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, unsigned int&, double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIWidget>&>::Type, nsresult (nsIWidget::*)(unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*), unsigned int&, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double&, unsigned int&, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(unsigned int, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double, unsigned int, nsIObserver*), unsigned int&, nsIWidget::TouchPointerState&&, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, double&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIWidget>&>::Type, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*), mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool&, nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool, nsIObserver*), mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, bool&, nsIObserver*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIWidget>&>::Type, nsresult (nsIWidget::*)(nsIObserver*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsIObserver*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(nsIObserver*), nsIObserver*&>(char const*, nsCOMPtr<nsIWidget>&, nsresult (nsIWidget::*)(nsIObserver*), nsIObserver*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::TimedMetadata>*>::Type, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(mozilla::TimedMetadata&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::TimedMetadata&&, mozilla::detail::Listener<mozilla::TimedMetadata>*, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(mozilla::TimedMetadata&&), mozilla::TimedMetadata>(char const*, mozilla::detail::Listener<mozilla::TimedMetadata>*&&, void (mozilla::detail::Listener<mozilla::TimedMetadata>::*)(mozilla::TimedMetadata&&), mozilla::TimedMetadata&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::BlobCallback*>::Type, void (mozilla::dom::BlobCallback::*)(mozilla::dom::Blob*, char const*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::Blob*, char const*, mozilla::dom::BlobCallback*, void (mozilla::dom::BlobCallback::*)(mozilla::dom::Blob*, char const*), decltype(nullptr), decltype(nullptr)>(char const*, mozilla::dom::BlobCallback*&&, void (mozilla::dom::BlobCallback::*)(mozilla::dom::Blob*, char const*), decltype(nullptr)&&, decltype(nullptr)&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLImageElement*>::Type, void (mozilla::dom::HTMLImageElement::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, mozilla::dom::HTMLImageElement*, void (mozilla::dom::HTMLImageElement::*)(bool), bool>(char const*, mozilla::dom::HTMLImageElement*&&, void (mozilla::dom::HTMLImageElement::*)(bool), bool&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLImageElement*&>::Type, void (mozilla::dom::HTMLImageElement::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, mozilla::dom::HTMLImageElement*&, void (mozilla::dom::HTMLImageElement::*)(bool), bool>(char const*, mozilla::dom::HTMLImageElement*&, void (mozilla::dom::HTMLImageElement::*)(bool), bool&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLMediaElement::StreamSizeListener*>::Type, void (mozilla::dom::HTMLMediaElement::StreamSizeListener::*)(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::dom::HTMLMediaElement::StreamSizeListener*, void (mozilla::dom::HTMLMediaElement::StreamSizeListener::*)(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>), mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&>(char const*, mozilla::dom::HTMLMediaElement::StreamSizeListener*&&, void (mozilla::dom::HTMLMediaElement::StreamSizeListener::*)(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>), mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLMediaElement::ChannelLoader*>::Type, void (mozilla::dom::HTMLMediaElement::ChannelLoader::*)(mozilla::dom::HTMLMediaElement*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::HTMLMediaElement*, mozilla::dom::HTMLMediaElement::ChannelLoader*, void (mozilla::dom::HTMLMediaElement::ChannelLoader::*)(mozilla::dom::HTMLMediaElement*), mozilla::dom::HTMLMediaElement*&>(char const*, mozilla::dom::HTMLMediaElement::ChannelLoader*&&, void (mozilla::dom::HTMLMediaElement::ChannelLoader::*)(mozilla::dom::HTMLMediaElement*), mozilla::dom::HTMLMediaElement*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLMediaElement*>::Type, void (mozilla::dom::HTMLMediaElement::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char>, mozilla::dom::HTMLMediaElement*, void (mozilla::dom::HTMLMediaElement::*)(nsTSubstring<char> const&), nsTString<char> >(char const*, mozilla::dom::HTMLMediaElement*&&, void (mozilla::dom::HTMLMediaElement::*)(nsTSubstring<char> const&), nsTString<char>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::DOMMediaStream>&>::Type, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack>, RefPtr<mozilla::DOMMediaStream>&, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), RefPtr<mozilla::dom::MediaStreamTrack>&>(char const*, RefPtr<mozilla::DOMMediaStream>&, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), RefPtr<mozilla::dom::MediaStreamTrack>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::HTMLTrackElement*>::Type, void (mozilla::dom::HTMLTrackElement::*)(nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char16_t> const, mozilla::dom::HTMLTrackElement*, void (mozilla::dom::HTMLTrackElement::*)(nsTSubstring<char16_t> const&), nsTString<char16_t> const&>(char const*, mozilla::dom::HTMLTrackElement*&&, void (mozilla::dom::HTMLTrackElement::*)(nsTSubstring<char16_t> const&), nsTString<char16_t> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::DOMMediaStream::OwnedStreamListener*>::Type, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, mozilla::MediaStream*, int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, RefPtr<mozilla::MediaStream>, int, mozilla::DOMMediaStream::OwnedStreamListener*, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, mozilla::MediaStream*, int), mozilla::MediaStreamGraph*&, int&, mozilla::MediaSegment::Type, mozilla::MediaStream*&, int&>(char const*, mozilla::DOMMediaStream::OwnedStreamListener*&&, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, int, mozilla::MediaSegment::Type, mozilla::MediaStream*, int), mozilla::MediaStreamGraph*&, int&, mozilla::MediaSegment::Type&&, mozilla::MediaStream*&, int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::DOMMediaStream*&>::Type, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::dom::MediaStreamTrack>, mozilla::DOMMediaStream*&, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), RefPtr<mozilla::dom::MediaStreamTrack>&>(char const*, mozilla::DOMMediaStream*&, void (mozilla::DOMMediaStream::*)(mozilla::dom::MediaStreamTrack*), RefPtr<mozilla::dom::MediaStreamTrack>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::DOMMediaStream::OwnedStreamListener*>::Type, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, mozilla::MediaStream*, int, int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaStreamGraph*, RefPtr<mozilla::MediaStream>, int, int, mozilla::DOMMediaStream::OwnedStreamListener*, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, mozilla::MediaStream*, int, int), mozilla::MediaStreamGraph*&, mozilla::MediaStream*&, int&, int&>(char const*, mozilla::DOMMediaStream::OwnedStreamListener*&&, void (mozilla::DOMMediaStream::OwnedStreamListener::*)(mozilla::MediaStreamGraph*, mozilla::MediaStream*, int, int), mozilla::MediaStreamGraph*&, mozilla::MediaStream*&, int&, int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaResourceCallback*>::Type, void (mozilla::MediaResourceCallback::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(bool), bool&>(char const*, mozilla::MediaResourceCallback*&&, void (mozilla::MediaResourceCallback::*)(bool), bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChannelMediaResource*>::Type, void (mozilla::ChannelMediaResource::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, mozilla::ChannelMediaResource*, void (mozilla::ChannelMediaResource::*)(bool), bool>(char const*, mozilla::ChannelMediaResource*&&, void (mozilla::ChannelMediaResource::*)(bool), bool&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaResourceCallback*>::Type, void (mozilla::MediaResourceCallback::*)(nsresult), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult, mozilla::MediaResourceCallback*, void (mozilla::MediaResourceCallback::*)(nsresult), nsresult const&>(char const*, mozilla::MediaResourceCallback*&&, void (mozilla::MediaResourceCallback::*)(nsresult), nsresult const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaDecoderStateMachine*>::Type, void (mozilla::MediaDecoderStateMachine::*)(double), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<double, mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(double), double&>(char const*, mozilla::MediaDecoderStateMachine*&&, void (mozilla::MediaDecoderStateMachine::*)(double), double&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractMirror<double>*&>::Type, void (mozilla::AbstractMirror<double>::*)(double const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<double, mozilla::AbstractMirror<double>*&, void (mozilla::AbstractMirror<double>::*)(double const&), double&>(char const*, mozilla::AbstractMirror<double>*&, void (mozilla::AbstractMirror<double>::*)(double const&), double&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractMirror<bool>*&>::Type, void (mozilla::AbstractMirror<bool>::*)(bool const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, mozilla::AbstractMirror<bool>*&, void (mozilla::AbstractMirror<bool>::*)(bool const&), bool&>(char const*, mozilla::AbstractMirror<bool>*&, void (mozilla::AbstractMirror<bool>::*)(bool const&), bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*&>::Type, void (mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>::*)(mozilla::MediaDecoder::PlayState const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaDecoder::PlayState, mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*&, void (mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>::*)(mozilla::MediaDecoder::PlayState const&), mozilla::MediaDecoder::PlayState&>(char const*, mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*&, void (mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>::*)(mozilla::MediaDecoder::PlayState const&), mozilla::MediaDecoder::PlayState&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*&>::Type, void (mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsMainThreadPtrHandle<nsIPrincipal>, mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*&, void (mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), nsMainThreadPtrHandle<nsIPrincipal>&>(char const*, mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*&, void (mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), nsMainThreadPtrHandle<nsIPrincipal>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::MediaFormatReader>&>::Type, void (mozilla::MediaFormatReader::*)(already_AddRefed<mozilla::layers::KnowsCompositor>), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<already_AddRefed<mozilla::layers::KnowsCompositor>&&, RefPtr<mozilla::MediaFormatReader>&, void (mozilla::MediaFormatReader::*)(already_AddRefed<mozilla::layers::KnowsCompositor>), already_AddRefed<mozilla::layers::KnowsCompositor> >(char const*, RefPtr<mozilla::MediaFormatReader>&, void (mozilla::MediaFormatReader::*)(already_AddRefed<mozilla::layers::KnowsCompositor>), already_AddRefed<mozilla::layers::KnowsCompositor>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*&>::Type, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >, mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*&, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*>(char const*, mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >*&, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractCanonical<mozilla::media::TimeIntervals>*&>::Type, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >, mozilla::AbstractCanonical<mozilla::media::TimeIntervals>*&, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*>(char const*, mozilla::AbstractCanonical<mozilla::media::TimeIntervals>*&, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractCanonical<mozilla::media::TimeUnit>*&>::Type, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >, mozilla::AbstractCanonical<mozilla::media::TimeUnit>*&, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), mozilla::Mirror<mozilla::media::TimeUnit>::Impl*>(char const*, mozilla::AbstractCanonical<mozilla::media::TimeUnit>*&, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), mozilla::Mirror<mozilla::media::TimeUnit>::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractCanonical<bool>*&>::Type, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> >, mozilla::AbstractCanonical<bool>*&, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), mozilla::Mirror<bool>::Impl*>(char const*, mozilla::AbstractCanonical<bool>*&, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), mozilla::Mirror<bool>::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> > >&>::Type, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > >, RefPtr<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> > >&, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> > >&, void (mozilla::AbstractCanonical<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*), mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeIntervals> >&>::Type, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> >, RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeIntervals> >&, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeIntervals> >&, void (mozilla::AbstractCanonical<mozilla::media::TimeIntervals>::*)(mozilla::AbstractMirror<mozilla::media::TimeIntervals>*), mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeUnit> >&>::Type, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> >, RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeUnit> >&, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), mozilla::Mirror<mozilla::media::TimeUnit>::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<mozilla::media::TimeUnit> >&, void (mozilla::AbstractCanonical<mozilla::media::TimeUnit>::*)(mozilla::AbstractMirror<mozilla::media::TimeUnit>*), mozilla::Mirror<mozilla::media::TimeUnit>::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AbstractCanonical<bool> >&>::Type, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> >, RefPtr<mozilla::AbstractCanonical<bool> >&, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), mozilla::Mirror<bool>::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<bool> >&, void (mozilla::AbstractCanonical<bool>::*)(mozilla::AbstractMirror<bool>*), mozilla::Mirror<bool>::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*>::Type, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaPlaybackEvent::EventType&&, mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), mozilla::MediaPlaybackEvent::EventType&>(char const*, mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*&&, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), mozilla::MediaPlaybackEvent::EventType&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*>::Type, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(mozilla::MediaDecoderOwner::NextFrameStatus&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaDecoderOwner::NextFrameStatus&&, mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(mozilla::MediaDecoderOwner::NextFrameStatus&&), mozilla::MediaDecoderOwner::NextFrameStatus&>(char const*, mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>*&&, void (mozilla::detail::Listener<mozilla::MediaDecoderOwner::NextFrameStatus>::*)(mozilla::MediaDecoderOwner::NextFrameStatus&&), mozilla::MediaDecoderOwner::NextFrameStatus&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*>::Type, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(RefPtr<mozilla::AudioData>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::AudioData>&&, mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(RefPtr<mozilla::AudioData>&&), RefPtr<mozilla::AudioData>&>(char const*, mozilla::detail::Listener<RefPtr<mozilla::AudioData> >*&&, void (mozilla::detail::Listener<RefPtr<mozilla::AudioData> >::*)(RefPtr<mozilla::AudioData>&&), RefPtr<mozilla::AudioData>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*>::Type, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(RefPtr<mozilla::VideoData>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::VideoData>&&, mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(RefPtr<mozilla::VideoData>&&), RefPtr<mozilla::VideoData>&>(char const*, mozilla::detail::Listener<RefPtr<mozilla::VideoData> >*&&, void (mozilla::detail::Listener<RefPtr<mozilla::VideoData> >::*)(RefPtr<mozilla::VideoData>&&), RefPtr<mozilla::VideoData>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*&>::Type, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::Maybe<mozilla::media::TimeUnit> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::Maybe<mozilla::media::TimeUnit>, mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*&, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::Maybe<mozilla::media::TimeUnit> const&), mozilla::Maybe<mozilla::media::TimeUnit>&>(char const*, mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >*&, void (mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> >::*)(mozilla::Maybe<mozilla::media::TimeUnit> const&), mozilla::Maybe<mozilla::media::TimeUnit>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*>::Type, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&, mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&), mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>(char const*, mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>*&&, void (mozilla::detail::Listener<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility>::*)(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&), mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState> >&>::Type, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> >, RefPtr<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState> >&, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState> >&, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AbstractCanonical<double> >&>::Type, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> >, RefPtr<mozilla::AbstractCanonical<double> >&, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), mozilla::Mirror<double>::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<double> >&, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), mozilla::Mirror<double>::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> > >&>::Type, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > >, RefPtr<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> > >&, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*>(char const*, RefPtr<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> > >&, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractMirror<mozilla::media::TimeUnit>*&>::Type, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(mozilla::media::TimeUnit const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::media::TimeUnit, mozilla::AbstractMirror<mozilla::media::TimeUnit>*&, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(mozilla::media::TimeUnit const&), mozilla::media::TimeUnit&>(char const*, mozilla::AbstractMirror<mozilla::media::TimeUnit>*&, void (mozilla::AbstractMirror<mozilla::media::TimeUnit>::*)(mozilla::media::TimeUnit const&), mozilla::media::TimeUnit&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>*&>::Type, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> >, mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>*&, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*>(char const*, mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>*&, void (mozilla::AbstractCanonical<mozilla::MediaDecoder::PlayState>::*)(mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState>*), mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractCanonical<double>*&>::Type, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> >, mozilla::AbstractCanonical<double>*&, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), mozilla::Mirror<double>::Impl*>(char const*, mozilla::AbstractCanonical<double>*&, void (mozilla::AbstractCanonical<double>::*)(mozilla::AbstractMirror<double>*), mozilla::Mirror<double>::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >*&>::Type, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > >, mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >*&, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*>(char const*, mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >*&, void (mozilla::AbstractCanonical<nsMainThreadPtrHandle<nsIPrincipal> >::*)(mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> >*), mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaDecoderStateMachine*>::Type, void (mozilla::MediaDecoderStateMachine::*)(mozilla::MediaDecoder*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::MediaDecoder>, mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(mozilla::MediaDecoder*), mozilla::MediaDecoder*&>(char const*, mozilla::MediaDecoderStateMachine*&&, void (mozilla::MediaDecoderStateMachine::*)(mozilla::MediaDecoder*), mozilla::MediaDecoder*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*>::Type, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaPlaybackEvent&&, mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), mozilla::MediaPlaybackEvent&>(char const*, mozilla::detail::Listener<mozilla::MediaPlaybackEvent>*&&, void (mozilla::detail::Listener<mozilla::MediaPlaybackEvent>::*)(mozilla::MediaPlaybackEvent&&), mozilla::MediaPlaybackEvent&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaDecoderStateMachine*>::Type, void (mozilla::MediaDecoderStateMachine::*)(mozilla::VideoDecodeMode), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::VideoDecodeMode, mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(mozilla::VideoDecodeMode), mozilla::VideoDecodeMode&>(char const*, mozilla::MediaDecoderStateMachine*&&, void (mozilla::MediaDecoderStateMachine::*)(mozilla::VideoDecodeMode), mozilla::VideoDecodeMode&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::MediaResult>*>::Type, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(mozilla::MediaResult&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::MediaResult&&, mozilla::detail::Listener<mozilla::MediaResult>*, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(mozilla::MediaResult&&), mozilla::MediaResult const&>(char const*, mozilla::detail::Listener<mozilla::MediaResult>*&&, void (mozilla::detail::Listener<mozilla::MediaResult>::*)(mozilla::MediaResult&&), mozilla::MediaResult const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*>::Type, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&, mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&), nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility&>(char const*, mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>*&&, void (mozilla::detail::Listener<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility>::*)(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&&), nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*>::Type, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(mozilla::DecoderDoctorEvent&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::DecoderDoctorEvent&&, mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(mozilla::DecoderDoctorEvent&&), mozilla::DecoderDoctorEvent&>(char const*, mozilla::detail::Listener<mozilla::DecoderDoctorEvent>*&&, void (mozilla::detail::Listener<mozilla::DecoderDoctorEvent>::*)(mozilla::DecoderDoctorEvent&&), mozilla::DecoderDoctorEvent&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaDecoderStateMachine*>::Type, void (mozilla::MediaDecoderStateMachine::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, mozilla::MediaDecoderStateMachine*, void (mozilla::MediaDecoderStateMachine::*)(bool), bool>(char const*, mozilla::MediaDecoderStateMachine*&&, void (mozilla::MediaDecoderStateMachine::*)(bool), bool&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::GetUserMediaWindowListener>&>::Type, bool (mozilla::GetUserMediaWindowListener::*)(mozilla::SourceListener*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::SourceListener>, RefPtr<mozilla::GetUserMediaWindowListener>&, bool (mozilla::GetUserMediaWindowListener::*)(mozilla::SourceListener*), RefPtr<mozilla::SourceListener>&>(char const*, RefPtr<mozilla::GetUserMediaWindowListener>&, bool (mozilla::GetUserMediaWindowListener::*)(mozilla::SourceListener*), RefPtr<mozilla::SourceListener>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::dom::MediaRecorder>&>::Type, void (mozilla::dom::MediaRecorder::*)(nsresult), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult, RefPtr<mozilla::dom::MediaRecorder>&, void (mozilla::dom::MediaRecorder::*)(nsresult), nsresult&>(char const*, RefPtr<mozilla::dom::MediaRecorder>&, void (mozilla::dom::MediaRecorder::*)(nsresult), nsresult&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::MediaRecorder::Session*>::Type, void (mozilla::dom::MediaRecorder::Session::*)(nsresult), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult, mozilla::dom::MediaRecorder::Session*, void (mozilla::dom::MediaRecorder::Session::*)(nsresult), nsresult const&>(char const*, mozilla::dom::MediaRecorder::Session*&&, void (mozilla::dom::MediaRecorder::Session::*)(nsresult), nsresult const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::MediaEncoder>&>::Type, void (mozilla::MediaEncoder::*)(mozilla::MediaEncoderListener*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>, RefPtr<mozilla::MediaEncoder>&, void (mozilla::MediaEncoder::*)(mozilla::MediaEncoderListener*), RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>&>(char const*, RefPtr<mozilla::MediaEncoder>&, void (mozilla::MediaEncoder::*)(mozilla::MediaEncoderListener*), RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::AbstractMirror<mozilla::media::TimeIntervals>*&>::Type, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(mozilla::media::TimeIntervals const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::media::TimeIntervals, mozilla::AbstractMirror<mozilla::media::TimeIntervals>*&, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(mozilla::media::TimeIntervals const&), mozilla::media::TimeIntervals&>(char const*, mozilla::AbstractMirror<mozilla::media::TimeIntervals>*&, void (mozilla::AbstractMirror<mozilla::media::TimeIntervals>::*)(mozilla::media::TimeIntervals const&), mozilla::media::TimeIntervals&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*>::Type, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(nsTArray<unsigned char>&&, nsTString<char16_t>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTArray<unsigned char>&&, nsTString<char16_t>&&, mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(nsTArray<unsigned char>&&, nsTString<char16_t>&&), nsTArray<unsigned char>&, nsTString<char16_t>&>(char const*, mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >*&&, void (mozilla::detail::Listener<nsTArray<unsigned char>, nsTString<char16_t> >::*)(nsTArray<unsigned char>&&, nsTString<char16_t>&&), nsTArray<unsigned char>&, nsTString<char16_t>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaFormatReader*>::Type, void (mozilla::MediaFormatReader::*)(mozilla::TrackInfo::TrackType), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::TrackInfo::TrackType, mozilla::MediaFormatReader*, void (mozilla::MediaFormatReader::*)(mozilla::TrackInfo::TrackType), mozilla::TrackInfo::TrackType&>(char const*, mozilla::MediaFormatReader*&&, void (mozilla::MediaFormatReader::*)(mozilla::TrackInfo::TrackType), mozilla::TrackInfo::TrackType&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::MediaStreamTrack::PrincipalHandleListener*>::Type, void (mozilla::dom::MediaStreamTrack::PrincipalHandleListener::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> >, mozilla::dom::MediaStreamTrack::PrincipalHandleListener*, void (mozilla::dom::MediaStreamTrack::PrincipalHandleListener::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), nsMainThreadPtrHandle<nsIPrincipal> const&>(char const*, mozilla::dom::MediaStreamTrack::PrincipalHandleListener*&&, void (mozilla::dom::MediaStreamTrack::PrincipalHandleListener::*)(nsMainThreadPtrHandle<nsIPrincipal> const&), nsMainThreadPtrHandle<nsIPrincipal> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::MediaFormatReader> const&>::Type, nsresult (mozilla::MediaFormatReader::*)(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>, RefPtr<mozilla::MediaFormatReader> const&, nsresult (mozilla::MediaFormatReader::*)(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>), mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>&>(char const*, RefPtr<mozilla::MediaFormatReader> const&, nsresult (mozilla::MediaFormatReader::*)(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>), mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::MediaFormatReader> const&>::Type, void (mozilla::MediaFormatReader::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, RefPtr<mozilla::MediaFormatReader> const&, void (mozilla::MediaFormatReader::*)(bool), bool&>(char const*, RefPtr<mozilla::MediaFormatReader> const&, void (mozilla::MediaFormatReader::*)(bool), bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AudioTrackEncoder>&>::Type, void (mozilla::AudioTrackEncoder::*)(long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<long, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::AudioTrackEncoder::*)(long), long&>(char const*, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::AudioTrackEncoder::*)(long), long&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AudioTrackEncoder>&>::Type, void (mozilla::AudioTrackEncoder::*)(long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<long, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::AudioTrackEncoder::*)(long), long>(char const*, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::AudioTrackEncoder::*)(long), long&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AudioTrackEncoder>&>::Type, void (mozilla::AudioTrackEncoder::*)(mozilla::AudioSegment&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByRRef<mozilla::AudioSegment>, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::AudioTrackEncoder::*)(mozilla::AudioSegment&&), mozilla::AudioSegment>(char const*, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::AudioTrackEncoder::*)(mozilla::AudioSegment&&), mozilla::AudioSegment&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::AudioTrackEncoder>&>::Type, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::MediaEncoder::EncoderListener>, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), RefPtr<mozilla::MediaEncoder::EncoderListener>&>(char const*, RefPtr<mozilla::AudioTrackEncoder>&, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), RefPtr<mozilla::MediaEncoder::EncoderListener>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::VideoTrackEncoder>&>::Type, void (mozilla::VideoTrackEncoder::*)(long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<long, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)(long), long&>(char const*, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)(long), long&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::VideoTrackEncoder>&>::Type, void (mozilla::VideoTrackEncoder::*)(long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<long, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)(long), long>(char const*, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)(long), long&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::VideoTrackEncoder>&>::Type, void (mozilla::VideoTrackEncoder::*)(mozilla::VideoSegment&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByRRef<mozilla::VideoSegment>, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)(mozilla::VideoSegment&&), mozilla::VideoSegment>(char const*, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)(mozilla::VideoSegment&&), mozilla::VideoSegment&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::VideoTrackEncoder>&>::Type, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::MediaEncoder::EncoderListener>, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), RefPtr<mozilla::MediaEncoder::EncoderListener>&>(char const*, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::TrackEncoder::*)(mozilla::TrackEncoderListener*), RefPtr<mozilla::MediaEncoder::EncoderListener>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::VideoTrackEncoder>&>::Type, void (mozilla::VideoTrackEncoder::*)(int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)(int), int&>(char const*, RefPtr<mozilla::VideoTrackEncoder>&, void (mozilla::VideoTrackEncoder::*)(int), int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChromiumCDMProxy*&>::Type, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, NS_ConvertUTF8toUTF16, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsTSubstring<char16_t> const&), unsigned int&, NS_ConvertUTF8toUTF16>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsTSubstring<char16_t> const&), unsigned int&, NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChromiumCDMProxy*&>::Type, void (mozilla::ChromiumCDMProxy::*)(unsigned int, bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, bool, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, bool), unsigned int&, bool&>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, bool), unsigned int&, bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChromiumCDMProxy*&>::Type, void (mozilla::ChromiumCDMProxy::*)(unsigned int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int), unsigned int&>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int), unsigned int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChromiumCDMProxy*&>::Type, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, nsresult, nsTString<char>, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), unsigned int&, nsresult&, nsTString<char> const&>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), unsigned int&, nsresult&, nsTString<char> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChromiumCDMProxy*&>::Type, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<NS_ConvertUTF8toUTF16, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char>, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> const&), NS_ConvertUTF8toUTF16, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> >(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char> const&), NS_ConvertUTF8toUTF16&&, mozilla::dom::MediaKeyMessageType&&, nsTArray<unsigned char>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChromiumCDMProxy*&>::Type, void (mozilla::ChromiumCDMProxy::*)(unsigned int, mozilla::dom::MediaKeyStatus), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, mozilla::dom::MediaKeyStatus, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, mozilla::dom::MediaKeyStatus), unsigned int&, mozilla::dom::MediaKeyStatus>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, mozilla::dom::MediaKeyStatus), unsigned int&, mozilla::dom::MediaKeyStatus&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChromiumCDMProxy*&>::Type, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<NS_ConvertUTF8toUTF16, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&), NS_ConvertUTF8toUTF16>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&), NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChromiumCDMProxy*&>::Type, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<NS_ConvertUTF8toUTF16, long, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, long), NS_ConvertUTF8toUTF16, long>(char const*, mozilla::ChromiumCDMProxy*&, void (mozilla::ChromiumCDMProxy::*)(nsTSubstring<char16_t> const&, long), NS_ConvertUTF8toUTF16&&, long&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::ChromiumCDMChild*>::Type, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const&, unsigned int const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const, unsigned int const, mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const&, unsigned int const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&), unsigned int&, unsigned int>(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&), unsigned int const&, unsigned int const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&), unsigned int&, unsigned int&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::ChromiumCDMChild*>::Type, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const, nsTString<char> const, mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const&, nsTString<char> const&), bool (mozilla::gmp::ChromiumCDMChild::*&)(unsigned int, nsTString<char> const&), unsigned int&, nsTString<char> >(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&), unsigned int const&, nsTString<char> const&), bool (mozilla::gmp::ChromiumCDMChild::*&)(unsigned int, nsTString<char> const&), unsigned int&, nsTString<char>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::ChromiumCDMChild*>::Type, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const, mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&), unsigned int&>(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&), unsigned int const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&), unsigned int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::ChromiumCDMChild*>::Type, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const, unsigned int const, unsigned int const, nsTString<char> const, mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int&, unsigned int, unsigned int&, nsTString<char> >(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), 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: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::ChromiumCDMChild*>::Type, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const, unsigned int const, nsTArray<unsigned char> const, mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char>, unsigned int, nsTArray<unsigned char>&>(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char>&&, unsigned int&&, nsTArray<unsigned char>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::ChromiumCDMChild*>::Type, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const, nsTArray<mozilla::gmp::CDMKeyInformation> const, mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char>, nsTArray<mozilla::gmp::CDMKeyInformation>&>(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char>&&, nsTArray<mozilla::gmp::CDMKeyInformation>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::ChromiumCDMChild*>::Type, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const&, double const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const, double const, mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const&, double const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, double const&), nsTString<char>, double&>(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&), nsTString<char> const&, double const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, double const&), nsTString<char>&&, double&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::ChromiumCDMChild*>::Type, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const, mozilla::gmp::ChromiumCDMChild*, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&), nsTString<char> >(char const*, mozilla::gmp::ChromiumCDMChild*&&, void (mozilla::gmp::ChromiumCDMChild::*)(bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&), nsTString<char> const&), bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&), nsTString<char>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChromiumCDMProxy*>::Type, void (mozilla::ChromiumCDMProxy::*)(unsigned int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int), unsigned int&>(char const*, mozilla::ChromiumCDMProxy*&&, void (mozilla::ChromiumCDMProxy::*)(unsigned int), unsigned int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gmp::ChromiumCDMParent>&>::Type, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char>, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> const&), unsigned int&, unsigned int&, unsigned int&, unsigned int&, nsTArray<unsigned char> >(char const*, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, unsigned int, unsigned int, nsTArray<unsigned char> const&), unsigned int&, unsigned int&, unsigned int&, unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gmp::ChromiumCDMParent>&>::Type, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, nsTString<char16_t>), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, unsigned int, nsTString<char16_t>, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, nsTString<char16_t>), unsigned int&, unsigned int, nsTSubstring<char16_t> const&>(char const*, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, unsigned int, nsTString<char16_t>), unsigned int&, unsigned int&&, nsTSubstring<char16_t> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gmp::ChromiumCDMParent>&>::Type, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, nsTArray<unsigned char>, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTArray<unsigned char> const&), unsigned int&, nsTArray<unsigned char> >(char const*, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTArray<unsigned char> const&), unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gmp::ChromiumCDMParent>&>::Type, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int, nsTArray<unsigned char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char>, unsigned int, nsTArray<unsigned char>, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int, nsTArray<unsigned char> const&), NS_ConvertUTF16toUTF8, unsigned int&, nsTArray<unsigned char> >(char const*, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int, nsTArray<unsigned char> const&), NS_ConvertUTF16toUTF8&&, unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gmp::ChromiumCDMParent>&>::Type, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char>, unsigned int, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int), NS_ConvertUTF16toUTF8, unsigned int&>(char const*, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(nsTString<char> const&, unsigned int), NS_ConvertUTF16toUTF8&&, unsigned int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChromiumCDMProxy*>::Type, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, nsresult, nsTString<char>, mozilla::ChromiumCDMProxy*, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), unsigned int&, nsresult&, nsTString<char> const&>(char const*, mozilla::ChromiumCDMProxy*&&, void (mozilla::ChromiumCDMProxy::*)(unsigned int, nsresult, nsTString<char> const&), unsigned int&, nsresult&, nsTString<char> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gmp::ChromiumCDMParent>&>::Type, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTString<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, nsTString<char>, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTString<char> const&), unsigned int&, NS_ConvertUTF16toUTF8>(char const*, RefPtr<mozilla::gmp::ChromiumCDMParent>&, void (mozilla::gmp::ChromiumCDMParent::*)(unsigned int, nsTString<char> const&), unsigned int&, NS_ConvertUTF16toUTF8&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::gmp::GeckoMediaPluginServiceParent>&>::Type, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(RefPtr<mozilla::gmp::GMPParent> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::gmp::GMPParent>, RefPtr<mozilla::gmp::GeckoMediaPluginServiceParent>&, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(RefPtr<mozilla::gmp::GMPParent> const&), RefPtr<mozilla::gmp::GMPParent>&>(char const*, RefPtr<mozilla::gmp::GeckoMediaPluginServiceParent>&, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(RefPtr<mozilla::gmp::GMPParent> const&), RefPtr<mozilla::gmp::GMPParent>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::GeckoMediaPluginServiceParent*>::Type, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<long, mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(long), long&>(char const*, mozilla::gmp::GeckoMediaPluginServiceParent*&&, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(long), long&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::GeckoMediaPluginServiceParent*>::Type, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(nsTSubstring<char> const&, mozilla::OriginAttributesPattern const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char>, mozilla::OriginAttributesPattern, mozilla::gmp::GeckoMediaPluginServiceParent*, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(nsTSubstring<char> const&, mozilla::OriginAttributesPattern const&), NS_ConvertUTF16toUTF8, mozilla::OriginAttributesPattern const&>(char const*, mozilla::gmp::GeckoMediaPluginServiceParent*&&, void (mozilla::gmp::GeckoMediaPluginServiceParent::*)(nsTSubstring<char> const&, mozilla::OriginAttributesPattern const&), NS_ConvertUTF16toUTF8&&, mozilla::OriginAttributesPattern const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::dom::VideoDecoderManagerParent>&>::Type, void (mozilla::dom::VideoDecoderManagerParent::*)(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&, RefPtr<mozilla::dom::VideoDecoderManagerParent>&, void (mozilla::dom::VideoDecoderManagerParent::*)(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&), mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> >(char const*, RefPtr<mozilla::dom::VideoDecoderManagerParent>&, void (mozilla::dom::VideoDecoderManagerParent::*)(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&), mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<long>*>::Type, void (mozilla::detail::Listener<long>::*)(long&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<long&&, mozilla::detail::Listener<long>*, void (mozilla::detail::Listener<long>::*)(long&&), long&>(char const*, mozilla::detail::Listener<long>*&&, void (mozilla::detail::Listener<long>::*)(long&&), long&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<bool>*>::Type, void (mozilla::detail::Listener<bool>::*)(bool&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool&&, mozilla::detail::Listener<bool>*, void (mozilla::detail::Listener<bool>::*)(bool&&), bool&>(char const*, mozilla::detail::Listener<bool>*&&, void (mozilla::detail::Listener<bool>::*)(bool&&), bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaSourceDemuxer*>::Type, void (mozilla::MediaSourceDemuxer::*)(RefPtr<mozilla::TrackBuffersManager>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::TrackBuffersManager>&&, mozilla::MediaSourceDemuxer*, void (mozilla::MediaSourceDemuxer::*)(RefPtr<mozilla::TrackBuffersManager>&&), RefPtr<mozilla::TrackBuffersManager>&>(char const*, mozilla::MediaSourceDemuxer*&&, void (mozilla::MediaSourceDemuxer::*)(RefPtr<mozilla::TrackBuffersManager>&&), RefPtr<mozilla::TrackBuffersManager>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::TrackBuffersManager*>::Type, void (mozilla::TrackBuffersManager::*)(mozilla::SourceBufferTask*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::SourceBufferTask>, mozilla::TrackBuffersManager*, void (mozilla::TrackBuffersManager::*)(mozilla::SourceBufferTask*), mozilla::SourceBufferTask*&>(char const*, mozilla::TrackBuffersManager*&&, void (mozilla::TrackBuffersManager::*)(mozilla::SourceBufferTask*), mozilla::SourceBufferTask*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaSourceDecoder*>::Type, void (mozilla::MediaSourceDecoder::*)(long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<long, mozilla::MediaSourceDecoder*, void (mozilla::MediaSourceDecoder::*)(long), long>(char const*, mozilla::MediaSourceDecoder*&&, void (mozilla::MediaSourceDecoder::*)(long), long&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*>::Type, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(mozilla::TrackInfo::TrackType&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::TrackInfo::TrackType&&, mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(mozilla::TrackInfo::TrackType&&), mozilla::TrackInfo::TrackType const&>(char const*, mozilla::detail::Listener<mozilla::TrackInfo::TrackType>*&&, void (mozilla::detail::Listener<mozilla::TrackInfo::TrackType>::*)(mozilla::TrackInfo::TrackType&&), mozilla::TrackInfo::TrackType const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::camera::CamerasChild*>::Type, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::camera::CaptureEngine, nsTString<char>, mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&), mozilla::camera::CaptureEngine&, nsTString<char>&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&), mozilla::camera::CaptureEngine&, nsTString<char>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::camera::CamerasChild*>::Type, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::camera::CaptureEngine, mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&), mozilla::camera::CaptureEngine&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&), mozilla::camera::CaptureEngine&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::camera::CamerasChild*>::Type, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, int const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::camera::CaptureEngine, nsTString<char>, unsigned int, mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, int const&), mozilla::camera::CaptureEngine&, nsTString<char>&, unsigned int const&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, int const&), mozilla::camera::CaptureEngine&, nsTString<char>&, unsigned int const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::camera::CamerasChild*>::Type, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::camera::CaptureEngine, unsigned int, mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), mozilla::camera::CaptureEngine&, unsigned int&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), mozilla::camera::CaptureEngine&, unsigned int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::camera::CamerasChild*>::Type, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, mozilla::ipc::PrincipalInfo const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::camera::CaptureEngine, nsTString<char>, mozilla::ipc::PrincipalInfo const&, mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, mozilla::ipc::PrincipalInfo const&), mozilla::camera::CaptureEngine&, nsTString<char>&, mozilla::ipc::PrincipalInfo const&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, nsTString<char> const&, mozilla::ipc::PrincipalInfo const&), mozilla::camera::CaptureEngine&, nsTString<char>&, mozilla::ipc::PrincipalInfo const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::camera::CamerasChild*>::Type, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::camera::CaptureEngine, int, mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), mozilla::camera::CaptureEngine&, int const&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&), mozilla::camera::CaptureEngine&, int const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::camera::CamerasChild*>::Type, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&, mozilla::camera::VideoCaptureCapability const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::camera::CaptureEngine, int, mozilla::camera::VideoCaptureCapability, mozilla::camera::CamerasChild*, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&, mozilla::camera::VideoCaptureCapability const&), mozilla::camera::CaptureEngine&, int const&, mozilla::camera::VideoCaptureCapability&>(char const*, mozilla::camera::CamerasChild*&&, bool (mozilla::camera::PCamerasChild::*)(mozilla::camera::CaptureEngine const&, int const&, mozilla::camera::VideoCaptureCapability const&), mozilla::camera::CaptureEngine&, int const&, mozilla::camera::VideoCaptureCapability&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaSystemResourceManager*>::Type, void (mozilla::MediaSystemResourceManager::*)(unsigned int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, mozilla::MediaSystemResourceManager*, void (mozilla::MediaSystemResourceManager::*)(unsigned int), unsigned int const&>(char const*, mozilla::MediaSystemResourceManager*&&, void (mozilla::MediaSystemResourceManager::*)(unsigned int), unsigned int const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::MediaSystemResourceManager*>::Type, void (mozilla::MediaSystemResourceManager::*)(unsigned int, bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, bool, mozilla::MediaSystemResourceManager*, void (mozilla::MediaSystemResourceManager::*)(unsigned int, bool), unsigned int&, bool&>(char const*, mozilla::MediaSystemResourceManager*&&, void (mozilla::MediaSystemResourceManager::*)(unsigned int, bool), unsigned int&, bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::SpeechDispatcherService*&>::Type, void (mozilla::dom::SpeechDispatcherService::*)(unsigned int, unsigned int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, SPDNotificationType, mozilla::dom::SpeechDispatcherService*&, void (mozilla::dom::SpeechDispatcherService::*)(unsigned int, unsigned int), unsigned int, SPDNotificationType&>(char const*, mozilla::dom::SpeechDispatcherService*&, void (mozilla::dom::SpeechDispatcherService::*)(unsigned int, unsigned int), unsigned int&&, SPDNotificationType&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::dom::SpeechDispatcherCallback>&>::Type, bool (mozilla::dom::SpeechDispatcherCallback::*)(SPDNotificationType), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<SPDNotificationType, RefPtr<mozilla::dom::SpeechDispatcherCallback>&, bool (mozilla::dom::SpeechDispatcherCallback::*)(SPDNotificationType), SPDNotificationType>(char const*, RefPtr<mozilla::dom::SpeechDispatcherCallback>&, bool (mozilla::dom::SpeechDispatcherCallback::*)(SPDNotificationType), SPDNotificationType&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::StorageDBParent::ObserverSink*>::Type, void (mozilla::dom::StorageDBParent::ObserverSink::*)(nsTString<char> const&, nsTString<char16_t> const&, nsTString<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char>, nsTString<char16_t>, nsTString<char>, mozilla::dom::StorageDBParent::ObserverSink*, void (mozilla::dom::StorageDBParent::ObserverSink::*)(nsTString<char> const&, nsTString<char16_t> const&, nsTString<char> const&), char const*&, nsTSubstring<char16_t> const&, nsTSubstring<char> const&>(char const*, mozilla::dom::StorageDBParent::ObserverSink*&&, void (mozilla::dom::StorageDBParent::ObserverSink::*)(nsTString<char> const&, nsTString<char16_t> const&, nsTString<char> const&), char const*&, nsTSubstring<char16_t> const&, nsTSubstring<char> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ContentParent*&>::Type, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ContentParent::ShutDownMethod, mozilla::dom::ContentParent*&, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), mozilla::dom::ContentParent::ShutDownMethod>(char const*, mozilla::dom::ContentParent*&, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), mozilla::dom::ContentParent::ShutDownMethod&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ContentParent*>::Type, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ContentParent::ShutDownMethod, mozilla::dom::ContentParent*, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), mozilla::dom::ContentParent::ShutDownMethod>(char const*, mozilla::dom::ContentParent*&&, void (mozilla::dom::ContentParent::*)(mozilla::dom::ContentParent::ShutDownMethod), mozilla::dom::ContentParent::ShutDownMethod&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::U2FHIDTokenManager*&>::Type, void (mozilla::dom::U2FHIDTokenManager::*)(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&, mozilla::dom::U2FHIDTokenManager*&, void (mozilla::dom::U2FHIDTokenManager::*)(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&), mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> > >(char const*, mozilla::dom::U2FHIDTokenManager*&, void (mozilla::dom::U2FHIDTokenManager::*)(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&), mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::U2FTokenManager*>::Type, void (mozilla::dom::U2FTokenManager::*)(nsTString<char16_t>), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char16_t>, mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(nsTString<char16_t>), nsTAutoStringN<char16_t, 64ul>&>(char const*, mozilla::dom::U2FTokenManager*&&, void (mozilla::dom::U2FTokenManager::*)(nsTString<char16_t>), nsTAutoStringN<char16_t, 64ul>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::U2FTokenManager*>::Type, void (mozilla::dom::U2FTokenManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, bool, mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(unsigned long, bool), unsigned long&, bool&>(char const*, mozilla::dom::U2FTokenManager*&&, void (mozilla::dom::U2FTokenManager::*)(unsigned long, bool), unsigned long&, bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::U2FTokenManager*>::Type, void (mozilla::dom::U2FTokenManager::*)(unsigned long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, mozilla::dom::U2FTokenManager*, void (mozilla::dom::U2FTokenManager::*)(unsigned long), unsigned long&>(char const*, mozilla::dom::U2FTokenManager*&&, void (mozilla::dom::U2FTokenManager::*)(unsigned long), unsigned long&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::XULDocument*>::Type, void (mozilla::dom::XULDocument::*)(mozilla::dom::Element*, int, nsAtom*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::Element*, int, nsAtom*, mozilla::dom::XULDocument*, void (mozilla::dom::XULDocument::*)(mozilla::dom::Element*, int, nsAtom*), mozilla::dom::Element*&, int const&, nsAtom*&>(char const*, mozilla::dom::XULDocument*&&, void (mozilla::dom::XULDocument::*)(mozilla::dom::Element*, int, nsAtom*), mozilla::dom::Element*&, int const&, nsAtom*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIWebBrowserPersistDocumentReceiver>&>::Type, nsresult (nsIWebBrowserPersistDocumentReceiver::*)(nsresult), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsresult, nsCOMPtr<nsIWebBrowserPersistDocumentReceiver>&, nsresult (nsIWebBrowserPersistDocumentReceiver::*)(nsresult), nsresult const&>(char const*, nsCOMPtr<nsIWebBrowserPersistDocumentReceiver>&, nsresult (nsIWebBrowserPersistDocumentReceiver::*)(nsresult), nsresult const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIWebBrowserPersistResourceVisitor>&>::Type, nsresult (nsIWebBrowserPersistResourceVisitor::*)(nsIWebBrowserPersistDocument*, nsresult), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsCOMPtr<nsIWebBrowserPersistDocument>, nsresult, nsCOMPtr<nsIWebBrowserPersistResourceVisitor>&, nsresult (nsIWebBrowserPersistResourceVisitor::*)(nsIWebBrowserPersistDocument*, nsresult), nsCOMPtr<nsIWebBrowserPersistDocument>&, nsresult const&>(char const*, nsCOMPtr<nsIWebBrowserPersistResourceVisitor>&, nsresult (nsIWebBrowserPersistResourceVisitor::*)(nsIWebBrowserPersistDocument*, nsresult), nsCOMPtr<nsIWebBrowserPersistDocument>&, nsresult const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIWebBrowserPersistWriteCompletion>&>::Type, nsresult (nsIWebBrowserPersistWriteCompletion::*)(nsIWebBrowserPersistDocument*, nsIOutputStream*, nsTSubstring<char> const&, nsresult), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsCOMPtr<nsIWebBrowserPersistDocument>, nsCOMPtr<nsIOutputStream>, nsTString<char>, nsresult, nsCOMPtr<nsIWebBrowserPersistWriteCompletion>&, nsresult (nsIWebBrowserPersistWriteCompletion::*)(nsIWebBrowserPersistDocument*, nsIOutputStream*, nsTSubstring<char> const&, nsresult), nsCOMPtr<nsIWebBrowserPersistDocument>&, nsCOMPtr<nsIOutputStream>&, nsTString<char> const&, nsresult const&>(char const*, nsCOMPtr<nsIWebBrowserPersistWriteCompletion>&, nsresult (nsIWebBrowserPersistWriteCompletion::*)(nsIWebBrowserPersistDocument*, nsIOutputStream*, nsTSubstring<char> const&, nsresult), nsCOMPtr<nsIWebBrowserPersistDocument>&, nsCOMPtr<nsIOutputStream>&, nsTString<char> const&, nsresult const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsWebBrowserPersist*>::Type, nsresult (nsWebBrowserPersist::*)(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > >, nsWebBrowserPersist*, nsresult (nsWebBrowserPersist::*)(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&), mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > >(char const*, nsWebBrowserPersist*&&, nsresult (nsWebBrowserPersist::*)(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&), mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::XMLHttpRequestMainThread*>::Type, void (mozilla::dom::XMLHttpRequestMainThread::*)(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType, mozilla::dom::XMLHttpRequestMainThread*, void (mozilla::dom::XMLHttpRequestMainThread::*)(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType), mozilla::dom::XMLHttpRequestMainThread::ProgressEventType>(char const*, mozilla::dom::XMLHttpRequestMainThread*&&, void (mozilla::dom::XMLHttpRequestMainThread::*)(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType), mozilla::dom::XMLHttpRequestMainThread::ProgressEventType&&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback*>::Type, void (mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback*, void (mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback::*)(bool), bool&>(char const*, mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback*&&, void (mozilla::dom::(anonymous namespace)::CheckScriptEvaluationWithCallback::*)(bool), bool&)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::(anonymous namespace)::PushErrorReporter*>::Type, void (mozilla::dom::(anonymous namespace)::PushErrorReporter::*)(unsigned short), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned short, mozilla::dom::(anonymous namespace)::PushErrorReporter*, void (mozilla::dom::(anonymous namespace)::PushErrorReporter::*)(unsigned short), unsigned short&>(char const*, mozilla::dom::(anonymous namespace)::PushErrorReporter*&&, void (mozilla::dom::(anonymous namespace)::PushErrorReporter::*)(unsigned short), unsigned short&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::dom::ServiceWorkerRegistrar>&>::Type, void (mozilla::dom::ServiceWorkerRegistrar::*)(unsigned int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned int, RefPtr<mozilla::dom::ServiceWorkerRegistrar>&, void (mozilla::dom::ServiceWorkerRegistrar::*)(unsigned int), unsigned int&>(char const*, RefPtr<mozilla::dom::ServiceWorkerRegistrar>&, void (mozilla::dom::ServiceWorkerRegistrar::*)(unsigned int), unsigned int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ServiceWorkerRegistrationInfo*>::Type, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, mozilla::dom::ServiceWorkerRegistrationInfo*, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(bool), bool>(char const*, mozilla::dom::ServiceWorkerRegistrationInfo*&&, void (mozilla::dom::ServiceWorkerRegistrationInfo::*)(bool), bool&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::ServiceWorkerRegistrationProxy*>::Type, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::dom::ServiceWorkerRegistrationProxy*, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), mozilla::dom::ServiceWorkerRegistrationDescriptor const&>(char const*, mozilla::dom::ServiceWorkerRegistrationProxy*&&, void (mozilla::dom::ServiceWorkerRegistrationProxy::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), mozilla::dom::ServiceWorkerRegistrationDescriptor const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsISDBCallback>&>::Type, nsresult (nsISDBCallback::*)(nsISDBRequest*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::dom::SDBRequest>, nsCOMPtr<nsISDBCallback>&, nsresult (nsISDBCallback::*)(nsISDBRequest*), mozilla::dom::SDBRequest*>(char const*, nsCOMPtr<nsISDBCallback>&, nsresult (nsISDBCallback::*)(nsISDBRequest*), mozilla::dom::SDBRequest*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::PresentationAvailability*>::Type, void (mozilla::dom::PresentationAvailability::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, mozilla::dom::PresentationAvailability*, void (mozilla::dom::PresentationAvailability::*)(bool), bool&>(char const*, mozilla::dom::PresentationAvailability*&&, void (mozilla::dom::PresentationAvailability::*)(bool), bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::PresentationRequest*>::Type, void (mozilla::dom::PresentationRequest::*)(nsTSubstring<char16_t> const&, mozilla::dom::Promise*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char16_t>, RefPtr<mozilla::dom::Promise>, mozilla::dom::PresentationRequest*, void (mozilla::dom::PresentationRequest::*)(nsTSubstring<char16_t> const&, mozilla::dom::Promise*), nsTString<char16_t>&, RefPtr<mozilla::dom::Promise>&>(char const*, mozilla::dom::PresentationRequest*&&, void (mozilla::dom::PresentationRequest::*)(nsTSubstring<char16_t> const&, mozilla::dom::Promise*), nsTString<char16_t>&, RefPtr<mozilla::dom::Promise>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::PresentationControllingInfo*>::Type, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char>, mozilla::dom::PresentationControllingInfo*, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), nsTAutoStringN<char, 64ul>&>(char const*, mozilla::dom::PresentationControllingInfo*&&, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), nsTAutoStringN<char, 64ul>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::PresentationControllingInfo*>::Type, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char>, mozilla::dom::PresentationControllingInfo*, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), char const (&) [10]>(char const*, mozilla::dom::PresentationControllingInfo*&&, nsresult (mozilla::dom::PresentationControllingInfo::*)(nsTSubstring<char> const&), char const (&) [10])
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsCOMPtr<nsIPresentationSessionTransportBuilderListener>&>::Type, nsresult (nsIPresentationSessionTransportBuilderListener::*)(nsIPresentationSessionTransport*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsIPresentationSessionTransport*, nsCOMPtr<nsIPresentationSessionTransportBuilderListener>&, nsresult (nsIPresentationSessionTransportBuilderListener::*)(nsIPresentationSessionTransport*), nsCOMPtr<nsIPresentationSessionTransport>&>(char const*, nsCOMPtr<nsIPresentationSessionTransportBuilderListener>&, nsresult (nsIPresentationSessionTransportBuilderListener::*)(nsIPresentationSessionTransport*), nsCOMPtr<nsIPresentationSessionTransport>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::PresentationTCPSessionTransport*>::Type, void (mozilla::dom::PresentationTCPSessionTransport::*)(mozilla::dom::PresentationTCPSessionTransport::ReadyState), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::dom::PresentationTCPSessionTransport::ReadyState, mozilla::dom::PresentationTCPSessionTransport*, void (mozilla::dom::PresentationTCPSessionTransport::*)(mozilla::dom::PresentationTCPSessionTransport::ReadyState), mozilla::dom::PresentationTCPSessionTransport::ReadyState>(char const*, mozilla::dom::PresentationTCPSessionTransport*&&, void (mozilla::dom::PresentationTCPSessionTransport::*)(mozilla::dom::PresentationTCPSessionTransport::ReadyState), mozilla::dom::PresentationTCPSessionTransport::ReadyState&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::IAPZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(float), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<float, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(float), float&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(float), float&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::IAPZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::KeyboardMap, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), mozilla::layers::KeyboardMap&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::KeyboardMap const&), mozilla::layers::KeyboardMap&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::IAPZCTreeManager> const&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, bool, RefPtr<mozilla::layers::IAPZCTreeManager> const&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), unsigned long&, bool&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager> const&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, bool), unsigned long&, bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::IAPZCTreeManager> const&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, StoreCopyPassByLRef<nsTArray<unsigned int> >, RefPtr<mozilla::layers::IAPZCTreeManager> const&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), unsigned long&, nsTArray<unsigned int> const&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager> const&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<unsigned int> const&), unsigned long&, nsTArray<unsigned int> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::IAPZCTreeManager> const&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<unsigned long, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> >, RefPtr<mozilla::layers::IAPZCTreeManager> const&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), unsigned long&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager> const&, void (mozilla::layers::IAPZCTreeManager::*)(unsigned long, nsTArray<mozilla::layers::ScrollableLayerGuid> const&), unsigned long&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::IAPZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>, unsigned int, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int), mozilla::layers::ScrollableLayerGuid&&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::layers::IAPZCTreeManager>&>::Type, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::layers::ScrollableLayerGuid, mozilla::layers::AsyncDragMetrics, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), mozilla::layers::ScrollableLayerGuid&, mozilla::layers::AsyncDragMetrics const&>(char const*, RefPtr<mozilla::layers::IAPZCTreeManager>&, void (mozilla::layers::IAPZCTreeManager::*)(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&), mozilla::layers::ScrollableLayerGuid&, mozilla::layers::AsyncDragMetrics const&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::CompositorVsyncDispatcher*>::Type, void (mozilla::CompositorVsyncDispatcher::*)(bool), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool, mozilla::CompositorVsyncDispatcher*, void (mozilla::CompositorVsyncDispatcher::*)(bool), bool&>(char const*, mozilla::CompositorVsyncDispatcher*&&, void (mozilla::CompositorVsyncDispatcher::*)(bool), bool&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layout::VsyncParent*>::Type, void (mozilla::layout::VsyncParent::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::TimeStamp, mozilla::layout::VsyncParent*, void (mozilla::layout::VsyncParent::*)(mozilla::TimeStamp), mozilla::TimeStamp&>(char const*, mozilla::layout::VsyncParent*&&, void (mozilla::layout::VsyncParent::*)(mozilla::TimeStamp), mozilla::TimeStamp&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChildProfilerController*>::Type, void (mozilla::ChildProfilerController::*)(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&, mozilla::ChildProfilerController*, void (mozilla::ChildProfilerController::*)(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&), mozilla::ipc::Endpoint<mozilla::PProfilerChild> >(char const*, mozilla::ChildProfilerController*&&, void (mozilla::ChildProfilerController::*)(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&), mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ChildProfilerController*>::Type, void (mozilla::ChildProfilerController::*)(nsTString<char>*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char>*, mozilla::ChildProfilerController*, void (mozilla::ChildProfilerController::*)(nsTString<char>*), nsTString<char>*&>(char const*, mozilla::ChildProfilerController*&&, void (mozilla::ChildProfilerController::*)(nsTString<char>*), nsTString<char>*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::DataStorage>&>::Type, void (mozilla::DataStorage::*)(char const*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<char const*, RefPtr<mozilla::DataStorage>&, void (mozilla::DataStorage::*)(char const*), char const (&) [19]>(char const*, RefPtr<mozilla::DataStorage>&, void (mozilla::DataStorage::*)(char const*), char const (&) [19])
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::DataStorage>&>::Type, void (mozilla::DataStorage::*)(char const*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<char const*, RefPtr<mozilla::DataStorage>&, void (mozilla::DataStorage::*)(char const*), char const (&) [21]>(char const*, RefPtr<mozilla::DataStorage>&, void (mozilla::DataStorage::*)(char const*), char const (&) [21])
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::extensions::StreamFilter*>::Type, void (mozilla::extensions::StreamFilter::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&, mozilla::extensions::StreamFilter*, void (mozilla::extensions::StreamFilter::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&), mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> >(char const*, mozilla::extensions::StreamFilter*&&, void (mozilla::extensions::StreamFilter::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&), mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<mozilla::extensions::StreamFilterParent>&>::Type, void (mozilla::extensions::StreamFilterParent::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&, RefPtr<mozilla::extensions::StreamFilterParent>&, void (mozilla::extensions::StreamFilterParent::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&), mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> >(char const*, RefPtr<mozilla::extensions::StreamFilterParent>&, void (mozilla::extensions::StreamFilterParent::*)(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&), mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::extensions::StreamFilterParent*>::Type, void (mozilla::extensions::StreamFilterParent::*)(nsTArray<unsigned char>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTArray<unsigned char>&&, mozilla::extensions::StreamFilterParent*, void (mozilla::extensions::StreamFilterParent::*)(nsTArray<unsigned char>&&), nsTArray<unsigned char> >(char const*, mozilla::extensions::StreamFilterParent*&&, void (mozilla::extensions::StreamFilterParent::*)(nsTArray<unsigned char>&&), nsTArray<unsigned char>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsNavHistory*>::Type, void (nsNavHistory::*)(nsTSubstring<char> const&, int, nsTSubstring<char> const&, bool, long), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char>, int, nsTString<char>, bool, long, nsNavHistory*, void (nsNavHistory::*)(nsTSubstring<char> const&, int, nsTSubstring<char> const&, bool, long), nsTSubstring<char> const&, int&, nsTSubstring<char> const&, bool&, long&>(char const*, nsNavHistory*&&, void (nsNavHistory::*)(nsTSubstring<char> const&, int, nsTSubstring<char> const&, bool, long), nsTSubstring<char> const&, int&, nsTSubstring<char> const&, bool&, long&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<nsFormFillController*>::Type, void (nsFormFillController::*)(mozilla::dom::HTMLInputElement*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<mozilla::dom::HTMLInputElement>, nsFormFillController*, void (nsFormFillController::*)(mozilla::dom::HTMLInputElement*), RefPtr<mozilla::dom::HTMLInputElement>&>(char const*, nsFormFillController*&&, void (nsFormFillController::*)(mozilla::dom::HTMLInputElement*), RefPtr<mozilla::dom::HTMLInputElement>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsBar>&>::Type, void (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsFoo>, RefPtr<nsBar>&, void (nsBar::*)(nsFoo*), RefPtr<nsFoo>&>(char const*, RefPtr<nsBar>&, void (nsBar::*)(nsFoo*), RefPtr<nsFoo>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsBar>&>::Type, nsresult (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<nsFoo>, RefPtr<nsBar>&, nsresult (nsBar::*)(nsFoo*), RefPtr<nsFoo>&>(char const*, RefPtr<nsBar>&, nsresult (nsBar::*)(nsFoo*), RefPtr<nsFoo>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsBar>&>::Type, void (nsBar::*)(nsFoo*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsFoo*, RefPtr<nsBar>&, void (nsBar::*)(nsFoo*), RefPtr<nsFoo>&>(char const*, RefPtr<nsBar>&, void (nsBar::*)(nsFoo*), RefPtr<nsFoo>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsBar>&>::Type, nsresult (nsBar::*)(char*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<char*, RefPtr<nsBar>&, nsresult (nsBar::*)(char*), char*&>(char const*, RefPtr<nsBar>&, nsresult (nsBar::*)(char*), char*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<nsFoo>&>::Type, nsresult (nsFoo::*)(bool*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<bool*, RefPtr<nsFoo>&, nsresult (nsFoo::*)(bool*), bool*>(char const*, RefPtr<nsFoo>&, nsresult (nsFoo::*)(bool*), bool*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int), int>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int), int&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(int, int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int, int, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int, int), int, int>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int, int), int&&, int&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int, int, int, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int), int, int, int>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int), int&&, int&&, int&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int, int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int, int, int, int, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int, int), int, int, int, int>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int, int, int, int), int&&, int&&, int&&, int&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(int), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int), short&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int), short&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(int*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int*), int*>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int*), int*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), int*>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), int*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(int*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByPtr<int>, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int*), int&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int*), int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByConstPtr<int>, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), int&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int const*), int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(int&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int&, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int&), int&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int&), int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(int&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int&&, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int&&), int>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(int&&), int&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >), mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&), mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&), mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByValue<TestThreadUtils::Spy>, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), TestThreadUtils::Spy&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), TestThreadUtils::Spy&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByValue<TestThreadUtils::Spy>, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), TestThreadUtils::Spy>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy), TestThreadUtils::Spy&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByConstLRef<TestThreadUtils::Spy>, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), TestThreadUtils::Spy&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), TestThreadUtils::Spy&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByConstLRef<TestThreadUtils::Spy>, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), TestThreadUtils::Spy>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const&), TestThreadUtils::Spy&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByRRef<TestThreadUtils::Spy>, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), TestThreadUtils::Spy&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), TestThreadUtils::Spy&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreCopyPassByRRef<TestThreadUtils::Spy>, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), TestThreadUtils::Spy>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&&), TestThreadUtils::Spy&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<TestThreadUtils::Spy&, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&), TestThreadUtils::Spy&>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy&), TestThreadUtils::Spy&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports>, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), TestThreadUtils::SpyWithISupports*>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), TestThreadUtils::SpyWithISupports*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<TestThreadUtils::Spy*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), TestThreadUtils::Spy*>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy*), TestThreadUtils::Spy*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<RefPtr<TestThreadUtils::ThreadUtilsObject>&>::Type, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const*), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<TestThreadUtils::Spy const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const*), TestThreadUtils::Spy*>(char const*, RefPtr<TestThreadUtils::ThreadUtilsObject>&, void (TestThreadUtils::ThreadUtilsObject::*)(TestThreadUtils::Spy const*), TestThreadUtils::Spy*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<CDMStorageTest*>::Type, void (CDMStorageTest::*)(nsTString<char>), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<nsTString<char>, CDMStorageTest*, void (CDMStorageTest::*)(nsTString<char>), nsTString<char>&>(char const*, CDMStorageTest*&&, void (CDMStorageTest::*)(nsTString<char>), nsTString<char>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<CDMStorageTest*>::Type, void (CDMStorageTest::*)(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&, CDMStorageTest*, void (CDMStorageTest::*)(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&), mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> > >(char const*, CDMStorageTest*&&, void (CDMStorageTest::*)(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&), mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<GMPTestRunner*>::Type, void (GMPTestRunner::*)(GMPTestMonitor&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<GMPTestMonitor&, GMPTestRunner*, void (GMPTestRunner::*)(GMPTestMonitor&), GMPTestMonitor&>(char const*, GMPTestRunner*&&, void (GMPTestRunner::*)(GMPTestMonitor&), GMPTestMonitor&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<int>*>::Type, void (mozilla::detail::Listener<int>::*)(int&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<int&&, mozilla::detail::Listener<int>*, void (mozilla::detail::Listener<int>::*)(int&&), int&>(char const*, mozilla::detail::Listener<int>*&&, void (mozilla::detail::Listener<int>::*)(int&&), int&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<SomeEvent>*>::Type, void (mozilla::detail::Listener<SomeEvent>::*)(SomeEvent&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<SomeEvent&&, mozilla::detail::Listener<SomeEvent>*, void (mozilla::detail::Listener<SomeEvent>::*)(SomeEvent&&), SomeEvent&>(char const*, mozilla::detail::Listener<SomeEvent>*&&, void (mozilla::detail::Listener<SomeEvent>::*)(SomeEvent&&), SomeEvent&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*>::Type, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&, mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&), mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >(char const*, mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >*&&, void (mozilla::detail::Listener<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >::*)(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&), mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::detail::Listener<RefPtr<RefCounter> >*>::Type, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(RefPtr<RefCounter>&&), true, (mozilla::RunnableKind)0>::base_type> mozilla::NewRunnableMethod<RefPtr<RefCounter>&&, mozilla::detail::Listener<RefPtr<RefCounter> >*, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(RefPtr<RefCounter>&&), RefPtr<RefCounter>&>(char const*, mozilla::detail::Listener<RefPtr<RefCounter> >*&&, void (mozilla::detail::Listener<RefPtr<RefCounter> >::*)(RefPtr<RefCounter>&&), RefPtr<RefCounter>&)
1516
1517
template<typename... Storages, typename PtrType, typename Method, typename... Args>
1518
already_AddRefed<detail::NonOwningRunnableMethod<PtrType, Method>>
1519
NewNonOwningRunnableMethod(const char* aName, PtrType&& aPtr, Method aMethod,
1520
                           Args&&... aArgs)
1521
0
{
1522
0
  static_assert(sizeof...(Storages) == sizeof...(Args),
1523
0
                "<Storages...> size should be equal to number of arguments");
1524
0
  return do_AddRef(
1525
0
    new detail::NonOwningRunnableMethodImpl<PtrType, Method, Storages...>(
1526
0
      aName, std::forward<PtrType>(aPtr), aMethod, std::forward<Args>(aArgs)...));
1527
0
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ipc::GeckoChildProcessHost*>::Type, bool (mozilla::ipc::GeckoChildProcessHost::*)(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> > > >), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<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> > > >, mozilla::ipc::GeckoChildProcessHost*, bool (mozilla::ipc::GeckoChildProcessHost::*)(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> > > >), 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> > > >&>(char const*, mozilla::ipc::GeckoChildProcessHost*&&, bool (mozilla::ipc::GeckoChildProcessHost::*)(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> > > >), 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: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ipc::MessageChannel*&>::Type, void (mozilla::ipc::MessageChannel::*)(mozilla::ipc::MessageChannel*, mozilla::ipc::Side), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::ipc::MessageChannel*, mozilla::ipc::Side, mozilla::ipc::MessageChannel*&, void (mozilla::ipc::MessageChannel::*)(mozilla::ipc::MessageChannel*, mozilla::ipc::Side), mozilla::ipc::MessageChannel*, mozilla::ipc::Side&>(char const*, mozilla::ipc::MessageChannel*&, void (mozilla::ipc::MessageChannel::*)(mozilla::ipc::MessageChannel*, mozilla::ipc::Side), mozilla::ipc::MessageChannel*&&, mozilla::ipc::Side&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::ipc::ProcessLink*>::Type, void (mozilla::ipc::ProcessLink::*)(IPC::Message*), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<IPC::Message*, mozilla::ipc::ProcessLink*, void (mozilla::ipc::ProcessLink::*)(IPC::Message*), IPC::Message*&>(char const*, mozilla::ipc::ProcessLink*&&, void (mozilla::ipc::ProcessLink::*)(IPC::Message*), IPC::Message*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<IPC::Channel*&>::Type, bool (IPC::Channel::*)(IPC::Message*), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<IPC::Message*, IPC::Channel*&, bool (IPC::Channel::*)(IPC::Message*), IPC::Message*&>(char const*, IPC::Channel*&, bool (IPC::Channel::*)(IPC::Message*), IPC::Message*&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::cache::Manager::CachePutAllAction*>::Type, void (mozilla::dom::cache::Manager::CachePutAllAction::*)(nsresult), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<nsresult, mozilla::dom::cache::Manager::CachePutAllAction*, void (mozilla::dom::cache::Manager::CachePutAllAction::*)(nsresult), nsresult&>(char const*, mozilla::dom::cache::Manager::CachePutAllAction*&&, void (mozilla::dom::cache::Manager::CachePutAllAction::*)(nsresult), nsresult&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::gmp::GMPServiceParent*>::Type, void (mozilla::gmp::GMPServiceParent::*)(mozilla::Monitor*, bool*), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::Monitor*, bool*, mozilla::gmp::GMPServiceParent*, void (mozilla::gmp::GMPServiceParent::*)(mozilla::Monitor*, bool*), mozilla::Monitor*, bool*>(char const*, mozilla::gmp::GMPServiceParent*&&, void (mozilla::gmp::GMPServiceParent::*)(mozilla::Monitor*, bool*), mozilla::Monitor*&&, bool*&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::plugins::FunctionBrokerChild*>::Type, void (mozilla::plugins::FunctionBrokerChild::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&, mozilla::plugins::FunctionBrokerChild*, void (mozilla::plugins::FunctionBrokerChild::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&), mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> >(char const*, mozilla::plugins::FunctionBrokerChild*&&, void (mozilla::plugins::FunctionBrokerChild::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&), mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::plugins::FunctionBrokerParent*>::Type, void (mozilla::plugins::FunctionBrokerParent::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&, mozilla::plugins::FunctionBrokerParent*, void (mozilla::plugins::FunctionBrokerParent::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&), mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent> >(char const*, mozilla::plugins::FunctionBrokerParent*&&, void (mozilla::plugins::FunctionBrokerParent::*)(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&), mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&)
Unexecuted instantiation: ProcessHangMonitor.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<(anonymous namespace)::HangMonitorChild*>::Type, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char> const&, nsTString<char16_t> const&), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char>, nsTString<char16_t>, (anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char> const&, nsTString<char16_t> const&), mozilla::dom::IdType<mozilla::dom::TabParent>&, nsTAutoStringN<char, 64ul>&, nsTString<char16_t> const&>(char const*, (anonymous namespace)::HangMonitorChild*&&, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, nsTString<char> const&, nsTString<char16_t> const&), mozilla::dom::IdType<mozilla::dom::TabParent>&, nsTAutoStringN<char, 64ul>&, nsTString<char16_t> const&)
Unexecuted instantiation: ProcessHangMonitor.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<(anonymous namespace)::HangMonitorChild*>::Type, void ((anonymous namespace)::HangMonitorChild::*)(unsigned int), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<unsigned int, (anonymous namespace)::HangMonitorChild*, void ((anonymous namespace)::HangMonitorChild::*)(unsigned int), unsigned int&>(char const*, (anonymous namespace)::HangMonitorChild*&&, void ((anonymous namespace)::HangMonitorChild::*)(unsigned int), unsigned int&)
Unexecuted instantiation: ProcessHangMonitor.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<(anonymous namespace)::HangMonitorParent*&>::Type, void ((anonymous namespace)::HangMonitorParent::*)(bool), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<bool, (anonymous namespace)::HangMonitorParent*&, void ((anonymous namespace)::HangMonitorParent::*)(bool), bool>(char const*, (anonymous namespace)::HangMonitorParent*&, void ((anonymous namespace)::HangMonitorParent::*)(bool), bool&&)
Unexecuted instantiation: ProcessHangMonitor.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<(anonymous namespace)::HangMonitorParent*&>::Type, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&, (anonymous namespace)::HangMonitorParent*&, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&), mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent> >(char const*, (anonymous namespace)::HangMonitorParent*&, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&), mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&)
Unexecuted instantiation: ProcessHangMonitor.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<(anonymous namespace)::HangMonitorParent*>::Type, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch const&), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch, (anonymous namespace)::HangMonitorParent*, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch const&), mozilla::dom::IdType<mozilla::dom::TabParent>&, bool&, mozilla::layers::LayersObserverEpoch const&>(char const*, (anonymous namespace)::HangMonitorParent*&&, void ((anonymous namespace)::HangMonitorParent::*)(mozilla::dom::IdType<mozilla::dom::TabParent>, bool, mozilla::layers::LayersObserverEpoch const&), mozilla::dom::IdType<mozilla::dom::TabParent>&, bool&, mozilla::layers::LayersObserverEpoch const&)
Unexecuted instantiation: ProcessHangMonitor.cpp:already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<(anonymous namespace)::HangMonitorChild*&>::Type, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&, (anonymous namespace)::HangMonitorChild*&, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&), mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> >(char const*, (anonymous namespace)::HangMonitorChild*&, void ((anonymous namespace)::HangMonitorChild::*)(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&), mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<GMPRemoveTest*>::Type, void (GMPRemoveTest::*)(nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**, GMPRemoveTest*, void (GMPRemoveTest::*)(nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**), nsTString<char>&, GMPVideoDecoderProxy**, GMPVideoHost**>(char const*, GMPRemoveTest*&&, void (GMPRemoveTest::*)(nsTString<char>, GMPVideoDecoderProxy**, GMPVideoHost**), nsTString<char>&, GMPVideoDecoderProxy**&&, GMPVideoHost**&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<GMPVideoDecoderProxy*&>::Type, nsresult (GMPVideoDecoderProxy::*)(GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int), false, (mozilla::RunnableKind)0>::base_type> mozilla::NewNonOwningRunnableMethod<GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int, GMPVideoDecoderProxy*&, nsresult (GMPVideoDecoderProxy::*)(GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int), GMPVideoCodec&, nsTArray<unsigned char>&, GMPRemoveTest*, int>(char const*, GMPVideoDecoderProxy*&, nsresult (GMPVideoDecoderProxy::*)(GMPVideoCodec const&, nsTArray<unsigned char> const&, GMPVideoDecoderCallbackProxy*, int), GMPVideoCodec&, nsTArray<unsigned char>&, GMPRemoveTest*&&, int&&)
1528
1529
template<typename... Storages, typename PtrType, typename Method, typename... Args>
1530
already_AddRefed<detail::CancelableRunnableMethod<PtrType, Method>>
1531
NewCancelableRunnableMethod(const char* aName, PtrType&& aPtr, Method aMethod,
1532
                            Args&&... aArgs)
1533
0
{
1534
0
  static_assert(sizeof...(Storages) == sizeof...(Args),
1535
0
                "<Storages...> size should be equal to number of arguments");
1536
0
  return do_AddRef(
1537
0
    new detail::CancelableRunnableMethodImpl<PtrType, Method, Storages...>(
1538
0
      aName, std::forward<PtrType>(aPtr), aMethod, std::forward<Args>(aArgs)...));
1539
0
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::GestureEventListener*>::Type, void (mozilla::layers::GestureEventListener::*)(bool), true, (mozilla::RunnableKind)1>::base_type> mozilla::NewCancelableRunnableMethod<bool, mozilla::layers::GestureEventListener*, void (mozilla::layers::GestureEventListener::*)(bool), bool>(char const*, mozilla::layers::GestureEventListener*&&, void (mozilla::layers::GestureEventListener::*)(bool), bool&&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::ActiveElementManager*>::Type, void (mozilla::layers::ActiveElementManager::*)(nsCOMPtr<mozilla::dom::Element> const&), true, (mozilla::RunnableKind)1>::base_type> mozilla::NewCancelableRunnableMethod<nsCOMPtr<mozilla::dom::Element>, mozilla::layers::ActiveElementManager*, void (mozilla::layers::ActiveElementManager::*)(nsCOMPtr<mozilla::dom::Element> const&), nsCOMPtr<mozilla::dom::Element>&>(char const*, mozilla::layers::ActiveElementManager*&&, void (mozilla::layers::ActiveElementManager::*)(nsCOMPtr<mozilla::dom::Element> const&), nsCOMPtr<mozilla::dom::Element>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::layers::CompositorVsyncScheduler*>::Type, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)1>::base_type> mozilla::NewCancelableRunnableMethod<mozilla::TimeStamp, mozilla::layers::CompositorVsyncScheduler*, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), mozilla::TimeStamp&>(char const*, mozilla::layers::CompositorVsyncScheduler*&&, void (mozilla::layers::CompositorVsyncScheduler::*)(mozilla::TimeStamp), mozilla::TimeStamp&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<SoftwareDisplay*>::Type, void (SoftwareDisplay::*)(mozilla::TimeStamp), true, (mozilla::RunnableKind)1>::base_type> mozilla::NewCancelableRunnableMethod<mozilla::TimeStamp, SoftwareDisplay*, void (SoftwareDisplay::*)(mozilla::TimeStamp), mozilla::TimeStamp&>(char const*, SoftwareDisplay*&&, void (SoftwareDisplay::*)(mozilla::TimeStamp), mozilla::TimeStamp&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::dom::WorkerListener*>::Type, void (mozilla::dom::WorkerListener::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), true, (mozilla::RunnableKind)1>::base_type> mozilla::NewCancelableRunnableMethod<mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::dom::WorkerListener*, void (mozilla::dom::WorkerListener::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), mozilla::dom::ServiceWorkerRegistrationDescriptor const&>(char const*, mozilla::dom::WorkerListener*&&, void (mozilla::dom::WorkerListener::*)(mozilla::dom::ServiceWorkerRegistrationDescriptor const&), mozilla::dom::ServiceWorkerRegistrationDescriptor const&)
1540
1541
template<typename... Storages, typename PtrType, typename Method, typename... Args>
1542
already_AddRefed<detail::NonOwningCancelableRunnableMethod<PtrType, Method>>
1543
NewNonOwningCancelableRunnableMethod(const char* aName, PtrType&& aPtr,
1544
                                     Method aMethod, Args&&... aArgs)
1545
0
{
1546
0
  static_assert(sizeof...(Storages) == sizeof...(Args),
1547
0
                "<Storages...> size should be equal to number of arguments");
1548
0
  return do_AddRef(
1549
0
    new detail::NonOwningCancelableRunnableMethodImpl<PtrType, Method, Storages...>(
1550
0
      aName, std::forward<PtrType>(aPtr), aMethod, std::forward<Args>(aArgs)...));
1551
0
}
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::net::nsProtocolProxyService*&>::Type, nsresult (mozilla::net::nsProtocolProxyService::*)(bool, bool, nsresult, nsTSubstring<char> const&), false, (mozilla::RunnableKind)1>::base_type> mozilla::NewNonOwningCancelableRunnableMethod<bool, bool, nsresult, nsTString<char>, mozilla::net::nsProtocolProxyService*&, nsresult (mozilla::net::nsProtocolProxyService::*)(bool, bool, nsresult, nsTSubstring<char> const&), bool&, bool&, nsresult&, nsTString<char>&>(char const*, mozilla::net::nsProtocolProxyService*&, nsresult (mozilla::net::nsProtocolProxyService::*)(bool, bool, nsresult, nsTSubstring<char> const&), bool&, bool&, nsresult&, nsTString<char>&)
Unexecuted instantiation: already_AddRefed<nsRunnableMethodTraits<mozilla::RemoveReference<mozilla::plugins::PluginInstanceChild*>::Type, void (mozilla::plugins::PluginInstanceChild::*)(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool), false, (mozilla::RunnableKind)1>::base_type> mozilla::NewNonOwningCancelableRunnableMethod<gfxSurfaceType, mozilla::plugins::NPRemoteWindow, bool, mozilla::plugins::PluginInstanceChild*, void (mozilla::plugins::PluginInstanceChild::*)(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool), gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool>(char const*, mozilla::plugins::PluginInstanceChild*&&, void (mozilla::plugins::PluginInstanceChild::*)(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool), gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool&&)
1552
1553
template<typename... Storages,
1554
         typename PtrType,
1555
         typename Method,
1556
         typename... Args>
1557
already_AddRefed<detail::IdleRunnableMethod<PtrType, Method>>
1558
NewIdleRunnableMethod(const char* aName,
1559
                      PtrType&& aPtr,
1560
                      Method aMethod,
1561
                      Args&&... aArgs)
1562
0
{
1563
0
  static_assert(sizeof...(Storages) == sizeof...(Args),
1564
0
                "<Storages...> size should be equal to number of arguments");
1565
0
  return do_AddRef(
1566
0
    new detail::IdleRunnableMethodImpl<PtrType, Method, Storages...>(
1567
0
      aName, std::forward<PtrType>(aPtr), aMethod, std::forward<Args>(aArgs)...));
1568
0
}
1569
1570
template<typename... Storages,
1571
         typename PtrType,
1572
         typename Method,
1573
         typename... Args>
1574
already_AddRefed<detail::NonOwningIdleRunnableMethod<PtrType, Method>>
1575
NewNonOwningIdleRunnableMethod(const char* aName,
1576
                               PtrType&& aPtr,
1577
                               Method aMethod,
1578
                               Args&&... aArgs)
1579
{
1580
  static_assert(sizeof...(Storages) == sizeof...(Args),
1581
                "<Storages...> size should be equal to number of arguments");
1582
  return do_AddRef(
1583
    new detail::NonOwningIdleRunnableMethodImpl<PtrType, Method, Storages...>(
1584
      aName, std::forward<PtrType>(aPtr), aMethod, std::forward<Args>(aArgs)...));
1585
}
1586
1587
} // namespace mozilla
1588
1589
#endif  // XPCOM_GLUE_AVOID_NSPR
1590
1591
// This class is designed to be used when you have an event class E that has a
1592
// pointer back to resource class R.  If R goes away while E is still pending,
1593
// then it is important to "revoke" E so that it does not try use R after R has
1594
// been destroyed.  nsRevocableEventPtr makes it easy for R to manage such
1595
// situations:
1596
//
1597
//   class R;
1598
//
1599
//   class E : public mozilla::Runnable {
1600
//   public:
1601
//     void Revoke() {
1602
//       mResource = nullptr;
1603
//     }
1604
//   private:
1605
//     R *mResource;
1606
//   };
1607
//
1608
//   class R {
1609
//   public:
1610
//     void EventHandled() {
1611
//       mEvent.Forget();
1612
//     }
1613
//   private:
1614
//     nsRevocableEventPtr<E> mEvent;
1615
//   };
1616
//
1617
//   void R::PostEvent() {
1618
//     // Make sure any pending event is revoked.
1619
//     mEvent->Revoke();
1620
//
1621
//     nsCOMPtr<nsIRunnable> event = new E();
1622
//     if (NS_SUCCEEDED(NS_DispatchToCurrentThread(event))) {
1623
//       // Keep pointer to event so we can revoke it.
1624
//       mEvent = event;
1625
//     }
1626
//   }
1627
//
1628
//   NS_IMETHODIMP E::Run() {
1629
//     if (!mResource)
1630
//       return NS_OK;
1631
//     ...
1632
//     mResource->EventHandled();
1633
//     return NS_OK;
1634
//   }
1635
//
1636
template<class T>
1637
class nsRevocableEventPtr
1638
{
1639
public:
1640
0
  nsRevocableEventPtr() : mEvent(nullptr) {}
Unexecuted instantiation: nsRevocableEventPtr<mozilla::dom::Selection::ScrollSelectionIntoViewEvent>::nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<nsContentSink, void, false, (mozilla::RunnableKind)0> >::nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<nsIDocument, void, false, (mozilla::RunnableKind)0> >::nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::widget::PuppetWidget::PaintTask>::nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<mozilla::PresShell, void, true, (mozilla::RunnableKind)0> >::nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::PresShell::nsSynthMouseMoveEvent>::nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsRootPresContext::RunWillPaintObservers>::nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::AsyncScrollPortEvent>::nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::ScrolledAreaEvent>::nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsComboboxControlFrame::RedisplayTextEvent>::nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsTextControlFrame::ScrollOnFocusEvent>::nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsTreeBodyFrame::ScrollEvent>::nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsDocShell::RestorePresentationEvent>::nsRevocableEventPtr()
1641
0
  ~nsRevocableEventPtr() { Revoke(); }
Unexecuted instantiation: nsRevocableEventPtr<mozilla::dom::Selection::ScrollSelectionIntoViewEvent>::~nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<nsContentSink, void, false, (mozilla::RunnableKind)0> >::~nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<nsIDocument, void, false, (mozilla::RunnableKind)0> >::~nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::widget::PuppetWidget::PaintTask>::~nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<mozilla::PresShell, void, true, (mozilla::RunnableKind)0> >::~nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::PresShell::nsSynthMouseMoveEvent>::~nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsRootPresContext::RunWillPaintObservers>::~nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::AsyncScrollPortEvent>::~nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::ScrolledAreaEvent>::~nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsComboboxControlFrame::RedisplayTextEvent>::~nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsTextControlFrame::ScrollOnFocusEvent>::~nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsTreeBodyFrame::ScrollEvent>::~nsRevocableEventPtr()
Unexecuted instantiation: nsRevocableEventPtr<nsDocShell::RestorePresentationEvent>::~nsRevocableEventPtr()
1642
1643
  const nsRevocableEventPtr& operator=(RefPtr<T>&& aEvent)
1644
0
  {
1645
0
    if (mEvent != aEvent) {
1646
0
      Revoke();
1647
0
      mEvent = std::move(aEvent);
1648
0
    }
1649
0
    return *this;
1650
0
  }
Unexecuted instantiation: nsRevocableEventPtr<mozilla::dom::Selection::ScrollSelectionIntoViewEvent>::operator=(RefPtr<mozilla::dom::Selection::ScrollSelectionIntoViewEvent>&&)
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<nsContentSink, void, false, (mozilla::RunnableKind)0> >::operator=(RefPtr<nsRunnableMethod<nsContentSink, void, false, (mozilla::RunnableKind)0> >&&)
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<nsIDocument, void, false, (mozilla::RunnableKind)0> >::operator=(RefPtr<nsRunnableMethod<nsIDocument, void, false, (mozilla::RunnableKind)0> >&&)
Unexecuted instantiation: nsRevocableEventPtr<mozilla::widget::PuppetWidget::PaintTask>::operator=(RefPtr<mozilla::widget::PuppetWidget::PaintTask>&&)
Unexecuted instantiation: nsRevocableEventPtr<mozilla::PresShell::nsSynthMouseMoveEvent>::operator=(RefPtr<mozilla::PresShell::nsSynthMouseMoveEvent>&&)
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<mozilla::PresShell, void, true, (mozilla::RunnableKind)0> >::operator=(RefPtr<nsRunnableMethod<mozilla::PresShell, void, true, (mozilla::RunnableKind)0> >&&)
Unexecuted instantiation: nsRevocableEventPtr<nsRootPresContext::RunWillPaintObservers>::operator=(RefPtr<nsRootPresContext::RunWillPaintObservers>&&)
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::AsyncScrollPortEvent>::operator=(RefPtr<mozilla::ScrollFrameHelper::AsyncScrollPortEvent>&&)
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::ScrolledAreaEvent>::operator=(RefPtr<mozilla::ScrollFrameHelper::ScrolledAreaEvent>&&)
Unexecuted instantiation: nsRevocableEventPtr<nsComboboxControlFrame::RedisplayTextEvent>::operator=(RefPtr<nsComboboxControlFrame::RedisplayTextEvent>&&)
Unexecuted instantiation: nsRevocableEventPtr<nsTextControlFrame::ScrollOnFocusEvent>::operator=(RefPtr<nsTextControlFrame::ScrollOnFocusEvent>&&)
Unexecuted instantiation: nsRevocableEventPtr<nsTreeBodyFrame::ScrollEvent>::operator=(RefPtr<nsTreeBodyFrame::ScrollEvent>&&)
Unexecuted instantiation: nsRevocableEventPtr<nsDocShell::RestorePresentationEvent>::operator=(RefPtr<nsDocShell::RestorePresentationEvent>&&)
1651
1652
  void Revoke()
1653
0
  {
1654
0
    if (mEvent) {
1655
0
      mEvent->Revoke();
1656
0
      mEvent = nullptr;
1657
0
    }
1658
0
  }
Unexecuted instantiation: nsRevocableEventPtr<mozilla::dom::Selection::ScrollSelectionIntoViewEvent>::Revoke()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<nsContentSink, void, false, (mozilla::RunnableKind)0> >::Revoke()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<nsIDocument, void, false, (mozilla::RunnableKind)0> >::Revoke()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::widget::PuppetWidget::PaintTask>::Revoke()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::PresShell::nsSynthMouseMoveEvent>::Revoke()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<mozilla::PresShell, void, true, (mozilla::RunnableKind)0> >::Revoke()
Unexecuted instantiation: nsRevocableEventPtr<nsRootPresContext::RunWillPaintObservers>::Revoke()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::AsyncScrollPortEvent>::Revoke()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::ScrolledAreaEvent>::Revoke()
Unexecuted instantiation: nsRevocableEventPtr<nsComboboxControlFrame::RedisplayTextEvent>::Revoke()
Unexecuted instantiation: nsRevocableEventPtr<nsTextControlFrame::ScrollOnFocusEvent>::Revoke()
Unexecuted instantiation: nsRevocableEventPtr<nsTreeBodyFrame::ScrollEvent>::Revoke()
Unexecuted instantiation: nsRevocableEventPtr<nsDocShell::RestorePresentationEvent>::Revoke()
1659
1660
0
  void Forget() { mEvent = nullptr; }
Unexecuted instantiation: nsRevocableEventPtr<mozilla::dom::Selection::ScrollSelectionIntoViewEvent>::Forget()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<nsContentSink, void, false, (mozilla::RunnableKind)0> >::Forget()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<nsIDocument, void, false, (mozilla::RunnableKind)0> >::Forget()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::PresShell::nsSynthMouseMoveEvent>::Forget()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::AsyncScrollPortEvent>::Forget()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::ScrolledAreaEvent>::Forget()
Unexecuted instantiation: nsRevocableEventPtr<nsComboboxControlFrame::RedisplayTextEvent>::Forget()
Unexecuted instantiation: nsRevocableEventPtr<nsTextControlFrame::ScrollOnFocusEvent>::Forget()
Unexecuted instantiation: nsRevocableEventPtr<nsTreeBodyFrame::ScrollEvent>::Forget()
Unexecuted instantiation: nsRevocableEventPtr<nsDocShell::RestorePresentationEvent>::Forget()
1661
0
  bool IsPending() { return mEvent != nullptr; }
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<nsIDocument, void, false, (mozilla::RunnableKind)0> >::IsPending()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::widget::PuppetWidget::PaintTask>::IsPending()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::PresShell::nsSynthMouseMoveEvent>::IsPending()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<mozilla::PresShell, void, true, (mozilla::RunnableKind)0> >::IsPending()
Unexecuted instantiation: nsRevocableEventPtr<nsRootPresContext::RunWillPaintObservers>::IsPending()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::AsyncScrollPortEvent>::IsPending()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::ScrolledAreaEvent>::IsPending()
Unexecuted instantiation: nsRevocableEventPtr<nsTreeBodyFrame::ScrollEvent>::IsPending()
1662
0
  T* get() { return mEvent; }
Unexecuted instantiation: nsRevocableEventPtr<mozilla::dom::Selection::ScrollSelectionIntoViewEvent>::get()
Unexecuted instantiation: nsRevocableEventPtr<nsRunnableMethod<nsContentSink, void, false, (mozilla::RunnableKind)0> >::get()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::widget::PuppetWidget::PaintTask>::get()
Unexecuted instantiation: nsRevocableEventPtr<nsRootPresContext::RunWillPaintObservers>::get()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::AsyncScrollPortEvent>::get()
Unexecuted instantiation: nsRevocableEventPtr<mozilla::ScrollFrameHelper::ScrolledAreaEvent>::get()
Unexecuted instantiation: nsRevocableEventPtr<nsComboboxControlFrame::RedisplayTextEvent>::get()
Unexecuted instantiation: nsRevocableEventPtr<nsDocShell::RestorePresentationEvent>::get()
1663
1664
private:
1665
  // Not implemented
1666
  nsRevocableEventPtr(const nsRevocableEventPtr&);
1667
  nsRevocableEventPtr& operator=(const nsRevocableEventPtr&);
1668
1669
  RefPtr<T> mEvent;
1670
};
1671
1672
template <class T>
1673
inline already_AddRefed<T>
1674
do_AddRef(nsRevocableEventPtr<T>& aObj)
1675
0
{
1676
0
  return do_AddRef(aObj.get());
1677
0
}
1678
1679
/**
1680
 * A simple helper to suffix thread pool name
1681
 * with incremental numbers.
1682
 */
1683
class nsThreadPoolNaming
1684
{
1685
public:
1686
7
  nsThreadPoolNaming() : mCounter(0) {}
1687
1688
  /**
1689
   * Returns a thread name as "<aPoolName> #<n>" and increments the counter.
1690
   */
1691
  nsCString GetNextThreadName(const nsACString& aPoolName);
1692
1693
  template<size_t LEN>
1694
  nsCString GetNextThreadName(const char (&aPoolName)[LEN])
1695
0
  {
1696
0
    return GetNextThreadName(nsDependentCString(aPoolName, LEN - 1));
1697
0
  }
Unexecuted instantiation: nsTString<char> nsThreadPoolNaming::GetNextThreadName<5ul>(char const (&) [5ul])
Unexecuted instantiation: nsTString<char> nsThreadPoolNaming::GetNextThreadName<11ul>(char const (&) [11ul])
1698
1699
private:
1700
  mozilla::Atomic<uint32_t> mCounter;
1701
1702
  nsThreadPoolNaming(const nsThreadPoolNaming&) = delete;
1703
  void operator=(const nsThreadPoolNaming&) = delete;
1704
};
1705
1706
/**
1707
 * Thread priority in most operating systems affect scheduling, not IO.  This
1708
 * helper is used to set the current thread to low IO priority for the lifetime
1709
 * of the created object.  You can only use this low priority IO setting within
1710
 * the context of the current thread.
1711
 */
1712
class MOZ_STACK_CLASS nsAutoLowPriorityIO
1713
{
1714
public:
1715
  nsAutoLowPriorityIO();
1716
  ~nsAutoLowPriorityIO();
1717
1718
private:
1719
  bool lowIOPrioritySet;
1720
#if defined(XP_MACOSX)
1721
  int oldPriority;
1722
#endif
1723
};
1724
1725
void
1726
NS_SetMainThread();
1727
1728
// Used only on cooperatively scheduled "main" threads. Causes the thread to be
1729
// considered a main thread and also causes GetCurrentVirtualThread to return
1730
// aVirtualThread.
1731
void
1732
NS_SetMainThread(PRThread* aVirtualThread);
1733
1734
// Used only on cooperatively scheduled "main" threads. Causes the thread to no
1735
// longer be considered a main thread. Also causes GetCurrentVirtualThread() to
1736
// return a unique value.
1737
void
1738
NS_UnsetMainThread();
1739
1740
/**
1741
 * Return the expiration time of the next timer to run on the current
1742
 * thread.  If that expiration time is greater than aDefault, then
1743
 * return aDefault.  aSearchBound specifies a maximum number of timers
1744
 * to examine to find a timer on the current thread.  If no timer that
1745
 * will run on the current thread is found after examining
1746
 * aSearchBound timers, return the highest seen expiration time as a
1747
 * best effort guess.
1748
 *
1749
 * Timers with either the type nsITimer::TYPE_ONE_SHOT_LOW_PRIORITY or
1750
 * nsITIMER::TYPE_REPEATING_SLACK_LOW_PRIORITY will be skipped when
1751
 * searching for the next expiration time.  This enables timers to
1752
 * have lower priority than callbacks dispatched from
1753
 * nsIThread::IdleDispatch.
1754
 */
1755
extern mozilla::TimeStamp
1756
NS_GetTimerDeadlineHintOnCurrentThread(mozilla::TimeStamp aDefault, uint32_t aSearchBound);
1757
1758
namespace mozilla {
1759
1760
/**
1761
 * Cooperative thread scheduling is governed by two rules:
1762
 * - Only one thread in the pool of cooperatively scheduled threads runs at a
1763
 *   time.
1764
 * - Thread switching happens at well-understood safe points.
1765
 *
1766
 * In some cases we may want to treat all the threads in a cooperative pool as a
1767
 * single thread, while other parts of the code may want to view them as separate
1768
 * threads. GetCurrentVirtualThread() will return the same value for all
1769
 * threads in a cooperative thread pool. GetCurrentPhysicalThread will return a
1770
 * different value for each thread in the pool.
1771
 *
1772
 * Thread safety assertions are a concrete example where GetCurrentVirtualThread
1773
 * should be used. An object may want to assert that it only can be used on the
1774
 * thread that created it. Such assertions would normally prevent the object
1775
 * from being used on different cooperative threads. However, the object might
1776
 * really only care that it's used atomically. Cooperative scheduling guarantees
1777
 * that it will be (assuming we don't yield in the middle of modifying the
1778
 * object). So we can weaken the assertion to compare the virtual thread the
1779
 * object was created on to the virtual thread on which it's being used. This
1780
 * assertion allows the object to be used across threads in a cooperative thread
1781
 * pool while preventing accesses across preemptively scheduled threads (which
1782
 * would be unsafe).
1783
 */
1784
1785
// Returns the PRThread on which this code is running.
1786
PRThread*
1787
GetCurrentPhysicalThread();
1788
1789
// Returns a "virtual" PRThread that should only be used for comparison with
1790
// other calls to GetCurrentVirtualThread. Two threads in the same cooperative
1791
// thread pool will return the same virtual thread. Threads that are not
1792
// cooperatively scheduled will have their own unique virtual PRThread (which
1793
// will be equal to their physical PRThread).
1794
//
1795
// The return value of GetCurrentVirtualThread() is guaranteed not to change
1796
// throughout the lifetime of a thread.
1797
//
1798
// Note that the original main thread (the first one created in the process) is
1799
// considered as part of the pool of cooperative threads, so the return value of
1800
// GetCurrentVirtualThread() for this thread (throughout its lifetime, even
1801
// during shutdown) is the same as the return value from any other thread in the
1802
// cooperative pool.
1803
PRThread*
1804
GetCurrentVirtualThread();
1805
1806
// These functions return event targets that can be used to dispatch to the
1807
// current or main thread. They can also be used to test if you're on those
1808
// threads (via IsOnCurrentThread). These functions should be used in preference
1809
// to the nsIThread-based NS_Get{Current,Main}Thread functions since they will
1810
// return more useful answers in the case of threads sharing an event loop.
1811
1812
nsIEventTarget*
1813
GetCurrentThreadEventTarget();
1814
1815
nsIEventTarget*
1816
GetMainThreadEventTarget();
1817
1818
// These variants of the above functions assert that the given thread has a
1819
// serial event target (i.e., that it's not part of a thread pool) and returns
1820
// that.
1821
1822
nsISerialEventTarget*
1823
GetCurrentThreadSerialEventTarget();
1824
1825
nsISerialEventTarget*
1826
GetMainThreadSerialEventTarget();
1827
1828
} // namespace mozilla
1829
1830
#endif  // nsThreadUtils_h__