Coverage Report

Created: 2018-09-25 14:53

/work/obj-fuzz/dist/include/mozilla/SegmentedVector.h
Line
Count
Source (jump to first uncovered line)
1
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
3
/* This Source Code Form is subject to the terms of the Mozilla Public
4
 * License, v. 2.0. If a copy of the MPL was not distributed with this
5
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6
7
// A simple segmented vector class.
8
//
9
// This class should be used in preference to mozilla::Vector or nsTArray when
10
// you are simply gathering items in order to later iterate over them.
11
//
12
// - In the case where you don't know the final size in advance, using
13
//   SegmentedVector avoids the need to repeatedly allocate increasingly large
14
//   buffers and copy the data into them.
15
//
16
// - In the case where you know the final size in advance and so can set the
17
//   capacity appropriately, using SegmentedVector still avoids the need for
18
//   large allocations (which can trigger OOMs).
19
20
#ifndef mozilla_SegmentedVector_h
21
#define mozilla_SegmentedVector_h
22
23
#include "mozilla/AllocPolicy.h"
24
#include "mozilla/Array.h"
25
#include "mozilla/Attributes.h"
26
#include "mozilla/LinkedList.h"
27
#include "mozilla/MemoryReporting.h"
28
#include "mozilla/Move.h"
29
#include "mozilla/TypeTraits.h"
30
31
#include <new>  // for placement new
32
33
namespace mozilla {
34
35
// |IdealSegmentSize| specifies how big each segment will be in bytes (or as
36
// close as is possible). Use the following guidelines to choose a size.
37
//
38
// - It should be a power-of-two, to avoid slop.
39
//
40
// - It should not be too small, so that segment allocations are infrequent,
41
//   and so that per-segment bookkeeping overhead is low. Typically each
42
//   segment should be able to hold hundreds of elements, at least.
43
//
44
// - It should not be too large, so that OOMs are unlikely when allocating
45
//   segments, and so that not too much space is wasted when the final segment
46
//   is not full.
47
//
48
// The ideal size depends on how the SegmentedVector is used and the size of
49
// |T|, but reasonable sizes include 1024, 4096 (the default), 8192, and 16384.
50
//
51
template<typename T,
52
         size_t IdealSegmentSize = 4096,
53
         typename AllocPolicy = MallocAllocPolicy>
54
class SegmentedVector : private AllocPolicy
55
{
56
  template<size_t SegmentCapacity>
57
  struct SegmentImpl
58
    : public mozilla::LinkedListElement<SegmentImpl<SegmentCapacity>>
59
  {
60
  private:
61
    uint32_t mLength;
62
    alignas(T) MOZ_INIT_OUTSIDE_CTOR unsigned char mData[sizeof(T) * SegmentCapacity];
63
64
    // Some versions of GCC treat it as a -Wstrict-aliasing violation (ergo a
65
    // -Werror compile error) to reinterpret_cast<> |mData| to |T*|, even
66
    // through |void*|.  Placing the latter cast in these separate functions
67
    // breaks the chain such that affected GCC versions no longer warn/error.
68
18.2M
    void* RawData() { return mData; }
mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::SegmentImpl<62ul>::RawData()
Line
Count
Source
68
42
    void* RawData() { return mData; }
Unexecuted instantiation: mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<JS::PersistentRooted<JSObject*>, 512ul, InfallibleAllocPolicy>::SegmentImpl<15ul>::RawData()
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Line
Count
Source
68
15.0M
    void* RawData() { return mData; }
mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::SegmentImpl<1364ul>::RawData()
Line
Count
Source
68
3.24M
    void* RawData() { return mData; }
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::SegmentImpl<340ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::SegmentImpl<1021ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::SegmentImpl<13ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::RawData()
69
70
  public:
71
17.1k
    SegmentImpl() : mLength(0) {}
mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::SegmentImpl<62ul>::SegmentImpl()
Line
Count
Source
71
3
    SegmentImpl() : mLength(0) {}
Unexecuted instantiation: mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<JS::PersistentRooted<JSObject*>, 512ul, InfallibleAllocPolicy>::SegmentImpl<15ul>::SegmentImpl()
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Line
Count
Source
71
14.7k
    SegmentImpl() : mLength(0) {}
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::SegmentImpl()
mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::SegmentImpl<1364ul>::SegmentImpl()
Line
Count
Source
71
2.38k
    SegmentImpl() : mLength(0) {}
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::SegmentImpl<340ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::SegmentImpl<1021ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::SegmentImpl<13ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::SegmentImpl()
72
73
    ~SegmentImpl()
74
14.7k
    {
75
7.51M
      for (uint32_t i = 0; i < mLength; i++) {
76
7.50M
        (*this)[i].~T();
77
7.50M
      }
78
14.7k
    }
Unexecuted instantiation: mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::SegmentImpl<62ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<JS::PersistentRooted<JSObject*>, 512ul, InfallibleAllocPolicy>::SegmentImpl<15ul>::~SegmentImpl()
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Line
Count
Source
74
14.7k
    {
75
7.51M
      for (uint32_t i = 0; i < mLength; i++) {
76
7.50M
        (*this)[i].~T();
77
7.50M
      }
78
14.7k
    }
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::SegmentImpl<1364ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::SegmentImpl<340ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::SegmentImpl<1021ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::SegmentImpl<13ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::~SegmentImpl()
79
80
10.7M
    uint32_t Length() const { return mLength; }
mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::SegmentImpl<62ul>::Length() const
Line
Count
Source
80
21
    uint32_t Length() const { return mLength; }
Unexecuted instantiation: mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<JS::PersistentRooted<JSObject*>, 512ul, InfallibleAllocPolicy>::SegmentImpl<15ul>::Length() const
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Line
Count
Source
80
7.53M
    uint32_t Length() const { return mLength; }
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::SegmentImpl<340ul>::Length() const
mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::SegmentImpl<1364ul>::Length() const
Line
Count
Source
80
3.24M
    uint32_t Length() const { return mLength; }
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::SegmentImpl<1021ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::SegmentImpl<13ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Length() const
81
82
18.2M
    T* Elems() { return reinterpret_cast<T*>(RawData()); }
mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::SegmentImpl<62ul>::Elems()
Line
Count
Source
82
42
    T* Elems() { return reinterpret_cast<T*>(RawData()); }
Unexecuted instantiation: mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<JS::PersistentRooted<JSObject*>, 512ul, InfallibleAllocPolicy>::SegmentImpl<15ul>::Elems()
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Line
Count
Source
82
15.0M
    T* Elems() { return reinterpret_cast<T*>(RawData()); }
mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::SegmentImpl<1364ul>::Elems()
Line
Count
Source
82
3.24M
    T* Elems() { return reinterpret_cast<T*>(RawData()); }
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::SegmentImpl<340ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::SegmentImpl<1021ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::SegmentImpl<13ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Elems()
83
84
    T& operator[](size_t aIndex)
85
18.2M
    {
86
18.2M
      MOZ_ASSERT(aIndex < mLength);
87
18.2M
      return Elems()[aIndex];
88
18.2M
    }
mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::SegmentImpl<62ul>::operator[](unsigned long)
Line
Count
Source
85
42
    {
86
42
      MOZ_ASSERT(aIndex < mLength);
87
42
      return Elems()[aIndex];
88
42
    }
Unexecuted instantiation: mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<JS::PersistentRooted<JSObject*>, 512ul, InfallibleAllocPolicy>::SegmentImpl<15ul>::operator[](unsigned long)
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Line
Count
Source
85
15.0M
    {
86
15.0M
      MOZ_ASSERT(aIndex < mLength);
87
15.0M
      return Elems()[aIndex];
88
15.0M
    }
mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::SegmentImpl<1364ul>::operator[](unsigned long)
Line
Count
Source
85
3.24M
    {
86
3.24M
      MOZ_ASSERT(aIndex < mLength);
87
3.24M
      return Elems()[aIndex];
88
3.24M
    }
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::SegmentImpl<340ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::SegmentImpl<1021ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::SegmentImpl<13ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::operator[](unsigned long)
89
90
    const T& operator[](size_t aIndex) const
91
    {
92
      MOZ_ASSERT(aIndex < mLength);
93
      return Elems()[aIndex];
94
    }
95
96
    template<typename U>
97
    void Append(U&& aU)
98
10.7M
    {
99
10.7M
      MOZ_ASSERT(mLength < SegmentCapacity);
100
10.7M
      // Pre-increment mLength so that the bounds-check in operator[] passes.
101
10.7M
      mLength++;
102
10.7M
      T* elem = &(*this)[mLength - 1];
103
10.7M
      new (elem) T(std::forward<U>(aU));
104
10.7M
    }
void mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::SegmentImpl<62ul>::Append<mozilla::JSHolderInfo>(mozilla::JSHolderInfo&&)
Line
Count
Source
98
3
    {
99
3
      MOZ_ASSERT(mLength < SegmentCapacity);
100
3
      // Pre-increment mLength so that the bounds-check in operator[] passes.
101
3
      mLength++;
102
3
      T* elem = &(*this)[mLength - 1];
103
3
      new (elem) T(std::forward<U>(aU));
104
3
    }
Unexecuted instantiation: void mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::Append<nsWrapperCache*&>(nsWrapperCache*&)
Unexecuted instantiation: void mozilla::SegmentedVector<JS::PersistentRooted<JSObject*>, 512ul, InfallibleAllocPolicy>::SegmentImpl<15ul>::Append<JS::PersistentRooted<JSObject*> >(JS::PersistentRooted<JSObject*>&&)
void mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<nsISupports> >(already_AddRefed<nsISupports>&&)
Line
Count
Source
98
7.50M
    {
99
7.50M
      MOZ_ASSERT(mLength < SegmentCapacity);
100
7.50M
      // Pre-increment mLength so that the bounds-check in operator[] passes.
101
7.50M
      mLength++;
102
7.50M
      T* elem = &(*this)[mLength - 1];
103
7.50M
      new (elem) T(std::forward<U>(aU));
104
7.50M
    }
Unexecuted instantiation: void mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::Append<JS::Value const&>(JS::Value const&)
Unexecuted instantiation: void mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::SegmentImpl<61ul>::Append<JSObject*&>(JSObject*&)
void mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::SegmentImpl<1364ul>::Append<nsPurpleBufferEntry>(nsPurpleBufferEntry&&)
Line
Count
Source
98
3.24M
    {
99
3.24M
      MOZ_ASSERT(mLength < SegmentCapacity);
100
3.24M
      // Pre-increment mLength so that the bounds-check in operator[] passes.
101
3.24M
      mLength++;
102
3.24M
      T* elem = &(*this)[mLength - 1];
103
3.24M
      new (elem) T(std::forward<U>(aU));
104
3.24M
    }
Unexecuted instantiation: void mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::SegmentImpl<340ul>::Append<SnowWhiteKiller::SnowWhiteObject&>(SnowWhiteKiller::SnowWhiteObject&)
Unexecuted instantiation: void mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::SegmentImpl<1021ul>::Append<PtrInfo*&>(PtrInfo*&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::SegmentImpl<13ul>::Append<mozilla::dom::Link*&>(mozilla::dom::Link*&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::AnonymousContent> >(already_AddRefed<mozilla::dom::AnonymousContent>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::AudioBuffer> >(already_AddRefed<mozilla::dom::AudioBuffer>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::AudioListener> >(already_AddRefed<mozilla::dom::AudioListener>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::AudioParam> >(already_AddRefed<mozilla::dom::AudioParam>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::AudioParamMap> >(already_AddRefed<mozilla::dom::AudioParamMap>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::AudioWorkletProcessor> >(already_AddRefed<mozilla::dom::AudioWorkletProcessor>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::BrowsingContext> >(already_AddRefed<mozilla::dom::BrowsingContext>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<mozilla::dom::MediaCapabilitiesInfo*&>(mozilla::dom::MediaCapabilitiesInfo*&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<nsMimeType> >(already_AddRefed<nsMimeType>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::PerformanceNavigation> >(already_AddRefed<mozilla::dom::PerformanceNavigation>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::PerformanceTiming> >(already_AddRefed<mozilla::dom::PerformanceTiming>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::PeriodicWave> >(already_AddRefed<mozilla::dom::PeriodicWave>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::PlacesEvent> >(already_AddRefed<mozilla::dom::PlacesEvent>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::PlacesVisit> >(already_AddRefed<mozilla::dom::PlacesVisit>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::PlacesWeakCallbackWrapper> >(already_AddRefed<mozilla::dom::PlacesWeakCallbackWrapper>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::PositionError> >(already_AddRefed<mozilla::dom::PositionError>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::SVGAngle> >(already_AddRefed<mozilla::dom::SVGAngle>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::SVGAnimatedAngle> >(already_AddRefed<mozilla::dom::SVGAnimatedAngle>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::SVGAnimatedBoolean> >(already_AddRefed<mozilla::dom::SVGAnimatedBoolean>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::SVGAnimatedLength> >(already_AddRefed<mozilla::dom::SVGAnimatedLength>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGAnimatedLengthList> >(already_AddRefed<mozilla::DOMSVGAnimatedLengthList>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::SVGAnimatedRect> >(already_AddRefed<mozilla::dom::SVGAnimatedRect>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::SVGAnimatedTransformList> >(already_AddRefed<mozilla::dom::SVGAnimatedTransformList>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::SVGMatrix> >(already_AddRefed<mozilla::dom::SVGMatrix>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegArcAbs> >(already_AddRefed<mozilla::DOMSVGPathSegArcAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegArcRel> >(already_AddRefed<mozilla::DOMSVGPathSegArcRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegClosePath> >(already_AddRefed<mozilla::DOMSVGPathSegClosePath>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicAbs> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicRel> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticAbs> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticRel> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegLinetoAbs> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegLinetoHorizontalAbs> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoHorizontalAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegLinetoHorizontalRel> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoHorizontalRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegLinetoRel> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegLinetoVerticalAbs> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoVerticalAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegLinetoVerticalRel> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoVerticalRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegMovetoAbs> >(already_AddRefed<mozilla::DOMSVGPathSegMovetoAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::DOMSVGPathSegMovetoRel> >(already_AddRefed<mozilla::DOMSVGPathSegMovetoRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::SVGTransform> >(already_AddRefed<mozilla::dom::SVGTransform>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::ScreenLuminance> >(already_AddRefed<mozilla::dom::ScreenLuminance>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::CSSPseudoElement> >(already_AddRefed<mozilla::dom::CSSPseudoElement>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::CanvasGradient> >(already_AddRefed<mozilla::dom::CanvasGradient>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::CanvasPattern> >(already_AddRefed<mozilla::dom::CanvasPattern>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::CanvasPath> >(already_AddRefed<mozilla::dom::CanvasPath>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<mozilla::dom::TextMetrics*&>(mozilla::dom::TextMetrics*&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::CheckerboardReportService> >(already_AddRefed<mozilla::dom::CheckerboardReportService>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<mozilla::dom::MozQueryInterface*&>(mozilla::dom::MozQueryInterface*&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<mozilla::dom::TextDecoder*&>(mozilla::dom::TextDecoder*&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<mozilla::dom::TextEncoder*&>(mozilla::dom::TextEncoder*&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::VRDisplayCapabilities> >(already_AddRefed<mozilla::dom::VRDisplayCapabilities>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::VREyeParameters> >(already_AddRefed<mozilla::dom::VREyeParameters>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::VRFieldOfView> >(already_AddRefed<mozilla::dom::VRFieldOfView>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::VRFrameData> >(already_AddRefed<mozilla::dom::VRFrameData>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::VRPose> >(already_AddRefed<mozilla::dom::VRPose>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::VRStageParameters> >(already_AddRefed<mozilla::dom::VRStageParameters>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::VRSubmitFrameResult> >(already_AddRefed<mozilla::dom::VRSubmitFrameResult>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::VideoPlaybackQuality> >(already_AddRefed<mozilla::dom::VideoPlaybackQuality>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionEXTColorBufferFloat> >(already_AddRefed<mozilla::WebGLExtensionEXTColorBufferFloat>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLSampler> >(already_AddRefed<mozilla::WebGLSampler>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLSync> >(already_AddRefed<mozilla::WebGLSync>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLTransformFeedback> >(already_AddRefed<mozilla::WebGLTransformFeedback>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionInstancedArrays> >(already_AddRefed<mozilla::WebGLExtensionInstancedArrays>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionBlendMinMax> >(already_AddRefed<mozilla::WebGLExtensionBlendMinMax>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionColorBufferHalfFloat> >(already_AddRefed<mozilla::WebGLExtensionColorBufferHalfFloat>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionDisjointTimerQuery> >(already_AddRefed<mozilla::WebGLExtensionDisjointTimerQuery>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionFragDepth> >(already_AddRefed<mozilla::WebGLExtensionFragDepth>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionSRGB> >(already_AddRefed<mozilla::WebGLExtensionSRGB>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionShaderTextureLod> >(already_AddRefed<mozilla::WebGLExtensionShaderTextureLod>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionTextureFilterAnisotropic> >(already_AddRefed<mozilla::WebGLExtensionTextureFilterAnisotropic>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionMOZDebug> >(already_AddRefed<mozilla::WebGLExtensionMOZDebug>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionElementIndexUint> >(already_AddRefed<mozilla::WebGLExtensionElementIndexUint>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionStandardDerivatives> >(already_AddRefed<mozilla::WebGLExtensionStandardDerivatives>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionTextureFloat> >(already_AddRefed<mozilla::WebGLExtensionTextureFloat>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionTextureFloatLinear> >(already_AddRefed<mozilla::WebGLExtensionTextureFloatLinear>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionTextureHalfFloat> >(already_AddRefed<mozilla::WebGLExtensionTextureHalfFloat>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionTextureHalfFloatLinear> >(already_AddRefed<mozilla::WebGLExtensionTextureHalfFloatLinear>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionVertexArray> >(already_AddRefed<mozilla::WebGLExtensionVertexArray>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionColorBufferFloat> >(already_AddRefed<mozilla::WebGLExtensionColorBufferFloat>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTextureASTC> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureASTC>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTextureATC> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureATC>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTextureES3> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureES3>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTextureETC1> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureETC1>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTexturePVRTC> >(already_AddRefed<mozilla::WebGLExtensionCompressedTexturePVRTC>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTextureS3TC> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureS3TC>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionDebugRendererInfo> >(already_AddRefed<mozilla::WebGLExtensionDebugRendererInfo>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionDebugShaders> >(already_AddRefed<mozilla::WebGLExtensionDebugShaders>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionDepthTexture> >(already_AddRefed<mozilla::WebGLExtensionDepthTexture>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionDrawBuffers> >(already_AddRefed<mozilla::WebGLExtensionDrawBuffers>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLExtensionLoseContext> >(already_AddRefed<mozilla::WebGLExtensionLoseContext>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLActiveInfo> >(already_AddRefed<mozilla::WebGLActiveInfo>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLBuffer> >(already_AddRefed<mozilla::WebGLBuffer>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLFramebuffer> >(already_AddRefed<mozilla::WebGLFramebuffer>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLProgram> >(already_AddRefed<mozilla::WebGLProgram>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLQuery> >(already_AddRefed<mozilla::WebGLQuery>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLRenderbuffer> >(already_AddRefed<mozilla::WebGLRenderbuffer>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLShader> >(already_AddRefed<mozilla::WebGLShader>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLShaderPrecisionFormat> >(already_AddRefed<mozilla::WebGLShaderPrecisionFormat>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLTexture> >(already_AddRefed<mozilla::WebGLTexture>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLUniformLocation> >(already_AddRefed<mozilla::WebGLUniformLocation>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::WebGLVertexArray> >(already_AddRefed<mozilla::WebGLVertexArray>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::Instance> >(already_AddRefed<mozilla::webgpu::Instance>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::Adapter> >(already_AddRefed<mozilla::webgpu::Adapter>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::AttachmentState> >(already_AddRefed<mozilla::webgpu::AttachmentState>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::BindGroup> >(already_AddRefed<mozilla::webgpu::BindGroup>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::BindGroupLayout> >(already_AddRefed<mozilla::webgpu::BindGroupLayout>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::BlendState> >(already_AddRefed<mozilla::webgpu::BlendState>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::Buffer> >(already_AddRefed<mozilla::webgpu::Buffer>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::CommandBuffer> >(already_AddRefed<mozilla::webgpu::CommandBuffer>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::CommandEncoder> >(already_AddRefed<mozilla::webgpu::CommandEncoder>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::ComputePipeline> >(already_AddRefed<mozilla::webgpu::ComputePipeline>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::DepthStencilState> >(already_AddRefed<mozilla::webgpu::DepthStencilState>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::Device> >(already_AddRefed<mozilla::webgpu::Device>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::Fence> >(already_AddRefed<mozilla::webgpu::Fence>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::InputState> >(already_AddRefed<mozilla::webgpu::InputState>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::LogEntry> >(already_AddRefed<mozilla::webgpu::LogEntry>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::PipelineLayout> >(already_AddRefed<mozilla::webgpu::PipelineLayout>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::Queue> >(already_AddRefed<mozilla::webgpu::Queue>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::RenderPipeline> >(already_AddRefed<mozilla::webgpu::RenderPipeline>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::Sampler> >(already_AddRefed<mozilla::webgpu::Sampler>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::ShaderModule> >(already_AddRefed<mozilla::webgpu::ShaderModule>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::SwapChain> >(already_AddRefed<mozilla::webgpu::SwapChain>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::Texture> >(already_AddRefed<mozilla::webgpu::Texture>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::webgpu::TextureView> >(already_AddRefed<mozilla::webgpu::TextureView>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::WebKitCSSMatrix> >(already_AddRefed<mozilla::dom::WebKitCSSMatrix>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::WorkerLocation> >(already_AddRefed<mozilla::dom::WorkerLocation>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::WorkerNavigator> >(already_AddRefed<mozilla::dom::WorkerNavigator>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<nsDOMSerializer*&>(nsDOMSerializer*&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<mozilla::dom::XPathEvaluator*&>(mozilla::dom::XPathEvaluator*&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<mozilla::dom::XPathExpression*&>(mozilla::dom::XPathExpression*&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::DOMMatrix> >(already_AddRefed<mozilla::dom::DOMMatrix>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::DOMMatrixReadOnly> >(already_AddRefed<mozilla::dom::DOMMatrixReadOnly>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::DOMPoint> >(already_AddRefed<mozilla::dom::DOMPoint>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::DOMPointReadOnly> >(already_AddRefed<mozilla::dom::DOMPointReadOnly>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::DOMQuad> >(already_AddRefed<mozilla::dom::DOMQuad>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::DeviceAcceleration> >(already_AddRefed<mozilla::dom::DeviceAcceleration>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::DeviceRotationRate> >(already_AddRefed<mozilla::dom::DeviceRotationRate>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::FileReaderSync> >(already_AddRefed<mozilla::dom::FileReaderSync>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::FontFaceSetIterator> >(already_AddRefed<mozilla::dom::FontFaceSetIterator>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::GamepadPose> >(already_AddRefed<mozilla::dom::GamepadPose>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<already_AddRefed<mozilla::dom::HTMLCanvasPrintState> >(already_AddRefed<mozilla::dom::HTMLCanvasPrintState>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<mozilla::dom::InspectorFontFace*&>(mozilla::dom::InspectorFontFace*&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::Append<mozilla::dom::CallbackObject::JSObjectsDropper*&>(mozilla::dom::CallbackObject::JSObjectsDropper*&)
105
106
    void PopLast()
107
0
    {
108
0
      MOZ_ASSERT(mLength > 0);
109
0
      (*this)[mLength - 1].~T();
110
0
      mLength--;
111
0
    }
Unexecuted instantiation: mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::SegmentImpl<62ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::SegmentImpl<1364ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentImpl<509ul>::PopLast()
112
  };
113
114
  // See how many we elements we can fit in a segment of IdealSegmentSize. If
115
  // IdealSegmentSize is too small, it'll be just one. The +1 is because
116
  // kSingleElementSegmentSize already accounts for one element.
117
  static const size_t kSingleElementSegmentSize = sizeof(SegmentImpl<1>);
118
  static const size_t kSegmentCapacity =
119
    kSingleElementSegmentSize <= IdealSegmentSize
120
    ? (IdealSegmentSize - kSingleElementSegmentSize) / sizeof(T) + 1
121
    : 1;
122
123
public:
124
  typedef SegmentImpl<kSegmentCapacity> Segment;
125
126
  // The |aIdealSegmentSize| is only for sanity checking. If it's specified, we
127
  // check that the actual segment size is as close as possible to it. This
128
  // serves as a sanity check for SegmentedVectorCapacity's capacity
129
  // computation.
130
  explicit SegmentedVector(size_t aIdealSegmentSize = 0)
131
30
  {
132
30
    // The difference between the actual segment size and the ideal segment
133
30
    // size should be less than the size of a single element... unless the
134
30
    // ideal size was too small, in which case the capacity should be one.
135
30
    MOZ_ASSERT_IF(
136
30
      aIdealSegmentSize != 0,
137
30
      (sizeof(Segment) > aIdealSegmentSize && kSegmentCapacity == 1) ||
138
30
      aIdealSegmentSize - sizeof(Segment) < sizeof(T));
139
30
  }
mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::SegmentedVector(unsigned long)
Line
Count
Source
131
3
  {
132
3
    // The difference between the actual segment size and the ideal segment
133
3
    // size should be less than the size of a single element... unless the
134
3
    // ideal size was too small, in which case the capacity should be one.
135
3
    MOZ_ASSERT_IF(
136
3
      aIdealSegmentSize != 0,
137
3
      (sizeof(Segment) > aIdealSegmentSize && kSegmentCapacity == 1) ||
138
3
      aIdealSegmentSize - sizeof(Segment) < sizeof(T));
139
3
  }
mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::SegmentedVector(unsigned long)
Line
Count
Source
131
3
  {
132
3
    // The difference between the actual segment size and the ideal segment
133
3
    // size should be less than the size of a single element... unless the
134
3
    // ideal size was too small, in which case the capacity should be one.
135
3
    MOZ_ASSERT_IF(
136
3
      aIdealSegmentSize != 0,
137
3
      (sizeof(Segment) > aIdealSegmentSize && kSegmentCapacity == 1) ||
138
3
      aIdealSegmentSize - sizeof(Segment) < sizeof(T));
139
3
  }
mozilla::SegmentedVector<JS::PersistentRooted<JSObject*>, 512ul, InfallibleAllocPolicy>::SegmentedVector(unsigned long)
Line
Count
Source
131
3
  {
132
3
    // The difference between the actual segment size and the ideal segment
133
3
    // size should be less than the size of a single element... unless the
134
3
    // ideal size was too small, in which case the capacity should be one.
135
3
    MOZ_ASSERT_IF(
136
3
      aIdealSegmentSize != 0,
137
3
      (sizeof(Segment) > aIdealSegmentSize && kSegmentCapacity == 1) ||
138
3
      aIdealSegmentSize - sizeof(Segment) < sizeof(T));
139
3
  }
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Line
Count
Source
131
18
  {
132
18
    // The difference between the actual segment size and the ideal segment
133
18
    // size should be less than the size of a single element... unless the
134
18
    // ideal size was too small, in which case the capacity should be one.
135
18
    MOZ_ASSERT_IF(
136
18
      aIdealSegmentSize != 0,
137
18
      (sizeof(Segment) > aIdealSegmentSize && kSegmentCapacity == 1) ||
138
18
      aIdealSegmentSize - sizeof(Segment) < sizeof(T));
139
18
  }
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::SegmentedVector(unsigned long)
mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::SegmentedVector(unsigned long)
Line
Count
Source
131
3
  {
132
3
    // The difference between the actual segment size and the ideal segment
133
3
    // size should be less than the size of a single element... unless the
134
3
    // ideal size was too small, in which case the capacity should be one.
135
3
    MOZ_ASSERT_IF(
136
3
      aIdealSegmentSize != 0,
137
3
      (sizeof(Segment) > aIdealSegmentSize && kSegmentCapacity == 1) ||
138
3
      aIdealSegmentSize - sizeof(Segment) < sizeof(T));
139
3
  }
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::SegmentedVector(unsigned long)
140
141
  SegmentedVector(SegmentedVector&& aOther)
142
    : mSegments(std::move(aOther.mSegments))
143
0
  {
144
0
  }
145
146
18
  ~SegmentedVector() { Clear(); }
Unexecuted instantiation: mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<JS::PersistentRooted<JSObject*>, 512ul, InfallibleAllocPolicy>::~SegmentedVector()
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Line
Count
Source
146
18
  ~SegmentedVector() { Clear(); }
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::~SegmentedVector()
147
148
0
  bool IsEmpty() const { return !mSegments.getFirst(); }
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::IsEmpty() const
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::IsEmpty() const
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::IsEmpty() const
149
150
  // Note that this is O(n) rather than O(1), but the constant factor is very
151
  // small because it only has to do one addition per segment.
152
  size_t Length() const
153
18
  {
154
18
    size_t n = 0;
155
18
    for (auto segment = mSegments.getFirst();
156
14.7k
         segment;
157
14.7k
         segment = segment->getNext()) {
158
14.7k
      n += segment->Length();
159
14.7k
    }
160
18
    return n;
161
18
  }
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Line
Count
Source
153
18
  {
154
18
    size_t n = 0;
155
18
    for (auto segment = mSegments.getFirst();
156
14.7k
         segment;
157
14.7k
         segment = segment->getNext()) {
158
14.7k
      n += segment->Length();
159
14.7k
    }
160
18
    return n;
161
18
  }
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::Length() const
162
163
  // Returns false if the allocation failed. (If you are using an infallible
164
  // allocation policy, use InfallibleAppend() instead.)
165
  template<typename U>
166
  MOZ_MUST_USE bool Append(U&& aU)
167
10.7M
  {
168
10.7M
    Segment* last = mSegments.getLast();
169
10.7M
    if (!last || last->Length() == kSegmentCapacity) {
170
17.1k
      last = this->template pod_malloc<Segment>(1);
171
17.1k
      if (!last) {
172
0
        return false;
173
0
      }
174
17.1k
      new (last) Segment();
175
17.1k
      mSegments.insertBack(last);
176
17.1k
    }
177
10.7M
    last->Append(std::forward<U>(aU));
178
10.7M
    return true;
179
10.7M
  }
bool mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::Append<mozilla::JSHolderInfo>(mozilla::JSHolderInfo&&)
Line
Count
Source
167
3
  {
168
3
    Segment* last = mSegments.getLast();
169
3
    if (!last || last->Length() == kSegmentCapacity) {
170
3
      last = this->template pod_malloc<Segment>(1);
171
3
      if (!last) {
172
0
        return false;
173
0
      }
174
3
      new (last) Segment();
175
3
      mSegments.insertBack(last);
176
3
    }
177
3
    last->Append(std::forward<U>(aU));
178
3
    return true;
179
3
  }
Unexecuted instantiation: bool mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::Append<nsWrapperCache*&>(nsWrapperCache*&)
Unexecuted instantiation: bool mozilla::SegmentedVector<JS::PersistentRooted<JSObject*>, 512ul, InfallibleAllocPolicy>::Append<JS::PersistentRooted<JSObject*> >(JS::PersistentRooted<JSObject*>&&)
bool mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<nsISupports> >(already_AddRefed<nsISupports>&&)
Line
Count
Source
167
7.50M
  {
168
7.50M
    Segment* last = mSegments.getLast();
169
7.50M
    if (!last || last->Length() == kSegmentCapacity) {
170
14.7k
      last = this->template pod_malloc<Segment>(1);
171
14.7k
      if (!last) {
172
0
        return false;
173
0
      }
174
14.7k
      new (last) Segment();
175
14.7k
      mSegments.insertBack(last);
176
14.7k
    }
177
7.50M
    last->Append(std::forward<U>(aU));
178
7.50M
    return true;
179
7.50M
  }
Unexecuted instantiation: bool mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::Append<JS::Value const&>(JS::Value const&)
Unexecuted instantiation: bool mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::Append<JSObject*&>(JSObject*&)
bool mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::Append<nsPurpleBufferEntry>(nsPurpleBufferEntry&&)
Line
Count
Source
167
3.24M
  {
168
3.24M
    Segment* last = mSegments.getLast();
169
3.24M
    if (!last || last->Length() == kSegmentCapacity) {
170
2.38k
      last = this->template pod_malloc<Segment>(1);
171
2.38k
      if (!last) {
172
0
        return false;
173
0
      }
174
2.38k
      new (last) Segment();
175
2.38k
      mSegments.insertBack(last);
176
2.38k
    }
177
3.24M
    last->Append(std::forward<U>(aU));
178
3.24M
    return true;
179
3.24M
  }
Unexecuted instantiation: bool mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::Append<SnowWhiteKiller::SnowWhiteObject&>(SnowWhiteKiller::SnowWhiteObject&)
Unexecuted instantiation: bool mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::Append<PtrInfo*&>(PtrInfo*&)
Unexecuted instantiation: bool mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::Append<mozilla::dom::Link*&>(mozilla::dom::Link*&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::AnonymousContent> >(already_AddRefed<mozilla::dom::AnonymousContent>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::AudioBuffer> >(already_AddRefed<mozilla::dom::AudioBuffer>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::AudioListener> >(already_AddRefed<mozilla::dom::AudioListener>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::AudioParam> >(already_AddRefed<mozilla::dom::AudioParam>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::AudioParamMap> >(already_AddRefed<mozilla::dom::AudioParamMap>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::AudioWorkletProcessor> >(already_AddRefed<mozilla::dom::AudioWorkletProcessor>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::BrowsingContext> >(already_AddRefed<mozilla::dom::BrowsingContext>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::Append<mozilla::dom::MediaCapabilitiesInfo*&>(mozilla::dom::MediaCapabilitiesInfo*&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<nsMimeType> >(already_AddRefed<nsMimeType>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::PerformanceNavigation> >(already_AddRefed<mozilla::dom::PerformanceNavigation>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::PerformanceTiming> >(already_AddRefed<mozilla::dom::PerformanceTiming>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::PeriodicWave> >(already_AddRefed<mozilla::dom::PeriodicWave>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::PlacesEvent> >(already_AddRefed<mozilla::dom::PlacesEvent>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::PlacesVisit> >(already_AddRefed<mozilla::dom::PlacesVisit>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::PlacesWeakCallbackWrapper> >(already_AddRefed<mozilla::dom::PlacesWeakCallbackWrapper>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::PositionError> >(already_AddRefed<mozilla::dom::PositionError>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::SVGAngle> >(already_AddRefed<mozilla::dom::SVGAngle>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::SVGAnimatedAngle> >(already_AddRefed<mozilla::dom::SVGAnimatedAngle>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::SVGAnimatedBoolean> >(already_AddRefed<mozilla::dom::SVGAnimatedBoolean>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::SVGAnimatedLength> >(already_AddRefed<mozilla::dom::SVGAnimatedLength>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGAnimatedLengthList> >(already_AddRefed<mozilla::DOMSVGAnimatedLengthList>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::SVGAnimatedRect> >(already_AddRefed<mozilla::dom::SVGAnimatedRect>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::SVGAnimatedTransformList> >(already_AddRefed<mozilla::dom::SVGAnimatedTransformList>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::SVGMatrix> >(already_AddRefed<mozilla::dom::SVGMatrix>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegArcAbs> >(already_AddRefed<mozilla::DOMSVGPathSegArcAbs>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegArcRel> >(already_AddRefed<mozilla::DOMSVGPathSegArcRel>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegClosePath> >(already_AddRefed<mozilla::DOMSVGPathSegClosePath>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicAbs> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicAbs>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicRel> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicRel>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticAbs> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticRel> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticRel>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegLinetoAbs> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoAbs>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegLinetoHorizontalAbs> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoHorizontalAbs>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegLinetoHorizontalRel> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoHorizontalRel>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegLinetoRel> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoRel>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegLinetoVerticalAbs> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoVerticalAbs>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegLinetoVerticalRel> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoVerticalRel>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegMovetoAbs> >(already_AddRefed<mozilla::DOMSVGPathSegMovetoAbs>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::DOMSVGPathSegMovetoRel> >(already_AddRefed<mozilla::DOMSVGPathSegMovetoRel>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::SVGTransform> >(already_AddRefed<mozilla::dom::SVGTransform>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::ScreenLuminance> >(already_AddRefed<mozilla::dom::ScreenLuminance>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::CSSPseudoElement> >(already_AddRefed<mozilla::dom::CSSPseudoElement>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::CanvasGradient> >(already_AddRefed<mozilla::dom::CanvasGradient>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::CanvasPattern> >(already_AddRefed<mozilla::dom::CanvasPattern>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::CanvasPath> >(already_AddRefed<mozilla::dom::CanvasPath>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::Append<mozilla::dom::TextMetrics*&>(mozilla::dom::TextMetrics*&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::CheckerboardReportService> >(already_AddRefed<mozilla::dom::CheckerboardReportService>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::Append<mozilla::dom::MozQueryInterface*&>(mozilla::dom::MozQueryInterface*&)
Unexecuted instantiation: bool mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::Append<mozilla::dom::TextDecoder*&>(mozilla::dom::TextDecoder*&)
Unexecuted instantiation: bool mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::Append<mozilla::dom::TextEncoder*&>(mozilla::dom::TextEncoder*&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::VRDisplayCapabilities> >(already_AddRefed<mozilla::dom::VRDisplayCapabilities>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::VREyeParameters> >(already_AddRefed<mozilla::dom::VREyeParameters>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::VRFieldOfView> >(already_AddRefed<mozilla::dom::VRFieldOfView>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::VRFrameData> >(already_AddRefed<mozilla::dom::VRFrameData>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::VRPose> >(already_AddRefed<mozilla::dom::VRPose>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::VRStageParameters> >(already_AddRefed<mozilla::dom::VRStageParameters>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::VRSubmitFrameResult> >(already_AddRefed<mozilla::dom::VRSubmitFrameResult>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::VideoPlaybackQuality> >(already_AddRefed<mozilla::dom::VideoPlaybackQuality>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionEXTColorBufferFloat> >(already_AddRefed<mozilla::WebGLExtensionEXTColorBufferFloat>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLSampler> >(already_AddRefed<mozilla::WebGLSampler>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLSync> >(already_AddRefed<mozilla::WebGLSync>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLTransformFeedback> >(already_AddRefed<mozilla::WebGLTransformFeedback>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionInstancedArrays> >(already_AddRefed<mozilla::WebGLExtensionInstancedArrays>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionBlendMinMax> >(already_AddRefed<mozilla::WebGLExtensionBlendMinMax>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionColorBufferHalfFloat> >(already_AddRefed<mozilla::WebGLExtensionColorBufferHalfFloat>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionDisjointTimerQuery> >(already_AddRefed<mozilla::WebGLExtensionDisjointTimerQuery>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionFragDepth> >(already_AddRefed<mozilla::WebGLExtensionFragDepth>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionSRGB> >(already_AddRefed<mozilla::WebGLExtensionSRGB>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionShaderTextureLod> >(already_AddRefed<mozilla::WebGLExtensionShaderTextureLod>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionTextureFilterAnisotropic> >(already_AddRefed<mozilla::WebGLExtensionTextureFilterAnisotropic>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionMOZDebug> >(already_AddRefed<mozilla::WebGLExtensionMOZDebug>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionElementIndexUint> >(already_AddRefed<mozilla::WebGLExtensionElementIndexUint>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionStandardDerivatives> >(already_AddRefed<mozilla::WebGLExtensionStandardDerivatives>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionTextureFloat> >(already_AddRefed<mozilla::WebGLExtensionTextureFloat>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionTextureFloatLinear> >(already_AddRefed<mozilla::WebGLExtensionTextureFloatLinear>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionTextureHalfFloat> >(already_AddRefed<mozilla::WebGLExtensionTextureHalfFloat>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionTextureHalfFloatLinear> >(already_AddRefed<mozilla::WebGLExtensionTextureHalfFloatLinear>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionVertexArray> >(already_AddRefed<mozilla::WebGLExtensionVertexArray>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionColorBufferFloat> >(already_AddRefed<mozilla::WebGLExtensionColorBufferFloat>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTextureASTC> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureASTC>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTextureATC> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureATC>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTextureES3> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureES3>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTextureETC1> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureETC1>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTexturePVRTC> >(already_AddRefed<mozilla::WebGLExtensionCompressedTexturePVRTC>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTextureS3TC> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureS3TC>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionDebugRendererInfo> >(already_AddRefed<mozilla::WebGLExtensionDebugRendererInfo>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionDebugShaders> >(already_AddRefed<mozilla::WebGLExtensionDebugShaders>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionDepthTexture> >(already_AddRefed<mozilla::WebGLExtensionDepthTexture>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionDrawBuffers> >(already_AddRefed<mozilla::WebGLExtensionDrawBuffers>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLExtensionLoseContext> >(already_AddRefed<mozilla::WebGLExtensionLoseContext>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLActiveInfo> >(already_AddRefed<mozilla::WebGLActiveInfo>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLBuffer> >(already_AddRefed<mozilla::WebGLBuffer>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLFramebuffer> >(already_AddRefed<mozilla::WebGLFramebuffer>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLProgram> >(already_AddRefed<mozilla::WebGLProgram>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLQuery> >(already_AddRefed<mozilla::WebGLQuery>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLRenderbuffer> >(already_AddRefed<mozilla::WebGLRenderbuffer>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLShader> >(already_AddRefed<mozilla::WebGLShader>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLShaderPrecisionFormat> >(already_AddRefed<mozilla::WebGLShaderPrecisionFormat>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLTexture> >(already_AddRefed<mozilla::WebGLTexture>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLUniformLocation> >(already_AddRefed<mozilla::WebGLUniformLocation>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::WebGLVertexArray> >(already_AddRefed<mozilla::WebGLVertexArray>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::Instance> >(already_AddRefed<mozilla::webgpu::Instance>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::Adapter> >(already_AddRefed<mozilla::webgpu::Adapter>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::AttachmentState> >(already_AddRefed<mozilla::webgpu::AttachmentState>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::BindGroup> >(already_AddRefed<mozilla::webgpu::BindGroup>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::BindGroupLayout> >(already_AddRefed<mozilla::webgpu::BindGroupLayout>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::BlendState> >(already_AddRefed<mozilla::webgpu::BlendState>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::Buffer> >(already_AddRefed<mozilla::webgpu::Buffer>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::CommandBuffer> >(already_AddRefed<mozilla::webgpu::CommandBuffer>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::CommandEncoder> >(already_AddRefed<mozilla::webgpu::CommandEncoder>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::ComputePipeline> >(already_AddRefed<mozilla::webgpu::ComputePipeline>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::DepthStencilState> >(already_AddRefed<mozilla::webgpu::DepthStencilState>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::Device> >(already_AddRefed<mozilla::webgpu::Device>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::Fence> >(already_AddRefed<mozilla::webgpu::Fence>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::InputState> >(already_AddRefed<mozilla::webgpu::InputState>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::LogEntry> >(already_AddRefed<mozilla::webgpu::LogEntry>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::PipelineLayout> >(already_AddRefed<mozilla::webgpu::PipelineLayout>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::Queue> >(already_AddRefed<mozilla::webgpu::Queue>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::RenderPipeline> >(already_AddRefed<mozilla::webgpu::RenderPipeline>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::Sampler> >(already_AddRefed<mozilla::webgpu::Sampler>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::ShaderModule> >(already_AddRefed<mozilla::webgpu::ShaderModule>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::SwapChain> >(already_AddRefed<mozilla::webgpu::SwapChain>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::Texture> >(already_AddRefed<mozilla::webgpu::Texture>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::webgpu::TextureView> >(already_AddRefed<mozilla::webgpu::TextureView>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::WebKitCSSMatrix> >(already_AddRefed<mozilla::dom::WebKitCSSMatrix>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::WorkerLocation> >(already_AddRefed<mozilla::dom::WorkerLocation>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::WorkerNavigator> >(already_AddRefed<mozilla::dom::WorkerNavigator>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::Append<nsDOMSerializer*&>(nsDOMSerializer*&)
Unexecuted instantiation: bool mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::Append<mozilla::dom::XPathEvaluator*&>(mozilla::dom::XPathEvaluator*&)
Unexecuted instantiation: bool mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::Append<mozilla::dom::XPathExpression*&>(mozilla::dom::XPathExpression*&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::DOMMatrix> >(already_AddRefed<mozilla::dom::DOMMatrix>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::DOMMatrixReadOnly> >(already_AddRefed<mozilla::dom::DOMMatrixReadOnly>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::DOMPoint> >(already_AddRefed<mozilla::dom::DOMPoint>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::DOMPointReadOnly> >(already_AddRefed<mozilla::dom::DOMPointReadOnly>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::DOMQuad> >(already_AddRefed<mozilla::dom::DOMQuad>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::DeviceAcceleration> >(already_AddRefed<mozilla::dom::DeviceAcceleration>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::DeviceRotationRate> >(already_AddRefed<mozilla::dom::DeviceRotationRate>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::FileReaderSync> >(already_AddRefed<mozilla::dom::FileReaderSync>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::FontFaceSetIterator> >(already_AddRefed<mozilla::dom::FontFaceSetIterator>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::GamepadPose> >(already_AddRefed<mozilla::dom::GamepadPose>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::Append<already_AddRefed<mozilla::dom::HTMLCanvasPrintState> >(already_AddRefed<mozilla::dom::HTMLCanvasPrintState>&&)
Unexecuted instantiation: bool mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::Append<mozilla::dom::InspectorFontFace*&>(mozilla::dom::InspectorFontFace*&)
Unexecuted instantiation: bool mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::Append<mozilla::dom::CallbackObject::JSObjectsDropper*&>(mozilla::dom::CallbackObject::JSObjectsDropper*&)
180
181
  // You should probably only use this instead of Append() if you are using an
182
  // infallible allocation policy. It will crash if the allocation fails.
183
  template<typename U>
184
  void InfallibleAppend(U&& aU)
185
7.50M
  {
186
7.50M
    bool ok = Append(std::forward<U>(aU));
187
7.50M
    MOZ_RELEASE_ASSERT(ok);
188
7.50M
  }
void mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::InfallibleAppend<mozilla::JSHolderInfo>(mozilla::JSHolderInfo&&)
Line
Count
Source
185
3
  {
186
3
    bool ok = Append(std::forward<U>(aU));
187
3
    MOZ_RELEASE_ASSERT(ok);
188
3
  }
Unexecuted instantiation: void mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::InfallibleAppend<nsWrapperCache*&>(nsWrapperCache*&)
Unexecuted instantiation: void mozilla::SegmentedVector<JS::PersistentRooted<JSObject*>, 512ul, InfallibleAllocPolicy>::InfallibleAppend<JS::PersistentRooted<JSObject*> >(JS::PersistentRooted<JSObject*>&&)
void mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<nsISupports> >(already_AddRefed<nsISupports>&&)
Line
Count
Source
185
7.50M
  {
186
7.50M
    bool ok = Append(std::forward<U>(aU));
187
7.50M
    MOZ_RELEASE_ASSERT(ok);
188
7.50M
  }
Unexecuted instantiation: void mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::InfallibleAppend<JS::Value const&>(JS::Value const&)
Unexecuted instantiation: void mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::InfallibleAppend<JSObject*&>(JSObject*&)
Unexecuted instantiation: void mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::InfallibleAppend<SnowWhiteKiller::SnowWhiteObject&>(SnowWhiteKiller::SnowWhiteObject&)
Unexecuted instantiation: void mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::InfallibleAppend<PtrInfo*&>(PtrInfo*&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::InfallibleAppend<mozilla::dom::Link*&>(mozilla::dom::Link*&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::AnonymousContent> >(already_AddRefed<mozilla::dom::AnonymousContent>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::AudioBuffer> >(already_AddRefed<mozilla::dom::AudioBuffer>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::AudioListener> >(already_AddRefed<mozilla::dom::AudioListener>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::AudioParam> >(already_AddRefed<mozilla::dom::AudioParam>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::AudioParamMap> >(already_AddRefed<mozilla::dom::AudioParamMap>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::AudioWorkletProcessor> >(already_AddRefed<mozilla::dom::AudioWorkletProcessor>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::BrowsingContext> >(already_AddRefed<mozilla::dom::BrowsingContext>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<mozilla::dom::MediaCapabilitiesInfo*&>(mozilla::dom::MediaCapabilitiesInfo*&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<nsMimeType> >(already_AddRefed<nsMimeType>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::PerformanceNavigation> >(already_AddRefed<mozilla::dom::PerformanceNavigation>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::PerformanceTiming> >(already_AddRefed<mozilla::dom::PerformanceTiming>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::PeriodicWave> >(already_AddRefed<mozilla::dom::PeriodicWave>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::PlacesEvent> >(already_AddRefed<mozilla::dom::PlacesEvent>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::PlacesVisit> >(already_AddRefed<mozilla::dom::PlacesVisit>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::PlacesWeakCallbackWrapper> >(already_AddRefed<mozilla::dom::PlacesWeakCallbackWrapper>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::PositionError> >(already_AddRefed<mozilla::dom::PositionError>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::SVGAngle> >(already_AddRefed<mozilla::dom::SVGAngle>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::SVGAnimatedAngle> >(already_AddRefed<mozilla::dom::SVGAnimatedAngle>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::SVGAnimatedBoolean> >(already_AddRefed<mozilla::dom::SVGAnimatedBoolean>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::SVGAnimatedLength> >(already_AddRefed<mozilla::dom::SVGAnimatedLength>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGAnimatedLengthList> >(already_AddRefed<mozilla::DOMSVGAnimatedLengthList>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::SVGAnimatedRect> >(already_AddRefed<mozilla::dom::SVGAnimatedRect>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::SVGAnimatedTransformList> >(already_AddRefed<mozilla::dom::SVGAnimatedTransformList>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::SVGMatrix> >(already_AddRefed<mozilla::dom::SVGMatrix>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegArcAbs> >(already_AddRefed<mozilla::DOMSVGPathSegArcAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegArcRel> >(already_AddRefed<mozilla::DOMSVGPathSegArcRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegClosePath> >(already_AddRefed<mozilla::DOMSVGPathSegClosePath>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicAbs> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicRel> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticAbs> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticRel> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel> >(already_AddRefed<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegLinetoAbs> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegLinetoHorizontalAbs> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoHorizontalAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegLinetoHorizontalRel> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoHorizontalRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegLinetoRel> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegLinetoVerticalAbs> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoVerticalAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegLinetoVerticalRel> >(already_AddRefed<mozilla::DOMSVGPathSegLinetoVerticalRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegMovetoAbs> >(already_AddRefed<mozilla::DOMSVGPathSegMovetoAbs>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::DOMSVGPathSegMovetoRel> >(already_AddRefed<mozilla::DOMSVGPathSegMovetoRel>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::SVGTransform> >(already_AddRefed<mozilla::dom::SVGTransform>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::ScreenLuminance> >(already_AddRefed<mozilla::dom::ScreenLuminance>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::CSSPseudoElement> >(already_AddRefed<mozilla::dom::CSSPseudoElement>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::CanvasGradient> >(already_AddRefed<mozilla::dom::CanvasGradient>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::CanvasPattern> >(already_AddRefed<mozilla::dom::CanvasPattern>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::CanvasPath> >(already_AddRefed<mozilla::dom::CanvasPath>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<mozilla::dom::TextMetrics*&>(mozilla::dom::TextMetrics*&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::CheckerboardReportService> >(already_AddRefed<mozilla::dom::CheckerboardReportService>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<mozilla::dom::MozQueryInterface*&>(mozilla::dom::MozQueryInterface*&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<mozilla::dom::TextDecoder*&>(mozilla::dom::TextDecoder*&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<mozilla::dom::TextEncoder*&>(mozilla::dom::TextEncoder*&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::VRDisplayCapabilities> >(already_AddRefed<mozilla::dom::VRDisplayCapabilities>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::VREyeParameters> >(already_AddRefed<mozilla::dom::VREyeParameters>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::VRFieldOfView> >(already_AddRefed<mozilla::dom::VRFieldOfView>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::VRFrameData> >(already_AddRefed<mozilla::dom::VRFrameData>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::VRPose> >(already_AddRefed<mozilla::dom::VRPose>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::VRStageParameters> >(already_AddRefed<mozilla::dom::VRStageParameters>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::VRSubmitFrameResult> >(already_AddRefed<mozilla::dom::VRSubmitFrameResult>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::VideoPlaybackQuality> >(already_AddRefed<mozilla::dom::VideoPlaybackQuality>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionEXTColorBufferFloat> >(already_AddRefed<mozilla::WebGLExtensionEXTColorBufferFloat>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLSampler> >(already_AddRefed<mozilla::WebGLSampler>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLSync> >(already_AddRefed<mozilla::WebGLSync>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLTransformFeedback> >(already_AddRefed<mozilla::WebGLTransformFeedback>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionInstancedArrays> >(already_AddRefed<mozilla::WebGLExtensionInstancedArrays>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionBlendMinMax> >(already_AddRefed<mozilla::WebGLExtensionBlendMinMax>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionColorBufferHalfFloat> >(already_AddRefed<mozilla::WebGLExtensionColorBufferHalfFloat>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionDisjointTimerQuery> >(already_AddRefed<mozilla::WebGLExtensionDisjointTimerQuery>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionFragDepth> >(already_AddRefed<mozilla::WebGLExtensionFragDepth>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionSRGB> >(already_AddRefed<mozilla::WebGLExtensionSRGB>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionShaderTextureLod> >(already_AddRefed<mozilla::WebGLExtensionShaderTextureLod>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionTextureFilterAnisotropic> >(already_AddRefed<mozilla::WebGLExtensionTextureFilterAnisotropic>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionMOZDebug> >(already_AddRefed<mozilla::WebGLExtensionMOZDebug>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionElementIndexUint> >(already_AddRefed<mozilla::WebGLExtensionElementIndexUint>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionStandardDerivatives> >(already_AddRefed<mozilla::WebGLExtensionStandardDerivatives>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionTextureFloat> >(already_AddRefed<mozilla::WebGLExtensionTextureFloat>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionTextureFloatLinear> >(already_AddRefed<mozilla::WebGLExtensionTextureFloatLinear>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionTextureHalfFloat> >(already_AddRefed<mozilla::WebGLExtensionTextureHalfFloat>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionTextureHalfFloatLinear> >(already_AddRefed<mozilla::WebGLExtensionTextureHalfFloatLinear>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionVertexArray> >(already_AddRefed<mozilla::WebGLExtensionVertexArray>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionColorBufferFloat> >(already_AddRefed<mozilla::WebGLExtensionColorBufferFloat>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionCompressedTextureASTC> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureASTC>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionCompressedTextureATC> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureATC>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionCompressedTextureES3> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureES3>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionCompressedTextureETC1> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureETC1>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionCompressedTexturePVRTC> >(already_AddRefed<mozilla::WebGLExtensionCompressedTexturePVRTC>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionCompressedTextureS3TC> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureS3TC>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB> >(already_AddRefed<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionDebugRendererInfo> >(already_AddRefed<mozilla::WebGLExtensionDebugRendererInfo>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionDebugShaders> >(already_AddRefed<mozilla::WebGLExtensionDebugShaders>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionDepthTexture> >(already_AddRefed<mozilla::WebGLExtensionDepthTexture>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionDrawBuffers> >(already_AddRefed<mozilla::WebGLExtensionDrawBuffers>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLExtensionLoseContext> >(already_AddRefed<mozilla::WebGLExtensionLoseContext>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLActiveInfo> >(already_AddRefed<mozilla::WebGLActiveInfo>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLBuffer> >(already_AddRefed<mozilla::WebGLBuffer>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLFramebuffer> >(already_AddRefed<mozilla::WebGLFramebuffer>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLProgram> >(already_AddRefed<mozilla::WebGLProgram>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLQuery> >(already_AddRefed<mozilla::WebGLQuery>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLRenderbuffer> >(already_AddRefed<mozilla::WebGLRenderbuffer>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLShader> >(already_AddRefed<mozilla::WebGLShader>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLShaderPrecisionFormat> >(already_AddRefed<mozilla::WebGLShaderPrecisionFormat>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLTexture> >(already_AddRefed<mozilla::WebGLTexture>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLUniformLocation> >(already_AddRefed<mozilla::WebGLUniformLocation>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::WebGLVertexArray> >(already_AddRefed<mozilla::WebGLVertexArray>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::Instance> >(already_AddRefed<mozilla::webgpu::Instance>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::Adapter> >(already_AddRefed<mozilla::webgpu::Adapter>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::AttachmentState> >(already_AddRefed<mozilla::webgpu::AttachmentState>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::BindGroup> >(already_AddRefed<mozilla::webgpu::BindGroup>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::BindGroupLayout> >(already_AddRefed<mozilla::webgpu::BindGroupLayout>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::BlendState> >(already_AddRefed<mozilla::webgpu::BlendState>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::Buffer> >(already_AddRefed<mozilla::webgpu::Buffer>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::CommandBuffer> >(already_AddRefed<mozilla::webgpu::CommandBuffer>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::CommandEncoder> >(already_AddRefed<mozilla::webgpu::CommandEncoder>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::ComputePipeline> >(already_AddRefed<mozilla::webgpu::ComputePipeline>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::DepthStencilState> >(already_AddRefed<mozilla::webgpu::DepthStencilState>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::Device> >(already_AddRefed<mozilla::webgpu::Device>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::Fence> >(already_AddRefed<mozilla::webgpu::Fence>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::InputState> >(already_AddRefed<mozilla::webgpu::InputState>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::LogEntry> >(already_AddRefed<mozilla::webgpu::LogEntry>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::PipelineLayout> >(already_AddRefed<mozilla::webgpu::PipelineLayout>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::Queue> >(already_AddRefed<mozilla::webgpu::Queue>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::RenderPipeline> >(already_AddRefed<mozilla::webgpu::RenderPipeline>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::Sampler> >(already_AddRefed<mozilla::webgpu::Sampler>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::ShaderModule> >(already_AddRefed<mozilla::webgpu::ShaderModule>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::SwapChain> >(already_AddRefed<mozilla::webgpu::SwapChain>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::Texture> >(already_AddRefed<mozilla::webgpu::Texture>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::webgpu::TextureView> >(already_AddRefed<mozilla::webgpu::TextureView>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::WebKitCSSMatrix> >(already_AddRefed<mozilla::dom::WebKitCSSMatrix>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::WorkerLocation> >(already_AddRefed<mozilla::dom::WorkerLocation>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::WorkerNavigator> >(already_AddRefed<mozilla::dom::WorkerNavigator>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<nsDOMSerializer*&>(nsDOMSerializer*&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<mozilla::dom::XPathEvaluator*&>(mozilla::dom::XPathEvaluator*&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<mozilla::dom::XPathExpression*&>(mozilla::dom::XPathExpression*&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::DOMMatrix> >(already_AddRefed<mozilla::dom::DOMMatrix>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::DOMMatrixReadOnly> >(already_AddRefed<mozilla::dom::DOMMatrixReadOnly>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::DOMPoint> >(already_AddRefed<mozilla::dom::DOMPoint>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::DOMPointReadOnly> >(already_AddRefed<mozilla::dom::DOMPointReadOnly>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::DOMQuad> >(already_AddRefed<mozilla::dom::DOMQuad>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::DeviceAcceleration> >(already_AddRefed<mozilla::dom::DeviceAcceleration>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::DeviceRotationRate> >(already_AddRefed<mozilla::dom::DeviceRotationRate>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::FileReaderSync> >(already_AddRefed<mozilla::dom::FileReaderSync>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::FontFaceSetIterator> >(already_AddRefed<mozilla::dom::FontFaceSetIterator>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::GamepadPose> >(already_AddRefed<mozilla::dom::GamepadPose>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<already_AddRefed<mozilla::dom::HTMLCanvasPrintState> >(already_AddRefed<mozilla::dom::HTMLCanvasPrintState>&&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<mozilla::dom::InspectorFontFace*&>(mozilla::dom::InspectorFontFace*&)
Unexecuted instantiation: void mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::InfallibleAppend<mozilla::dom::CallbackObject::JSObjectsDropper*&>(mozilla::dom::CallbackObject::JSObjectsDropper*&)
189
190
  void Clear()
191
20
  {
192
20
    Segment* segment;
193
20
    while ((segment = mSegments.popFirst())) {
194
0
      segment->~Segment();
195
0
      this->free_(segment, 1);
196
0
    }
197
20
  }
Unexecuted instantiation: mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::Clear()
mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::Clear()
Line
Count
Source
191
1
  {
192
1
    Segment* segment;
193
1
    while ((segment = mSegments.popFirst())) {
194
0
      segment->~Segment();
195
0
      this->free_(segment, 1);
196
0
    }
197
1
  }
mozilla::SegmentedVector<JS::PersistentRooted<JSObject*>, 512ul, InfallibleAllocPolicy>::Clear()
Line
Count
Source
191
1
  {
192
1
    Segment* segment;
193
1
    while ((segment = mSegments.popFirst())) {
194
0
      segment->~Segment();
195
0
      this->free_(segment, 1);
196
0
    }
197
1
  }
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Line
Count
Source
191
18
  {
192
18
    Segment* segment;
193
18
    while ((segment = mSegments.popFirst())) {
194
0
      segment->~Segment();
195
0
      this->free_(segment, 1);
196
0
    }
197
18
  }
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::Clear()
198
199
  T& GetLast()
200
3
  {
201
3
    MOZ_ASSERT(!IsEmpty());
202
3
    Segment* last = mSegments.getLast();
203
3
    return (*last)[last->Length() - 1];
204
3
  }
mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::GetLast()
Line
Count
Source
200
3
  {
201
3
    MOZ_ASSERT(!IsEmpty());
202
3
    Segment* last = mSegments.getLast();
203
3
    return (*last)[last->Length() - 1];
204
3
  }
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::GetLast()
205
206
  const T& GetLast() const
207
  {
208
    MOZ_ASSERT(!IsEmpty());
209
    Segment* last = mSegments.getLast();
210
    return (*last)[last->Length() - 1];
211
  }
212
213
  void PopLast()
214
0
  {
215
0
    MOZ_ASSERT(!IsEmpty());
216
0
    Segment* last = mSegments.getLast();
217
0
    last->PopLast();
218
0
    if (!last->Length()) {
219
0
      mSegments.popLast();
220
0
      last->~Segment();
221
0
      this->free_(last, 1);
222
0
    }
223
0
  }
224
225
  // Equivalent to calling |PopLast| |aNumElements| times, but potentially
226
  // more efficient.
227
  void PopLastN(uint32_t aNumElements)
228
18
  {
229
18
    MOZ_ASSERT(aNumElements <= Length());
230
18
231
18
    Segment* last;
232
18
233
18
    // Pop full segments for as long as we can.  Note that this loop
234
18
    // cleanly handles the case when the initial last segment is not
235
18
    // full and we are popping more elements than said segment contains.
236
14.7k
    do {
237
14.7k
      last = mSegments.getLast();
238
14.7k
239
14.7k
      // The list is empty.  We're all done.
240
14.7k
      if (!last) {
241
0
        return;
242
0
      }
243
14.7k
244
14.7k
      // Check to see if the list contains too many elements.  Handle
245
14.7k
      // that in the epilogue.
246
14.7k
      uint32_t segmentLen = last->Length();
247
14.7k
      if (segmentLen > aNumElements) {
248
0
        break;
249
0
      }
250
14.7k
251
14.7k
      // Destroying the segment destroys all elements contained therein.
252
14.7k
      mSegments.popLast();
253
14.7k
      last->~Segment();
254
14.7k
      this->free_(last, 1);
255
14.7k
256
14.7k
      MOZ_ASSERT(aNumElements >= segmentLen);
257
14.7k
      aNumElements -= segmentLen;
258
14.7k
      if (aNumElements == 0) {
259
18
        return;
260
18
      }
261
14.7k
    } while (true);
262
18
263
18
    // Handle the case where the last segment contains more elements
264
18
    // than we want to pop.
265
18
    MOZ_ASSERT(last);
266
0
    MOZ_ASSERT(last == mSegments.getLast());
267
0
    MOZ_ASSERT(aNumElements < last->Length());
268
0
    for (uint32_t i = 0; i < aNumElements; ++i) {
269
0
      last->PopLast();
270
0
    }
271
0
    MOZ_ASSERT(last->Length() != 0);
272
0
  }
mozilla::SegmentedVector<nsCOMPtr<nsISupports>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Line
Count
Source
228
18
  {
229
18
    MOZ_ASSERT(aNumElements <= Length());
230
18
231
18
    Segment* last;
232
18
233
18
    // Pop full segments for as long as we can.  Note that this loop
234
18
    // cleanly handles the case when the initial last segment is not
235
18
    // full and we are popping more elements than said segment contains.
236
14.7k
    do {
237
14.7k
      last = mSegments.getLast();
238
14.7k
239
14.7k
      // The list is empty.  We're all done.
240
14.7k
      if (!last) {
241
0
        return;
242
0
      }
243
14.7k
244
14.7k
      // Check to see if the list contains too many elements.  Handle
245
14.7k
      // that in the epilogue.
246
14.7k
      uint32_t segmentLen = last->Length();
247
14.7k
      if (segmentLen > aNumElements) {
248
0
        break;
249
0
      }
250
14.7k
251
14.7k
      // Destroying the segment destroys all elements contained therein.
252
14.7k
      mSegments.popLast();
253
14.7k
      last->~Segment();
254
14.7k
      this->free_(last, 1);
255
14.7k
256
14.7k
      MOZ_ASSERT(aNumElements >= segmentLen);
257
14.7k
      aNumElements -= segmentLen;
258
14.7k
      if (aNumElements == 0) {
259
18
        return;
260
18
      }
261
14.7k
    } while (true);
262
18
263
18
    // Handle the case where the last segment contains more elements
264
18
    // than we want to pop.
265
18
    MOZ_ASSERT(last);
266
0
    MOZ_ASSERT(last == mSegments.getLast());
267
0
    MOZ_ASSERT(aNumElements < last->Length());
268
0
    for (uint32_t i = 0; i < aNumElements; ++i) {
269
0
      last->PopLast();
270
0
    }
271
0
    MOZ_ASSERT(last->Length() != 0);
272
0
  }
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AnonymousContent>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioBuffer>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioListener>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParam>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioParamMap>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::AudioWorkletProcessor>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::BrowsingContext>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MediaCapabilitiesInfo>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<nsMimeType>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceNavigation>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PerformanceTiming>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PeriodicWave>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesEvent>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesVisit>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PlacesWeakCallbackWrapper>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::PositionError>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAngle>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedAngle>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedBoolean>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedLength>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGAnimatedLengthList>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedRect>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGAnimatedTransformList>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGMatrix>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcAbs>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegArcRel>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegClosePath>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicAbs>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicRel>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoCubicSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticAbs>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticRel>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothAbs>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegCurvetoQuadraticSmoothRel>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalAbs>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoHorizontalRel>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoRel>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalAbs>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegLinetoVerticalRel>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoAbs>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::DOMSVGPathSegMovetoRel>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::SVGTransform>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::ScreenLuminance>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CSSPseudoElement>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasGradient>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPattern>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CanvasPath>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextMetrics>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::CheckerboardReportService>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::MozQueryInterface>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextDecoder>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::TextEncoder>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRDisplayCapabilities>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VREyeParameters>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFieldOfView>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRFrameData>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRPose>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRStageParameters>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VRSubmitFrameResult>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::VideoPlaybackQuality>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionEXTColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSampler>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLSync>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTransformFeedback>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionInstancedArrays>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionBlendMinMax>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDisjointTimerQuery>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionFragDepth>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionSRGB>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionShaderTextureLod>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFilterAnisotropic>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionMOZDebug>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionElementIndexUint>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionStandardDerivatives>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloat>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloat>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionTextureHalfFloatLinear>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionColorBufferFloat>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureASTC>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureATC>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureES3>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureETC1>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTexturePVRTC>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionCompressedTextureS3TC_SRGB>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugRendererInfo>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDebugShaders>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDepthTexture>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionDrawBuffers>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLExtensionLoseContext>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLActiveInfo>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLBuffer>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLFramebuffer>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLProgram>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLQuery>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLRenderbuffer>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShader>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLShaderPrecisionFormat>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLTexture>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLUniformLocation>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::WebGLVertexArray>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Instance>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Adapter>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::AttachmentState>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroup>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BindGroupLayout>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::BlendState>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Buffer>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandBuffer>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::CommandEncoder>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ComputePipeline>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::DepthStencilState>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Device>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Fence>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::InputState>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::LogEntry>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::PipelineLayout>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Queue>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::RenderPipeline>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Sampler>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::ShaderModule>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::SwapChain>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::Texture>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::webgpu::TextureView>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WebKitCSSMatrix>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerLocation>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::WorkerNavigator>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<nsDOMSerializer>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathEvaluator>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::XPathExpression>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrix>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMMatrixReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPoint>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMPointReadOnly>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DOMQuad>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceAcceleration>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::DeviceRotationRate>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FileReaderSync>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::FontFaceSetIterator>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::GamepadPose>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<RefPtr<mozilla::dom::HTMLCanvasPrintState>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::InspectorFontFace>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
Unexecuted instantiation: mozilla::SegmentedVector<nsAutoPtr<mozilla::dom::CallbackObject::JSObjectsDropper>, 4096ul, mozilla::MallocAllocPolicy>::PopLastN(unsigned int)
273
274
  // Use this class to iterate over a SegmentedVector, like so:
275
  //
276
  //  for (auto iter = v.Iter(); !iter.Done(); iter.Next()) {
277
  //    MyElem& elem = iter.Get();
278
  //    f(elem);
279
  //  }
280
  //
281
  // Note, adding new entries to the SegmentedVector while using iterators
282
  // is supported, but removing is not!
283
  // If an iterator has entered Done() state, adding more entries to the
284
  // vector doesn't affect it.
285
  class IterImpl
286
  {
287
    friend class SegmentedVector;
288
289
    Segment* mSegment;
290
    size_t mIndex;
291
292
    explicit IterImpl(SegmentedVector* aVector, bool aFromFirst)
293
      : mSegment(aFromFirst ? aVector->mSegments.getFirst() :
294
                              aVector->mSegments.getLast())
295
      , mIndex(aFromFirst ? 0 :
296
                            (mSegment ? mSegment->Length() - 1 : 0))
297
19
    {
298
19
      MOZ_ASSERT_IF(mSegment, mSegment->Length() > 0);
299
19
    }
mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::IterImpl::IterImpl(mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>*, bool)
Line
Count
Source
297
18
    {
298
18
      MOZ_ASSERT_IF(mSegment, mSegment->Length() > 0);
299
18
    }
mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::IterImpl::IterImpl(mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>*, bool)
Line
Count
Source
297
1
    {
298
1
      MOZ_ASSERT_IF(mSegment, mSegment->Length() > 0);
299
1
    }
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::IterImpl::IterImpl(mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>*, bool)
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::IterImpl::IterImpl(mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>*, bool)
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::IterImpl::IterImpl(mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>*, bool)
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::IterImpl::IterImpl(mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>*, bool)
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::IterImpl::IterImpl(mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>*, bool)
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::IterImpl::IterImpl(mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>*, bool)
300
301
  public:
302
37
    bool Done() const { return !mSegment; }
mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::IterImpl::Done() const
Line
Count
Source
302
36
    bool Done() const { return !mSegment; }
mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::IterImpl::Done() const
Line
Count
Source
302
1
    bool Done() const { return !mSegment; }
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::IterImpl::Done() const
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::IterImpl::Done() const
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::IterImpl::Done() const
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::IterImpl::Done() const
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::IterImpl::Done() const
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::IterImpl::Done() const
303
304
    T& Get()
305
36
    {
306
36
      MOZ_ASSERT(!Done());
307
36
      return (*mSegment)[mIndex];
308
36
    }
mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::IterImpl::Get()
Line
Count
Source
305
36
    {
306
36
      MOZ_ASSERT(!Done());
307
36
      return (*mSegment)[mIndex];
308
36
    }
Unexecuted instantiation: mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::IterImpl::Get()
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::IterImpl::Get()
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::IterImpl::Get()
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::IterImpl::Get()
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::IterImpl::Get()
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::IterImpl::Get()
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::IterImpl::Get()
309
310
    const T& Get() const
311
    {
312
      MOZ_ASSERT(!Done());
313
      return (*mSegment)[mIndex];
314
    }
315
316
    void Next()
317
18
    {
318
18
      MOZ_ASSERT(!Done());
319
18
      mIndex++;
320
18
      if (mIndex == mSegment->Length()) {
321
18
        mSegment = mSegment->getNext();
322
18
        mIndex = 0;
323
18
      }
324
18
    }
mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::IterImpl::Next()
Line
Count
Source
317
18
    {
318
18
      MOZ_ASSERT(!Done());
319
18
      mIndex++;
320
18
      if (mIndex == mSegment->Length()) {
321
18
        mSegment = mSegment->getNext();
322
18
        mIndex = 0;
323
18
      }
324
18
    }
Unexecuted instantiation: mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::IterImpl::Next()
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::IterImpl::Next()
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::IterImpl::Next()
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::IterImpl::Next()
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::IterImpl::Next()
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::IterImpl::Next()
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::IterImpl::Next()
325
326
    void Prev()
327
0
    {
328
0
      MOZ_ASSERT(!Done());
329
0
      if (mIndex == 0) {
330
0
        mSegment = mSegment->getPrevious();
331
0
        if (mSegment) {
332
0
          mIndex = mSegment->Length() - 1;
333
0
        }
334
0
      } else {
335
0
        --mIndex;
336
0
      }
337
0
    }
338
  };
339
340
19
  IterImpl Iter() { return IterImpl(this, true); }
mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::Iter()
Line
Count
Source
340
18
  IterImpl Iter() { return IterImpl(this, true); }
mozilla::SegmentedVector<nsWrapperCache*, 512ul, InfallibleAllocPolicy>::Iter()
Line
Count
Source
340
1
  IterImpl Iter() { return IterImpl(this, true); }
Unexecuted instantiation: mozilla::SegmentedVector<SnowWhiteKiller::SnowWhiteObject, 8192ul, InfallibleAllocPolicy>::Iter()
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::Iter()
Unexecuted instantiation: mozilla::SegmentedVector<JS::Value, 512ul, InfallibleAllocPolicy>::Iter()
Unexecuted instantiation: mozilla::SegmentedVector<JSObject*, 512ul, InfallibleAllocPolicy>::Iter()
Unexecuted instantiation: mozilla::SegmentedVector<PtrInfo*, 8192ul, InfallibleAllocPolicy>::Iter()
Unexecuted instantiation: mozilla::SegmentedVector<nsCOMPtr<mozilla::dom::Link>, 128ul, InfallibleAllocPolicy>::Iter()
341
0
  IterImpl IterFromLast() { return IterImpl(this, false); }
342
343
  // Measure the memory consumption of the vector excluding |this|. Note that
344
  // it only measures the vector itself. If the vector elements contain
345
  // pointers to other memory blocks, those blocks must be measured separately
346
  // during a subsequent iteration over the vector.
347
  size_t SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf) const
348
0
  {
349
0
    return mSegments.sizeOfExcludingThis(aMallocSizeOf);
350
0
  }
Unexecuted instantiation: mozilla::SegmentedVector<mozilla::JSHolderInfo, 1024ul, InfallibleAllocPolicy>::SizeOfExcludingThis(unsigned long (*)(void const*)) const
Unexecuted instantiation: mozilla::SegmentedVector<nsPurpleBufferEntry, 32760ul, InfallibleAllocPolicy>::SizeOfExcludingThis(unsigned long (*)(void const*)) const
351
352
  // Like sizeOfExcludingThis(), but measures |this| as well.
353
  size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const
354
  {
355
    return aMallocSizeOf(this) + SizeOfExcludingThis(aMallocSizeOf);
356
  }
357
358
private:
359
  mozilla::LinkedList<Segment> mSegments;
360
};
361
362
} // namespace mozilla
363
364
#endif /* mozilla_SegmentedVector_h */