office-gobmx/solenv/vs/LibreOffice.natstepfilter
Mike Kaganski 4108a59dec Add VclPtr operators to natstepfilter
And fix a vector-related filter

Change-Id: Icd3f5bd5a04a1385dff3f3413792a7aad544a506
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166029
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2024-04-13 01:19:45 +02:00

37 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<StepFilter xmlns="http://schemas.microsoft.com/vstudio/debugger/natstepfilter/2010">
<Function>
<Name>std::unique_ptr&lt;.*&gt;::operator-&gt;</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<Name>std::shared_ptr&lt;.*&gt;::operator-&gt;</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<Name>std::vector&lt;.*&gt;::operator[]</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<Name>tools::SvRef&lt;.*&gt;::operator-&gt;</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<Name>com::sun::star::uno::Reference&lt;.*&gt;::operator-&gt;</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<Name>rtl::Reference&lt;.*&gt;::operator-&gt;</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<Name>VclPtr&lt;.*&gt;::operator-&gt;</Name>
<Action>NoStepInto</Action>
</Function>
<Function>
<!-- VclPtr<VirtualDevice>::operator VirtualDevice * -->
<!-- It seems that natstepfilter regex doesn't support backreferences -->
<Name>VclPtr&lt;.*&gt;::operator .* \*</Name>
<Action>NoStepInto</Action>
</Function>
</StepFilter>