本文整理汇总了C++中MOZ_COUNT_DTOR函数的典型用法代码示例。如果您正苦于以下问题:C++ MOZ_COUNT_DTOR函数的具体用法?C++ MOZ_COUNT_DTOR怎么用?C++ MOZ_COUNT_DTOR使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了MOZ_COUNT_DTOR函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: MOZ_COUNT_DTOR
TextureSource::~TextureSource()
{
MOZ_COUNT_DTOR(TextureSource);
}
示例2: MOZ_COUNT_DTOR
CopyableCanvasLayer::~CopyableCanvasLayer()
{
MOZ_COUNT_DTOR(CopyableCanvasLayer);
}
示例3: MOZ_COUNT_DTOR
SharedBufferMLGPU::~SharedBufferMLGPU() {
MOZ_COUNT_DTOR(SharedBufferMLGPU);
Unmap();
}
示例4: MOZ_COUNT_DTOR
Area::~Area()
{
MOZ_COUNT_DTOR(Area);
delete [] mCoords;
}
示例5: MOZ_COUNT_DTOR
virtual ~nsDisplayTextOverflowMarker() {
MOZ_COUNT_DTOR(nsDisplayTextOverflowMarker);
}
示例6: NS_ASSERTION
TableBackgroundPainter::TableBackgroundData::~TableBackgroundData()
{
NS_ASSERTION(!mSynthBorder, "must call Destroy before dtor");
MOZ_COUNT_DTOR(TableBackgroundData);
}
示例7: ProxyReleaseMainThread
_OldCacheLoad::~_OldCacheLoad()
{
ProxyReleaseMainThread(mAppCache);
MOZ_COUNT_DTOR(_OldCacheLoad);
}
示例8: MOZ_COUNT_DTOR
EVRCSpecificBox::~EVRCSpecificBox()
{
MOZ_COUNT_DTOR(EVRCSpecificBox);
}
示例9: MOZ_COUNT_DTOR
virtual ~nsDisplayNotation() {
MOZ_COUNT_DTOR(nsDisplayNotation);
}
示例10: MOZ_COUNT_DTOR
TextTrackManager::~TextTrackManager()
{
MOZ_COUNT_DTOR(TextTrackManager);
}
示例11: MOZ_COUNT_DTOR
CompositorChild::~CompositorChild()
{
MOZ_COUNT_DTOR(CompositorChild);
}
示例12: DeallocateDeviceData
ShmemTextureHost::~ShmemTextureHost()
{
DeallocateDeviceData();
delete mShmem;
MOZ_COUNT_DTOR(ShmemTextureHost);
}
示例13: MOZ_COUNT_DTOR
SharedRGBImage::~SharedRGBImage()
{
MOZ_COUNT_DTOR(SharedRGBImage);
}
示例14: MOZ_COUNT_DTOR
LayerTransactionParent::~LayerTransactionParent()
{
MOZ_COUNT_DTOR(LayerTransactionParent);
}
示例15: MOZ_COUNT_DTOR
AudioCaptureStream::~AudioCaptureStream()
{
MOZ_COUNT_DTOR(AudioCaptureStream);
mMixer.RemoveCallback(this);
}