initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
34
libs/wxWidgets-3.3.1/misc/suppressions/codespell-lines
Normal file
34
libs/wxWidgets-3.3.1/misc/suppressions/codespell-lines
Normal file
@@ -0,0 +1,34 @@
|
||||
wxMessageBox(L"Salut \u00E0 toi!"); // U+00E0 is "Latin Small Letter a with Grave"
|
||||
wxMessageBox("Salut à toi!");
|
||||
wxMessageBox(wxString::FromUTF8("Salut \xC3\xA0 toi!"));
|
||||
<tt>(week|wee)(night|knights)</tt> matches all ten characters of "weeknights",
|
||||
expressions</em> (BRE). EREs are roughly those of the traditional @e egrep,
|
||||
@row2col{ <tt>b</tt> , Rest of RE is a BRE. }
|
||||
the ARE <tt>(?:</tt> or the BRE <tt>\(</tt>.
|
||||
return wxPrivate::wxAnyAsImpl<T>::DoAs(*this);
|
||||
static T DoAs(const wxAny& any)
|
||||
static wxString DoAs(const wxAny& any)
|
||||
removeable,
|
||||
virtual void HandleLineEvent( unsigned int n, bool doubleClick );
|
||||
sequence of labels is A, B, ..., Z, AA, AB, ..., AZ, BA, ..., ..., ZZ,
|
||||
wxEdge otherE,
|
||||
void swap(wxScopedPtr<T>& ot);
|
||||
SEH (structured exception handling) which currently means only Microsoft
|
||||
void Set(wxRelationship rel, wxWindowBase *otherW, wxEdge otherE, int val = 0, int marg = wxLAYOUT_DEFAULT_MARGIN);
|
||||
// Copyright: (c) 2009 Marcin Malich <me@malcom.pl>
|
||||
* All of the settings below require SEH support (__try/__catch) and can't work
|
||||
the version check in `include/wx/msw/seh.h` to suppress this warning for the
|
||||
#endif /* compiler doesn't support SEH */
|
||||
// Name: wx/msw/seh.h
|
||||
// Purpose: declarations for SEH (structured exceptions handling) support
|
||||
// 2019), i.e. SEH translator seems to work just fine without /EHa too, so
|
||||
// Purpose: helpers for the structured exception handling (SEH) under Win32
|
||||
* MinGW-w64 versions 7.3 and 8.1 (32-bit binaries use SJLJ exceptions, 64-bit ones use SEH, and all binaries use Win32 threads).
|
||||
static wxString ConvertFromBasic(const wxString& bre);
|
||||
This function can be used to convert @a bre using deprecated wxRE_BASIC
|
||||
static wxString ConvertFromBasic(const wxString& bre);
|
||||
@c makefile.unx in the sample directory to build it using the version of
|
||||
makefile.unx</code> in the sample directory to build it.
|
||||
bool AtLeast(int major, int minor = 0, int micro = 0) const
|
||||
bool AtLeast(int major, int minor = 0, int micro = 0) const;
|
||||
return AtLeast(0) || !m_name.empty() || !m_description.empty();
|
||||
4
libs/wxWidgets-3.3.1/misc/suppressions/codespell-words
Normal file
4
libs/wxWidgets-3.3.1/misc/suppressions/codespell-words
Normal file
@@ -0,0 +1,4 @@
|
||||
convertor
|
||||
copyable
|
||||
ot
|
||||
ser
|
||||
56
libs/wxWidgets-3.3.1/misc/suppressions/lsan
Normal file
56
libs/wxWidgets-3.3.1/misc/suppressions/lsan
Normal file
@@ -0,0 +1,56 @@
|
||||
# Leak sanitizer suppressions for wx, use it by setting
|
||||
# LSAN_OPTIONS=suppressions=<path-to-this-file>
|
||||
|
||||
# Known leaks in libfontconfig.so.1: note that you must have its debug symbols
|
||||
# installed for these suppressions to work.
|
||||
leak:FcConfigValues
|
||||
leak:FcLangSetCreate
|
||||
leak:FcPatternObjectInsertElt
|
||||
leak:FcValueListCreate
|
||||
leak:FcValueSave
|
||||
|
||||
# This leak happens during GTK initialization. Requires debug symbols for
|
||||
# libatk-bridge2.0.
|
||||
leak:atk_bridge_adaptor_init
|
||||
|
||||
# Leak in a function called from gtk_init_check() when using X RandR extension.
|
||||
# Requires debug symbols for libxrandr2.
|
||||
leak:doGetScreenResources
|
||||
|
||||
# There seem to be several actual (although not unbound) leaks inside Cairo or
|
||||
# pixman resulting in memory leak reports when calling various drawing
|
||||
# functions using CSS internally.
|
||||
leak:_cairo_image_surface_create_for_pixman_image
|
||||
leak:_cairo_image_surface_create_with_pixman_format
|
||||
leak:_cairo_surface_create_similar_image
|
||||
leak:_cairo_surface_create_similar_image
|
||||
leak:gtk_css_image_surface_draw
|
||||
leak:_gtk_css_image_draw
|
||||
|
||||
leak:create_bits
|
||||
leak:_pixman_bits_image_init
|
||||
leak:create_bits_image_internal
|
||||
leak:_cairo_image_surface_create_with_pixman_format
|
||||
leak:_cairo_surface_create_similar_image
|
||||
leak:_cairo_surface_create_similar_image
|
||||
leak:gtk_css_image_surface_draw
|
||||
leak:_gtk_css_image_draw
|
||||
|
||||
leak:_pixman_image_allocate
|
||||
leak:create_bits_image_internal
|
||||
leak:_cairo_image_surface_create_with_pixman_format
|
||||
leak:_cairo_surface_create_similar_image
|
||||
leak:_cairo_surface_create_similar_image
|
||||
leak:gtk_css_image_surface_draw
|
||||
leak:_gtk_css_image_draw
|
||||
|
||||
# Avoid leak reports whenever GtkPrintOperation is used (hopefully this is just
|
||||
# a one off allocation not freed and not an unbounded leak).
|
||||
leak:cups_request_printer_list_cb
|
||||
leak:cups_dispatch_watch_dispatch
|
||||
|
||||
# Avoid leak reports for glib one off allocations (see also glib own Valgrind
|
||||
# suppressions file glib.supp, found under /usr/share/glib-2.0/valgrind on
|
||||
# Linux systems).
|
||||
leak:g_malloc
|
||||
leak:g_quark_init
|
||||
Reference in New Issue
Block a user