libabigail/tests/data/test-read-dwarf/libtest24-drop-fns-2.so.abi
Dodji Seketeli cac59a176a Bug 26769 - Fix missing types in abixml output
The symptom of the issue at hand is that sometimes there can be types
missing from the abixml output.  This happens when analysing some C++
code bases.

The core of the issue is the following.  Support we have a type
"struct S" defined somewhere as:

    struct S // #0
    {
      int  dm1;
      char dm2;
    };

    S s;

Suppose that in another translation unit, we have the class 'S' being
extended to add a member type to it:

    struct S // #1
    {
      typedef int dm1_type;
    };

    typedef S::dm1_type Integer;
    Integer something;

When emitting the abixml for the codebase, the definition of the
typedef S::dm1_type can be missing.

Note that in location #1, struct S is considered declaration-only.
It's definition is in another translation unit, in location #0.

So the abixml writer emits the 'struct S' defined in location #0, but
forgets to emit the 'struct S' in #1, which is indirectly used for the
sole purpose of using its member type S::dm1_type.

This patch emits the S::dm1_type type that is mistakenly forgotten
today.

Now that the "struct S" of #1 is also emitted, a tangent problem is
uncovered: S in #0 can be wrongly thought to be equivalent to S in #1,
for ABI purposes
This is because of an ODR-based optimization that is used for C++.
That is, the two struct S can be wrongly considered equivalent just
because they have the same name.  Note that ODR means "One Definition Rule[1]"

This patch removes the ODR-based optimization and thus fixes many of
the issues uncovered by the previous changes.

The patch also uncovered that some non-static variables were sometimes wrongly
being added to the set of exported variables, while libabigail reads
corpora from abixml.  The patch fixes this as well.

[1]: One Definition Rule: https://en.wikipedia.org/wiki/One_Definition_Rule

	* include/abg-corpus.h (corpus::{record_canonical_type,
	lookup_canonical_type}): Remove function declarations.
	* src/abg-corpus-priv.h (corpus::priv::canonical_types_): Remove
	data member.
	* src/abg-corpus.cc (corpus::{record_canonical_type,
	lookup_canonical_type}): Remove functions.
	* src/abg-ir.cc (type_eligible_for_odr_based_comparison): Remove
	static function.
	(type_base::get_canonical_type_for): Don't perform the ODR-based
	optimization for C++ anymore.
	* src/abg-reader.cc
	(read_context&::maybe_add_var_to_exported_decls): Don't add a
	variable that hasn't been added to its scope.  Otherwise, it means
	we added a variable that wasn't yet properly constructed.  Also
	add a new overload for var_decl_sptr&.
	(build_var_decl): Do not add the var to its the set of exported
	declaration before we are sure it has been fully constructed and
	added to the scope it belongs.
	(build_class_decl): Only add *static* data members to the list of
	exported declarations.
	(handle_var_decl): A var decl seen here is a global variable
	declaration.  Add it to the list of exported declarations.
	* src/abg-writer.cc (write_context::decl_only_type_is_emitted):
	Constify parameter.
	(write_translation_unit): Do not forget to emit referenced types
	that were maybe not canonicalized.  Also, avoid using noop_deleter
	when it's not necessary.
	(write_namespace_decl): Do not forget to emit canonicalized types
	that are present in namespaces other than the global namespace.
	* tests/runtestslowselfcompare.sh.in: New test that compares
	libabigail.so against its own ABIXML representation.
	* tests/Makefile.am: Add the new test runtestslowselfcompare.sh to
	source distribution.  This test is too slow to be run during the
	course of 'make check'.  It takes more than 5 minutes on my slow
	box here.  Rather, it can be run using 'make check-self-compare'.
	I plan to run this before releases now.
	* tests/data/test-annotate/libtest24-drop-fns-2.so.abi: Adjust.
	* tests/data/test-annotate/libtest24-drop-fns.so.abi: Likewise.
	* tests/data/test-annotate/test0.abi: Likewise.
	* tests/data/test-annotate/test13-pr18894.so.abi: Likewise.
	* tests/data/test-annotate/test14-pr18893.so.abi: Likewise.
	* tests/data/test-annotate/test15-pr18892.so.abi: Likewise.
	* tests/data/test-annotate/test17-pr19027.so.abi: Likewise.
	* tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi:
	Likewise.
	* tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi:
	Likewise.
	* tests/data/test-annotate/test20-pr19025-libvtkParallelCore-6.1.so.abi:
	Likewise.
	* tests/data/test-annotate/test21-pr19092.so.abi: Likewise.
	* tests/data/test-read-dwarf/PR22015-libboost_iostreams.so.abi:
	Likewise.
	* tests/data/test-read-dwarf/PR22122-libftdc.so.abi: Likewise.
	* tests/data/test-read-dwarf/PR25042-libgdbm-clang-dwarf5.so.6.0.0.abi:
	Likewise.
	* tests/data/test-read-dwarf/PR26261/PR26261-exe.abi: Likewise.
	* tests/data/test-read-dwarf/libtest24-drop-fns-2.so.abi:
	Likewise.
	* tests/data/test-read-dwarf/libtest24-drop-fns.so.abi: Likewise.
	* tests/data/test-read-dwarf/test-libandroid.so.abi: Likewise.
	* tests/data/test-read-dwarf/test0.abi: Likewise.
	* tests/data/test-read-dwarf/test0.hash.abi: Likewise.
	* tests/data/test-read-dwarf/test10-pr18818-gcc.so.abi: Likewise.
	* tests/data/test-read-dwarf/test11-pr18828.so.abi: Likewise.
	* tests/data/test-read-dwarf/test12-pr18844.so.abi: Likewise.
	* tests/data/test-read-dwarf/test14-pr18893.so.abi: Likewise.
	* tests/data/test-read-dwarf/test15-pr18892.so.abi: Likewise.
	* tests/data/test-read-dwarf/test16-pr18904.so.abi: Likewise.
	* tests/data/test-read-dwarf/test17-pr19027.so.abi: Likewise.
	* tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi:
	Likewise.
	* tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi:
	Likewise.
	* tests/data/test-read-dwarf/test20-pr19025-libvtkParallelCore-6.1.so.abi:
	Likewise.
	* tests/data/test-read-dwarf/test21-pr19092.so.abi: Likewise.
	* tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi:
	Likewise.
	* tests/data/test-read-dwarf/test9-pr18818-clang.so.abi: Likewise.
	* tests/data/test-read-write/test28-without-std-fns-ref.xml:
	Likewise.
	* tests/data/test-read-write/test28-without-std-vars-ref.xml:
	Likewise.
	* tests/data/test-read-write/test6.xml: Likewise.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
2020-11-23 13:02:34 +01:00

2099 lines
139 KiB
Plaintext

<abi-corpus path='data/test-read-dwarf/libtest24-drop-fns.so'>
<elf-needed>
<dependency name='libgcc_s.so.1'/>
<dependency name='libc.so.6'/>
</elf-needed>
<elf-function-symbols>
<elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
</elf-function-symbols>
<abi-instr version='1.0' address-size='64' path='test24-drop-fns.cc' comp-dir-path='/home/dodji/git/libabigail.git/suppr/tests/data/test-read-dwarf' language='LANG_C_plus_plus'>
<type-decl name='bool' size-in-bits='8' id='type-id-1'/>
<type-decl name='char' size-in-bits='8' id='type-id-2'/>
<array-type-def dimensions='1' type-id='type-id-2' size-in-bits='32' id='type-id-3'>
<subrange length='4' type-id='type-id-4' id='type-id-5'/>
</array-type-def>
<class-decl name='typedef __va_list_tag __va_list_tag' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-6'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='gp_offset' type-id='type-id-7' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
<var-decl name='fp_offset' type-id='type-id-7' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
<var-decl name='overflow_arg_area' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
<var-decl name='reg_save_area' type-id='type-id-8' visibility='default'/>
</data-member>
</class-decl>
<type-decl name='double' size-in-bits='64' id='type-id-9'/>
<type-decl name='float' size-in-bits='32' id='type-id-10'/>
<type-decl name='int' size-in-bits='32' id='type-id-11'/>
<type-decl name='long double' size-in-bits='128' id='type-id-12'/>
<type-decl name='long int' size-in-bits='64' id='type-id-13'/>
<type-decl name='long long int' size-in-bits='64' id='type-id-14'/>
<type-decl name='long long unsigned int' size-in-bits='64' id='type-id-15'/>
<type-decl name='short int' size-in-bits='16' id='type-id-16'/>
<type-decl name='sizetype' size-in-bits='64' id='type-id-4'/>
<type-decl name='unsigned int' size-in-bits='32' id='type-id-7'/>
<type-decl name='unsigned long int' size-in-bits='64' id='type-id-17'/>
<array-type-def dimensions='1' type-id='type-id-17' size-in-bits='infinite' id='type-id-18'>
<subrange length='infinite' id='type-id-19'/>
</array-type-def>
<type-decl name='variadic parameter type' id='type-id-20'/>
<type-decl name='void' id='type-id-21'/>
<type-decl name='wchar_t' size-in-bits='32' id='type-id-22'/>
<typedef-decl name='_Atomic_word' type-id='type-id-11' filepath='/usr/include/c++/5.3.1/x86_64-redhat-linux/bits/atomic_word.h' line='32' column='1' id='type-id-23'/>
<typedef-decl name='wint_t' type-id='type-id-7' filepath='/usr/lib/gcc/x86_64-redhat-linux/5.3.1/include/stddef.h' line='357' column='1' id='type-id-24'/>
<typedef-decl name='__FILE' type-id='type-id-25' filepath='/usr/include/stdio.h' line='64' column='1' id='type-id-26'/>
<typedef-decl name='size_t' type-id='type-id-17' filepath='/usr/lib/gcc/x86_64-redhat-linux/5.3.1/include/stddef.h' line='216' column='1' id='type-id-27'/>
<typedef-decl name='mbstate_t' type-id='type-id-28' filepath='/usr/include/wchar.h' line='106' column='1' id='type-id-29'/>
<typedef-decl name='__mbstate_t' type-id='type-id-30' filepath='/usr/include/wchar.h' line='94' column='1' id='type-id-28'/>
<class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-28' visibility='default' filepath='/usr/include/wchar.h' line='83' column='1' id='type-id-30'>
<member-type access='public'>
<union-decl name='__anonymous_union__' size-in-bits='32' is-anonymous='yes' visibility='default' filepath='/usr/include/wchar.h' line='86' column='1' id='type-id-31'>
<data-member access='private'>
<var-decl name='__wch' type-id='type-id-7' visibility='default' filepath='/usr/include/wchar.h' line='88' column='1'/>
</data-member>
<data-member access='private'>
<var-decl name='__wchb' type-id='type-id-3' visibility='default' filepath='/usr/include/wchar.h' line='92' column='1'/>
</data-member>
</union-decl>
</member-type>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='__count' type-id='type-id-11' visibility='default' filepath='/usr/include/wchar.h' line='84' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
<var-decl name='__value' type-id='type-id-31' visibility='default' filepath='/usr/include/wchar.h' line='93' column='1'/>
</data-member>
</class-decl>
<class-decl name='tm' size-in-bits='448' is-struct='yes' visibility='default' filepath='/usr/include/time.h' line='133' column='1' id='type-id-32'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='tm_sec' type-id='type-id-11' visibility='default' filepath='/usr/include/time.h' line='135' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
<var-decl name='tm_min' type-id='type-id-11' visibility='default' filepath='/usr/include/time.h' line='136' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
<var-decl name='tm_hour' type-id='type-id-11' visibility='default' filepath='/usr/include/time.h' line='137' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
<var-decl name='tm_mday' type-id='type-id-11' visibility='default' filepath='/usr/include/time.h' line='138' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
<var-decl name='tm_mon' type-id='type-id-11' visibility='default' filepath='/usr/include/time.h' line='139' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='160'>
<var-decl name='tm_year' type-id='type-id-11' visibility='default' filepath='/usr/include/time.h' line='140' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
<var-decl name='tm_wday' type-id='type-id-11' visibility='default' filepath='/usr/include/time.h' line='141' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='224'>
<var-decl name='tm_yday' type-id='type-id-11' visibility='default' filepath='/usr/include/time.h' line='142' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
<var-decl name='tm_isdst' type-id='type-id-11' visibility='default' filepath='/usr/include/time.h' line='143' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
<var-decl name='tm_gmtoff' type-id='type-id-13' visibility='default' filepath='/usr/include/time.h' line='146' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
<var-decl name='tm_zone' type-id='type-id-33' visibility='default' filepath='/usr/include/time.h' line='147' column='1'/>
</data-member>
</class-decl>
<class-decl name='lconv' size-in-bits='768' is-struct='yes' visibility='default' filepath='/usr/include/locale.h' line='53' column='1' id='type-id-34'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='decimal_point' type-id='type-id-35' visibility='default' filepath='/usr/include/locale.h' line='57' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
<var-decl name='thousands_sep' type-id='type-id-35' visibility='default' filepath='/usr/include/locale.h' line='58' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
<var-decl name='grouping' type-id='type-id-35' visibility='default' filepath='/usr/include/locale.h' line='64' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
<var-decl name='int_curr_symbol' type-id='type-id-35' visibility='default' filepath='/usr/include/locale.h' line='70' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
<var-decl name='currency_symbol' type-id='type-id-35' visibility='default' filepath='/usr/include/locale.h' line='71' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
<var-decl name='mon_decimal_point' type-id='type-id-35' visibility='default' filepath='/usr/include/locale.h' line='72' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
<var-decl name='mon_thousands_sep' type-id='type-id-35' visibility='default' filepath='/usr/include/locale.h' line='73' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
<var-decl name='mon_grouping' type-id='type-id-35' visibility='default' filepath='/usr/include/locale.h' line='74' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
<var-decl name='positive_sign' type-id='type-id-35' visibility='default' filepath='/usr/include/locale.h' line='75' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='576'>
<var-decl name='negative_sign' type-id='type-id-35' visibility='default' filepath='/usr/include/locale.h' line='76' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='640'>
<var-decl name='int_frac_digits' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='77' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='648'>
<var-decl name='frac_digits' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='78' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='656'>
<var-decl name='p_cs_precedes' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='80' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='664'>
<var-decl name='p_sep_by_space' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='82' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='672'>
<var-decl name='n_cs_precedes' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='84' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='680'>
<var-decl name='n_sep_by_space' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='86' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='688'>
<var-decl name='p_sign_posn' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='93' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='696'>
<var-decl name='n_sign_posn' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='94' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='704'>
<var-decl name='int_p_cs_precedes' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='97' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='712'>
<var-decl name='int_p_sep_by_space' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='99' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='720'>
<var-decl name='int_n_cs_precedes' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='101' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='728'>
<var-decl name='int_n_sep_by_space' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='103' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='736'>
<var-decl name='int_p_sign_posn' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='110' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='744'>
<var-decl name='int_n_sign_posn' type-id='type-id-2' visibility='default' filepath='/usr/include/locale.h' line='111' column='1'/>
</data-member>
</class-decl>
<typedef-decl name='wctype_t' type-id='type-id-17' filepath='/usr/include/wctype.h' line='52' column='1' id='type-id-36'/>
<typedef-decl name='wctrans_t' type-id='type-id-37' filepath='/usr/include/wctype.h' line='186' column='1' id='type-id-38'/>
<typedef-decl name='__int32_t' type-id='type-id-11' filepath='/usr/include/bits/types.h' line='40' column='1' id='type-id-39'/>
<pointer-type-def type-id='type-id-26' size-in-bits='64' id='type-id-40'/>
<pointer-type-def type-id='type-id-41' size-in-bits='64' id='type-id-42'/>
<reference-type-def kind='lvalue' type-id='type-id-2' size-in-bits='64' id='type-id-43'/>
<pointer-type-def type-id='type-id-2' size-in-bits='64' id='type-id-35'/>
<qualified-type-def type-id='type-id-41' const='yes' id='type-id-44'/>
<reference-type-def kind='lvalue' type-id='type-id-44' size-in-bits='64' id='type-id-45'/>
<pointer-type-def type-id='type-id-44' size-in-bits='64' id='type-id-46'/>
<qualified-type-def type-id='type-id-39' const='yes' id='type-id-47'/>
<pointer-type-def type-id='type-id-47' size-in-bits='64' id='type-id-37'/>
<qualified-type-def type-id='type-id-1' const='yes' id='type-id-48'/>
<qualified-type-def type-id='type-id-2' const='yes' id='type-id-49'/>
<reference-type-def kind='lvalue' type-id='type-id-49' size-in-bits='64' id='type-id-50'/>
<pointer-type-def type-id='type-id-49' size-in-bits='64' id='type-id-33'/>
<pointer-type-def type-id='type-id-33' size-in-bits='64' id='type-id-51'/>
<qualified-type-def type-id='type-id-11' const='yes' id='type-id-52'/>
<qualified-type-def type-id='type-id-13' const='yes' id='type-id-53'/>
<qualified-type-def type-id='type-id-29' const='yes' id='type-id-54'/>
<pointer-type-def type-id='type-id-54' size-in-bits='64' id='type-id-55'/>
<qualified-type-def type-id='type-id-16' const='yes' id='type-id-56'/>
<qualified-type-def type-id='type-id-57' const='yes' id='type-id-58'/>
<reference-type-def kind='lvalue' type-id='type-id-58' size-in-bits='64' id='type-id-59'/>
<qualified-type-def type-id='type-id-60' const='yes' id='type-id-61'/>
<reference-type-def kind='lvalue' type-id='type-id-61' size-in-bits='64' id='type-id-62'/>
<pointer-type-def type-id='type-id-61' size-in-bits='64' id='type-id-63'/>
<qualified-type-def type-id='type-id-64' const='yes' id='type-id-65'/>
<pointer-type-def type-id='type-id-65' size-in-bits='64' id='type-id-66'/>
<qualified-type-def type-id='type-id-67' const='yes' id='type-id-68'/>
<qualified-type-def type-id='type-id-69' const='yes' id='type-id-70'/>
<reference-type-def kind='lvalue' type-id='type-id-70' size-in-bits='64' id='type-id-71'/>
<pointer-type-def type-id='type-id-70' size-in-bits='64' id='type-id-72'/>
<qualified-type-def type-id='type-id-73' const='yes' id='type-id-74'/>
<reference-type-def kind='lvalue' type-id='type-id-74' size-in-bits='64' id='type-id-75'/>
<qualified-type-def type-id='type-id-76' const='yes' id='type-id-77'/>
<qualified-type-def type-id='type-id-78' id='type-id-79'/>
<reference-type-def kind='lvalue' type-id='type-id-77' size-in-bits='64' id='type-id-78'/>
<qualified-type-def type-id='type-id-32' const='yes' id='type-id-80'/>
<pointer-type-def type-id='type-id-80' size-in-bits='64' id='type-id-81'/>
<qualified-type-def type-id='type-id-17' const='yes' id='type-id-82'/>
<qualified-type-def type-id='type-id-22' const='yes' id='type-id-83'/>
<pointer-type-def type-id='type-id-83' size-in-bits='64' id='type-id-84'/>
<pointer-type-def type-id='type-id-84' size-in-bits='64' id='type-id-85'/>
<pointer-type-def type-id='type-id-34' size-in-bits='64' id='type-id-86'/>
<pointer-type-def type-id='type-id-29' size-in-bits='64' id='type-id-87'/>
<pointer-type-def type-id='type-id-57' size-in-bits='64' id='type-id-88'/>
<reference-type-def kind='lvalue' type-id='type-id-60' size-in-bits='64' id='type-id-89'/>
<pointer-type-def type-id='type-id-60' size-in-bits='64' id='type-id-90'/>
<pointer-type-def type-id='type-id-91' size-in-bits='64' id='type-id-92'/>
<reference-type-def kind='lvalue' type-id='type-id-64' size-in-bits='64' id='type-id-93'/>
<pointer-type-def type-id='type-id-64' size-in-bits='64' id='type-id-94'/>
<reference-type-def kind='lvalue' type-id='type-id-69' size-in-bits='64' id='type-id-95'/>
<pointer-type-def type-id='type-id-69' size-in-bits='64' id='type-id-96'/>
<pointer-type-def type-id='type-id-97' size-in-bits='64' id='type-id-98'/>
<pointer-type-def type-id='type-id-6' size-in-bits='64' id='type-id-99'/>
<pointer-type-def type-id='type-id-21' size-in-bits='64' id='type-id-8'/>
<pointer-type-def type-id='type-id-22' size-in-bits='64' id='type-id-100'/>
<pointer-type-def type-id='type-id-100' size-in-bits='64' id='type-id-101'/>
<namespace-decl name='std'>
<class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='64' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2510' column='1' id='type-id-60'>
<member-type access='private'>
<class-decl name='_Alloc_hider' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2670' column='1' id='type-id-91'>
<base-class access='public' layout-offset-in-bits='0' type-id='type-id-57'/>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='_M_p' type-id='type-id-35' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2675' column='1'/>
</data-member>
<member-function access='public' constructor='yes'>
<function-decl name='_Alloc_hider' mangled-name='_ZNSs12_Alloc_hiderC4EPcRKSaIcE' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2672' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-92' is-artificial='yes'/>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
</class-decl>
</member-type>
<member-type access='public'>
<typedef-decl name='size_type' type-id='type-id-102' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2519' column='1' id='type-id-67'/>
</member-type>
<member-type access='public'>
<typedef-decl name='allocator_type' type-id='type-id-57' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2518' column='1' id='type-id-103'/>
</member-type>
<member-type access='public'>
<typedef-decl name='reference' type-id='type-id-105' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2521' column='1' id='type-id-104'/>
</member-type>
<member-type access='public'>
<typedef-decl name='const_reference' type-id='type-id-107' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2522' column='1' id='type-id-106'/>
</member-type>
<member-type access='public'>
<typedef-decl name='iterator' type-id='type-id-109' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2525' column='1' id='type-id-108'/>
</member-type>
<member-type access='public'>
<typedef-decl name='const_iterator' type-id='type-id-111' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2527' column='1' id='type-id-110'/>
</member-type>
<member-type access='public'>
<typedef-decl name='const_reverse_iterator' type-id='type-id-113' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2528' column='1' id='type-id-112'/>
</member-type>
<member-type access='public'>
<typedef-decl name='reverse_iterator' type-id='type-id-115' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2529' column='1' id='type-id-114'/>
</member-type>
<member-type access='private'>
<class-decl name='_Rep_base' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2546' column='1' id='type-id-116'>
<data-member access='public' layout-offset-in-bits='0'>
<var-decl name='_M_length' type-id='type-id-67' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2548' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
<var-decl name='_M_capacity' type-id='type-id-67' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2549' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
<var-decl name='_M_refcount' type-id='type-id-23' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2550' column='1'/>
</data-member>
</class-decl>
</member-type>
<member-type access='private'>
<class-decl name='_Rep' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2553' column='1' id='type-id-64'>
<base-class access='public' layout-offset-in-bits='0' type-id='type-id-116'/>
<data-member access='public' static='yes'>
<var-decl name='_S_max_size' type-id='type-id-68' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='494' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='_S_terminal' type-id='type-id-49' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='499' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='_S_empty_rep_storage' type-id='type-id-18' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='510' column='1'/>
</data-member>
<member-function access='public' static='yes'>
<function-decl name='_S_empty_rep' mangled-name='_ZNSs4_Rep12_S_empty_repEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2579' column='1' visibility='default' binding='global' size-in-bits='64'>
<return type-id='type-id-93'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='_M_is_leaked' mangled-name='_ZNKSs4_Rep12_M_is_leakedEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2589' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-66' is-artificial='yes'/>
<return type-id='type-id-1'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='_M_is_shared' mangled-name='_ZNKSs4_Rep12_M_is_sharedEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2593' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-66' is-artificial='yes'/>
<return type-id='type-id-1'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='_M_set_leaked' mangled-name='_ZNSs4_Rep13_M_set_leakedEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2597' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-94' is-artificial='yes'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='_M_set_sharable' mangled-name='_ZNSs4_Rep15_M_set_sharableEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2601' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-94' is-artificial='yes'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='_M_set_length_and_sharable' mangled-name='_ZNSs4_Rep26_M_set_length_and_sharableEm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2605' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-94' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='_M_refdata' mangled-name='_ZNSs4_Rep10_M_refdataEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2620' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-94' is-artificial='yes'/>
<return type-id='type-id-35'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='_M_grab' mangled-name='_ZNSs4_Rep7_M_grabERKSaIcES2_' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2624' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-94' is-artificial='yes'/>
<parameter type-id='type-id-59'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-35'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='_S_create' mangled-name='_ZNSs4_Rep9_S_createEmmRKSaIcE' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='989' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-94'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='_M_dispose' mangled-name='_ZNSs4_Rep10_M_disposeERKSaIcE' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2635' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-94' is-artificial='yes'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='_M_destroy' mangled-name='_ZNSs4_Rep10_M_destroyERKSaIcE' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='888' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-94' is-artificial='yes'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='_M_refcopy' mangled-name='_ZNSs4_Rep10_M_refcopyEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2656' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-94' is-artificial='yes'/>
<return type-id='type-id-35'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='_M_clone' mangled-name='_ZNSs4_Rep8_M_cloneERKSaIcEm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1067' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-94' is-artificial='yes'/>
<parameter type-id='type-id-59'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-35'/>
</function-decl>
</member-function>
</class-decl>
</member-type>
<data-member access='public' static='yes'>
<var-decl name='npos' type-id='type-id-68' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2683' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='0'>
<var-decl name='_M_dataplus' type-id='type-id-91' visibility='default' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2687' column='1'/>
</data-member>
<member-function access='private' const='yes'>
<function-decl name='_M_data' mangled-name='_ZNKSs7_M_dataEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2690' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-35'/>
</function-decl>
</member-function>
<member-function access='private'>
<function-decl name='_M_data' mangled-name='_ZNSs7_M_dataEPc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2694' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-35'/>
<return type-id='type-id-35'/>
</function-decl>
</member-function>
<member-function access='private' const='yes'>
<function-decl name='_M_rep' mangled-name='_ZNKSs6_M_repEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2698' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-94'/>
</function-decl>
</member-function>
<member-function access='private' const='yes'>
<function-decl name='_M_ibegin' mangled-name='_ZNKSs9_M_ibeginEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2704' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-108'/>
</function-decl>
</member-function>
<member-function access='private' const='yes'>
<function-decl name='_M_iend' mangled-name='_ZNKSs7_M_iendEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2708' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-108'/>
</function-decl>
</member-function>
<member-function access='private'>
<function-decl name='_M_leak' mangled-name='_ZNSs7_M_leakEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2712' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='private' const='yes'>
<function-decl name='_M_check' mangled-name='_ZNKSs8_M_checkEmPKc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2719' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='private' const='yes'>
<function-decl name='_M_check_length' mangled-name='_ZNKSs15_M_check_lengthEmmPKc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2729' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='private' const='yes'>
<function-decl name='_M_limit' mangled-name='_ZNKSs8_M_limitEmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2737' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='private' const='yes'>
<function-decl name='_M_disjunct' mangled-name='_ZNKSs11_M_disjunctEPKc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2745' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-1'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<function-decl name='_M_copy' mangled-name='_ZNSs7_M_copyEPcPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2754' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<function-decl name='_M_move' mangled-name='_ZNSs7_M_moveEPcPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2763' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<function-decl name='_M_assign' mangled-name='_ZNSs9_M_assignEPcmc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2772' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<function-decl name='_S_copy_chars' mangled-name='_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIS_SsEES2_' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2792' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-108'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<function-decl name='_S_copy_chars' mangled-name='_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIPKcSsEES4_' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2796' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-110'/>
<parameter type-id='type-id-110'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<function-decl name='_S_copy_chars' mangled-name='_ZNSs13_S_copy_charsEPcS_S_' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2801' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-35'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<function-decl name='_S_copy_chars' mangled-name='_ZNSs13_S_copy_charsEPcPKcS1_' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2805' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<function-decl name='_S_compare' mangled-name='_ZNSs10_S_compareEmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2810' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-11'/>
</function-decl>
</member-function>
<member-function access='private'>
<function-decl name='_M_mutate' mangled-name='_ZNSs9_M_mutateEmmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='912' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='private'>
<function-decl name='_M_leak_hard' mangled-name='_ZNSs12_M_leak_hardEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='898' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<function-decl name='_S_empty_rep' mangled-name='_ZNSs12_S_empty_repEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2829' column='1' visibility='default' binding='global' size-in-bits='64'>
<return type-id='type-id-93'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='basic_string' mangled-name='_ZNSsC4Ev' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2840' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='basic_string' mangled-name='_ZNSsC4ERKSaIcE' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='621' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='basic_string' mangled-name='_ZNSsC4ERKSs' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='613' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='basic_string' mangled-name='_ZNSsC4ERKSsmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='627' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='basic_string' mangled-name='_ZNSsC4ERKSsmmRKSaIcE' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='637' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='basic_string' mangled-name='_ZNSsC4EPKcmRKSaIcE' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='649' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='basic_string' mangled-name='_ZNSsC4EPKcRKSaIcE' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='656' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='basic_string' mangled-name='_ZNSsC4EmcRKSaIcE' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='663' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-2'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public' destructor='yes'>
<function-decl name='~basic_string' mangled-name='_ZNSsD4Ev' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2944' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-11' is-artificial='yes'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='operator=' mangled-name='_ZNSsaSERKSs' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2952' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='operator=' mangled-name='_ZNSsaSEPKc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2960' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='operator=' mangled-name='_ZNSsaSEc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='2971' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='begin' mangled-name='_ZNSs5beginEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3012' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<return type-id='type-id-108'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='begin' mangled-name='_ZNKSs5beginEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3023' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-110'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='end' mangled-name='_ZNSs3endEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3031' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<return type-id='type-id-108'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='end' mangled-name='_ZNKSs3endEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3042' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-110'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='rbegin' mangled-name='_ZNSs6rbeginEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3051' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<return type-id='type-id-114'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='rbegin' mangled-name='_ZNKSs6rbeginEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3060' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-112'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='rend' mangled-name='_ZNSs4rendEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3069' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<return type-id='type-id-114'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='rend' mangled-name='_ZNKSs4rendEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3078' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-112'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='size' mangled-name='_ZNKSs4sizeEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3122' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='length' mangled-name='_ZNKSs6lengthEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3128' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='max_size' mangled-name='_ZNKSs8max_sizeEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3133' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='resize' mangled-name='_ZNSs6resizeEmc' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1083' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='resize' mangled-name='_ZNSs6resizeEm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3160' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='capacity' mangled-name='_ZNKSs8capacityEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3185' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='reserve' mangled-name='_ZNSs7reserveEm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='945' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='clear' mangled-name='_ZNSs5clearEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3213' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='empty' mangled-name='_ZNKSs5emptyEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3221' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-1'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='operator[]' mangled-name='_ZNKSsixEm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3236' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-106'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='operator[]' mangled-name='_ZNSsixEm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3253' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-104'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='at' mangled-name='_ZNKSs2atEm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3275' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-106'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='at' mangled-name='_ZNSs2atEm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3297' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-104'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='operator+=' mangled-name='_ZNSspLERKSs' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3349' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='operator+=' mangled-name='_ZNSspLEPKc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3358' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='operator+=' mangled-name='_ZNSspLEc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3367' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='append' mangled-name='_ZNSs6appendERKSs' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='768' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='append' mangled-name='_ZNSs6appendERKSsmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='785' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='append' mangled-name='_ZNSs6appendEPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='741' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='append' mangled-name='_ZNSs6appendEPKc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3423' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='append' mangled-name='_ZNSs6appendEmc' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='724' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='push_back' mangled-name='_ZNSs9push_backEc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3469' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='assign' mangled-name='_ZNSs6assignERKSs' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='686' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='assign' mangled-name='_ZNSs6assignERKSsmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3518' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='assign' mangled-name='_ZNSs6assignEPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='702' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='assign' mangled-name='_ZNSs6assignEPKc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3546' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='assign' mangled-name='_ZNSs6assignEmc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3562' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='insert' mangled-name='_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEmc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3603' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='insert' mangled-name='_ZNSs6insertEmRKSs' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3651' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-62'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='insert' mangled-name='_ZNSs6insertEmRKSsmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3673' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='insert' mangled-name='_ZNSs6insertEmPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='803' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='insert' mangled-name='_ZNSs6insertEmPKc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3714' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='insert' mangled-name='_ZNSs6insertEmmc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3737' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='insert' mangled-name='_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3755' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-108'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='erase' mangled-name='_ZNSs5eraseEmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3780' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='erase' mangled-name='_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEE' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3796' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-108'/>
<return type-id='type-id-108'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='erase' mangled-name='_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEES2_' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='834' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-108'/>
<return type-id='type-id-108'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEmmRKSs' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3847' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-62'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEmmRKSsmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3869' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEmmPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='857' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEmmPKc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3914' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEmmmc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3938' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_RKSs' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3956' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-62'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3975' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='3996' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_mc' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4017' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S1_S1_' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4054' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-35'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcS4_' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4064' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S2_S2_' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4075' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-108'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='replace' mangled-name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_NS0_IPKcSsEES5_' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4085' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-108'/>
<parameter type-id='type-id-110'/>
<parameter type-id='type-id-110'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='private'>
<function-decl name='_M_replace_aux' mangled-name='_ZNSs14_M_replace_auxEmmmc' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1111' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-2'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='private'>
<function-decl name='_M_replace_safe' mangled-name='_ZNSs15_M_replace_safeEmmPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1124' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-89'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<function-decl name='_S_construct_aux_2' mangled-name='_ZNSs18_S_construct_aux_2EmcRKSaIcE' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4156' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-2'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-35'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<function-decl name='_S_construct' mangled-name='_ZNSs12_S_constructEmcRKSaIcE' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='596' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-2'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-35'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='copy' mangled-name='_ZNKSs4copyEPcmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1136' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='swap' mangled-name='_ZNSs4swapERSs' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='962' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-90' is-artificial='yes'/>
<parameter type-id='type-id-89'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='c_str' mangled-name='_ZNKSs5c_strEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4219' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-33'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='data' mangled-name='_ZNKSs4dataEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4229' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-33'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='get_allocator' mangled-name='_ZNKSs13get_allocatorEv' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4236' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<return type-id='type-id-103'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find' mangled-name='_ZNKSs4findEPKcmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1181' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find' mangled-name='_ZNKSs4findERKSsm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4265' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find' mangled-name='_ZNKSs4findEPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4280' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find' mangled-name='_ZNKSs4findEcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1204' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-2'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='rfind' mangled-name='_ZNKSs5rfindERKSsm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4310' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='rfind' mangled-name='_ZNKSs5rfindEPKcmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1222' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='rfind' mangled-name='_ZNKSs5rfindEPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4340' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='rfind' mangled-name='_ZNKSs5rfindEcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1243' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-2'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_first_of' mangled-name='_ZNKSs13find_first_ofERKSsm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4371' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_first_of' mangled-name='_ZNKSs13find_first_ofEPKcmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1260' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_first_of' mangled-name='_ZNKSs13find_first_ofEPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4401' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_first_of' mangled-name='_ZNKSs13find_first_ofEcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4420' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-2'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_last_of' mangled-name='_ZNKSs12find_last_ofERKSsm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4435' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_last_of' mangled-name='_ZNKSs12find_last_ofEPKcmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1275' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_last_of' mangled-name='_ZNKSs12find_last_ofEPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4465' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_last_of' mangled-name='_ZNKSs12find_last_ofEcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4484' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-2'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_first_not_of' mangled-name='_ZNKSs17find_first_not_ofERKSsm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4498' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_first_not_of' mangled-name='_ZNKSs17find_first_not_ofEPKcmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1296' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_first_not_of' mangled-name='_ZNKSs17find_first_not_ofEPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4529' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_first_not_of' mangled-name='_ZNKSs17find_first_not_ofEcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1308' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-2'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_last_not_of' mangled-name='_ZNKSs16find_last_not_ofERKSsm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4561' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_last_not_of' mangled-name='_ZNKSs16find_last_not_ofEPKcmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1319' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_last_not_of' mangled-name='_ZNKSs16find_last_not_ofEPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4592' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='find_last_not_of' mangled-name='_ZNKSs16find_last_not_ofEcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1340' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-2'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-67'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='substr' mangled-name='_ZNKSs6substrEmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4625' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-60'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='compare' mangled-name='_ZNKSs7compareERKSs' filepath='/usr/include/c++/5.3.1/bits/basic_string.h' line='4644' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-62'/>
<return type-id='type-id-11'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='compare' mangled-name='_ZNKSs7compareEmmRKSs' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1360' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-62'/>
<return type-id='type-id-11'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='compare' mangled-name='_ZNKSs7compareEmmRKSsmm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1375' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-62'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-11'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='compare' mangled-name='_ZNKSs7compareEPKc' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1393' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-11'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='compare' mangled-name='_ZNKSs7compareEmmPKc' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1408' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-11'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='compare' mangled-name='_ZNKSs7compareEmmPKcm' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1424' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-63' is-artificial='yes'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-67'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-67'/>
<return type-id='type-id-11'/>
</function-decl>
</member-function>
</class-decl>
<class-decl name='allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/usr/include/c++/5.3.1/bits/allocator.h' line='92' column='1' id='type-id-57'>
<base-class access='public' layout-offset-in-bits='0' type-id='type-id-41'/>
<member-type access='public'>
<typedef-decl name='size_type' type-id='type-id-117' filepath='/usr/include/c++/5.3.1/bits/allocator.h' line='95' column='1' id='type-id-102'/>
</member-type>
<member-type access='public'>
<typedef-decl name='reference' type-id='type-id-43' filepath='/usr/include/c++/5.3.1/bits/allocator.h' line='99' column='1' id='type-id-105'/>
</member-type>
<member-type access='public'>
<typedef-decl name='const_reference' type-id='type-id-50' filepath='/usr/include/c++/5.3.1/bits/allocator.h' line='100' column='1' id='type-id-107'/>
</member-type>
<member-function access='public'>
<function-decl name='allocator' mangled-name='_ZNSaIcEC4Ev' filepath='/usr/include/c++/5.3.1/bits/allocator.h' line='113' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-88' is-artificial='yes'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='allocator' mangled-name='_ZNSaIcEC4ERKS_' filepath='/usr/include/c++/5.3.1/bits/allocator.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-88' is-artificial='yes'/>
<parameter type-id='type-id-59'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public' destructor='yes'>
<function-decl name='~allocator' mangled-name='_ZNSaIcED4Ev' filepath='/usr/include/c++/5.3.1/bits/allocator.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-88' is-artificial='yes'/>
<parameter type-id='type-id-11' is-artificial='yes'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
</class-decl>
<typedef-decl name='size_t' type-id='type-id-17' filepath='/usr/include/c++/5.3.1/x86_64-redhat-linux/bits/c++config.h' line='1969' column='1' id='type-id-117'/>
<class-decl name='char_traits&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='233' column='1' id='type-id-118'>
<member-type access='public'>
<typedef-decl name='char_type' type-id='type-id-2' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='235' column='1' id='type-id-69'/>
</member-type>
<member-type access='public'>
<typedef-decl name='int_type' type-id='type-id-11' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='236' column='1' id='type-id-73'/>
</member-type>
<member-function access='public' static='yes'>
<function-decl name='assign' mangled-name='_ZNSt11char_traitsIcE6assignERcRKc' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='242' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-95'/>
<parameter type-id='type-id-71'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='eq' mangled-name='_ZNSt11char_traitsIcE2eqERKcS2_' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='246' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-71'/>
<parameter type-id='type-id-71'/>
<return type-id='type-id-1'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='lt' mangled-name='_ZNSt11char_traitsIcE2ltERKcS2_' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-71'/>
<parameter type-id='type-id-71'/>
<return type-id='type-id-1'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='compare' mangled-name='_ZNSt11char_traitsIcE7compareEPKcS2_m' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-72'/>
<parameter type-id='type-id-72'/>
<parameter type-id='type-id-117'/>
<return type-id='type-id-11'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='length' mangled-name='_ZNSt11char_traitsIcE6lengthEPKc' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt11char_traitsIcE6lengthEPKc'>
<parameter type-id='type-id-72'/>
<return type-id='type-id-117'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='find' mangled-name='_ZNSt11char_traitsIcE4findEPKcmRS1_' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='270' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-72'/>
<parameter type-id='type-id-117'/>
<parameter type-id='type-id-71'/>
<return type-id='type-id-72'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='move' mangled-name='_ZNSt11char_traitsIcE4moveEPcPKcm' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='278' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-96'/>
<parameter type-id='type-id-72'/>
<parameter type-id='type-id-117'/>
<return type-id='type-id-96'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='copy' mangled-name='_ZNSt11char_traitsIcE4copyEPcPKcm' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-96'/>
<parameter type-id='type-id-72'/>
<parameter type-id='type-id-117'/>
<return type-id='type-id-96'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='assign' mangled-name='_ZNSt11char_traitsIcE6assignEPcmc' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='294' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-96'/>
<parameter type-id='type-id-117'/>
<parameter type-id='type-id-69'/>
<return type-id='type-id-96'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='to_char_type' mangled-name='_ZNSt11char_traitsIcE12to_char_typeERKi' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='302' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-75'/>
<return type-id='type-id-69'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='to_int_type' mangled-name='_ZNSt11char_traitsIcE11to_int_typeERKc' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='308' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-71'/>
<return type-id='type-id-73'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='eq_int_type' mangled-name='_ZNSt11char_traitsIcE11eq_int_typeERKiS2_' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-75'/>
<parameter type-id='type-id-75'/>
<return type-id='type-id-1'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='eof' mangled-name='_ZNSt11char_traitsIcE3eofEv' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='316' column='1' visibility='default' binding='global' size-in-bits='64'>
<return type-id='type-id-73'/>
</function-decl>
</member-function>
<member-function access='public' static='yes'>
<function-decl name='not_eof' mangled-name='_ZNSt11char_traitsIcE7not_eofERKi' filepath='/usr/include/c++/5.3.1/bits/char_traits.h' line='320' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-75'/>
<return type-id='type-id-73'/>
</function-decl>
</member-function>
</class-decl>
<typedef-decl name='string' type-id='type-id-60' filepath='/usr/include/c++/5.3.1/bits/stringfwd.h' line='74' column='1' id='type-id-76'/>
<typedef-decl name='ostream' type-id='type-id-119' filepath='/usr/include/c++/5.3.1/iosfwd' line='141' column='1' id='type-id-97'/>
<class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char const*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-113'/>
<class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-115'/>
<function-decl name='operator+&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' mangled-name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' filepath='/usr/include/c++/5.3.1/bits/basic_string.tcc' line='1151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_'>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-62'/>
<return type-id='type-id-60'/>
</function-decl>
<class-decl name='basic_ostream&lt;char, std::char_traits&lt;char&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-119'/>
</namespace-decl>
<namespace-decl name='__gnu_cxx'>
<class-decl name='new_allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='58' column='1' id='type-id-41'>
<member-type access='public'>
<typedef-decl name='size_type' type-id='type-id-117' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='61' column='1' id='type-id-120'/>
</member-type>
<member-type access='public'>
<typedef-decl name='pointer' type-id='type-id-35' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='63' column='1' id='type-id-121'/>
</member-type>
<member-type access='public'>
<typedef-decl name='const_pointer' type-id='type-id-33' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='64' column='1' id='type-id-122'/>
</member-type>
<member-type access='public'>
<typedef-decl name='reference' type-id='type-id-43' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='65' column='1' id='type-id-123'/>
</member-type>
<member-type access='public'>
<typedef-decl name='const_reference' type-id='type-id-50' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='66' column='1' id='type-id-124'/>
</member-type>
<member-function access='public'>
<function-decl name='new_allocator' mangled-name='_ZN9__gnu_cxx13new_allocatorIcEC4Ev' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-42' is-artificial='yes'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='new_allocator' mangled-name='_ZN9__gnu_cxx13new_allocatorIcEC4ERKS1_' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-42' is-artificial='yes'/>
<parameter type-id='type-id-45'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public' destructor='yes'>
<function-decl name='~new_allocator' mangled-name='_ZN9__gnu_cxx13new_allocatorIcED4Ev' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-42' is-artificial='yes'/>
<parameter type-id='type-id-11' is-artificial='yes'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='address' mangled-name='_ZNK9__gnu_cxx13new_allocatorIcE7addressERc' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-46' is-artificial='yes'/>
<parameter type-id='type-id-123'/>
<return type-id='type-id-121'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='address' mangled-name='_ZNK9__gnu_cxx13new_allocatorIcE7addressERKc' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-46' is-artificial='yes'/>
<parameter type-id='type-id-124'/>
<return type-id='type-id-122'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='allocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIcE8allocateEmPKv' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-42' is-artificial='yes'/>
<parameter type-id='type-id-120'/>
<parameter type-id='type-id-8'/>
<return type-id='type-id-121'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIcE10deallocateEPcm' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-42' is-artificial='yes'/>
<parameter type-id='type-id-121'/>
<parameter type-id='type-id-120'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public' const='yes'>
<function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx13new_allocatorIcE8max_sizeEv' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='113' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-46' is-artificial='yes'/>
<return type-id='type-id-120'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='construct' mangled-name='_ZN9__gnu_cxx13new_allocatorIcE9constructEPcRKc' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='129' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-42' is-artificial='yes'/>
<parameter type-id='type-id-121'/>
<parameter type-id='type-id-50'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
<member-function access='public'>
<function-decl name='destroy' mangled-name='_ZN9__gnu_cxx13new_allocatorIcE7destroyEPc' filepath='/usr/include/c++/5.3.1/ext/new_allocator.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-42' is-artificial='yes'/>
<parameter type-id='type-id-121'/>
<return type-id='type-id-21'/>
</function-decl>
</member-function>
</class-decl>
<class-decl name='__numeric_traits_integer&lt;int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='55' column='1' id='type-id-125'>
<data-member access='public' static='yes'>
<var-decl name='__min' type-id='type-id-52' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIiE5__minE' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='58' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__max' type-id='type-id-52' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIiE5__maxE' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='59' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__is_signed' type-id='type-id-48' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='63' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__digits' type-id='type-id-52' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='64' column='1'/>
</data-member>
</class-decl>
<class-decl name='__numeric_traits_integer&lt;long unsigned int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='55' column='1' id='type-id-126'>
<data-member access='public' static='yes'>
<var-decl name='__min' type-id='type-id-82' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='58' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__max' type-id='type-id-82' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='59' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__is_signed' type-id='type-id-48' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='63' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__digits' type-id='type-id-52' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerImE8__digitsE' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='64' column='1'/>
</data-member>
</class-decl>
<class-decl name='__numeric_traits_integer&lt;char&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='55' column='1' id='type-id-127'>
<data-member access='public' static='yes'>
<var-decl name='__min' type-id='type-id-49' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='58' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__max' type-id='type-id-49' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIcE5__maxE' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='59' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__is_signed' type-id='type-id-48' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='63' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__digits' type-id='type-id-52' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='64' column='1'/>
</data-member>
</class-decl>
<class-decl name='__numeric_traits_integer&lt;short int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='55' column='1' id='type-id-128'>
<data-member access='public' static='yes'>
<var-decl name='__min' type-id='type-id-56' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIsE5__minE' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='58' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__max' type-id='type-id-56' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIsE5__maxE' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='59' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__is_signed' type-id='type-id-48' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='63' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__digits' type-id='type-id-52' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='64' column='1'/>
</data-member>
</class-decl>
<class-decl name='__numeric_traits_integer&lt;long int&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='55' column='1' id='type-id-129'>
<data-member access='public' static='yes'>
<var-decl name='__min' type-id='type-id-53' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIlE5__minE' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='58' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__max' type-id='type-id-53' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIlE5__maxE' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='59' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__is_signed' type-id='type-id-48' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='63' column='1'/>
</data-member>
<data-member access='public' static='yes'>
<var-decl name='__digits' type-id='type-id-52' visibility='default' filepath='/usr/include/c++/5.3.1/ext/numeric_traits.h' line='64' column='1'/>
</data-member>
</class-decl>
<class-decl name='__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-109'/>
<class-decl name='__normal_iterator&lt;char const*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-111'/>
</namespace-decl>
<function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-11'/>
<return type-id='type-id-24'/>
</function-decl>
<function-decl name='fgetwc' filepath='/usr/include/wchar.h' line='745' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-40'/>
<return type-id='type-id-24'/>
</function-decl>
<function-decl name='fgetws' filepath='/usr/include/wchar.h' line='774' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-11'/>
<parameter type-id='type-id-40'/>
<return type-id='type-id-100'/>
</function-decl>
<function-decl name='fputwc' filepath='/usr/include/wchar.h' line='759' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-22'/>
<parameter type-id='type-id-40'/>
<return type-id='type-id-24'/>
</function-decl>
<function-decl name='fputws' filepath='/usr/include/wchar.h' line='781' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-40'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='fwide' filepath='/usr/include/wchar.h' line='587' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-40'/>
<parameter type-id='type-id-11'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='fwprintf' filepath='/usr/include/wchar.h' line='594' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-40'/>
<parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='fwscanf' filepath='/usr/include/wchar.h' line='635' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-40'/>
<parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='getwc' filepath='/usr/include/wchar.h' line='746' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-40'/>
<return type-id='type-id-24'/>
</function-decl>
<function-decl name='getwchar' filepath='/usr/include/wchar.h' line='752' column='1' visibility='default' binding='global' size-in-bits='64'>
<return type-id='type-id-24'/>
</function-decl>
<function-decl name='mbrlen' filepath='/usr/include/wchar.h' line='376' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-27'/>
<parameter type-id='type-id-87'/>
<return type-id='type-id-27'/>
</function-decl>
<function-decl name='mbrtowc' filepath='/usr/include/wchar.h' line='365' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-33'/>
<parameter type-id='type-id-27'/>
<parameter type-id='type-id-87'/>
<return type-id='type-id-27'/>
</function-decl>
<function-decl name='mbsinit' filepath='/usr/include/wchar.h' line='361' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-55'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='mbsrtowcs' filepath='/usr/include/wchar.h' line='408' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-51'/>
<parameter type-id='type-id-27'/>
<parameter type-id='type-id-87'/>
<return type-id='type-id-27'/>
</function-decl>
<function-decl name='putwc' filepath='/usr/include/wchar.h' line='760' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-22'/>
<parameter type-id='type-id-40'/>
<return type-id='type-id-24'/>
</function-decl>
<function-decl name='putwchar' filepath='/usr/include/wchar.h' line='766' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-22'/>
<return type-id='type-id-24'/>
</function-decl>
<function-decl name='swprintf' filepath='/usr/include/wchar.h' line='604' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-27'/>
<parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='swscanf' filepath='/usr/include/wchar.h' line='645' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='ungetwc' filepath='/usr/include/wchar.h' line='789' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-24'/>
<parameter type-id='type-id-40'/>
<return type-id='type-id-24'/>
</function-decl>
<function-decl name='vfwprintf' filepath='/usr/include/wchar.h' line='612' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-40'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-99'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='vfwscanf' filepath='/usr/include/wchar.h' line='689' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-40'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-99'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='vswprintf' filepath='/usr/include/wchar.h' line='625' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-27'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-99'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='vswscanf' filepath='/usr/include/wchar.h' line='701' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-99'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='vwprintf' filepath='/usr/include/wchar.h' line='620' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-99'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='vwscanf' filepath='/usr/include/wchar.h' line='697' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-99'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='wcrtomb' filepath='/usr/include/wchar.h' line='370' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-22'/>
<parameter type-id='type-id-87'/>
<return type-id='type-id-27'/>
</function-decl>
<function-decl name='wcscat' filepath='/usr/include/wchar.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-84'/>
<return type-id='type-id-100'/>
</function-decl>
<function-decl name='wcscmp' filepath='/usr/include/wchar.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-84'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='wcscoll' filepath='/usr/include/wchar.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-84'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='wcscpy' filepath='/usr/include/wchar.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-84'/>
<return type-id='type-id-100'/>
</function-decl>
<function-decl name='wcscspn' filepath='/usr/include/wchar.h' line='252' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-84'/>
<return type-id='type-id-27'/>
</function-decl>
<function-decl name='wcsftime' filepath='/usr/include/wchar.h' line='855' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-27'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-81'/>
<return type-id='type-id-27'/>
</function-decl>
<function-decl name='wcslen' filepath='/usr/include/wchar.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<return type-id='type-id-27'/>
</function-decl>
<function-decl name='wcsncat' filepath='/usr/include/wchar.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-27'/>
<return type-id='type-id-100'/>
</function-decl>
<function-decl name='wcsncmp' filepath='/usr/include/wchar.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-27'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='wcsncpy' filepath='/usr/include/wchar.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-27'/>
<return type-id='type-id-100'/>
</function-decl>
<function-decl name='wcsrtombs' filepath='/usr/include/wchar.h' line='414' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-35'/>
<parameter type-id='type-id-85'/>
<parameter type-id='type-id-27'/>
<parameter type-id='type-id-87'/>
<return type-id='type-id-27'/>
</function-decl>
<function-decl name='wcsspn' filepath='/usr/include/wchar.h' line='256' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-84'/>
<return type-id='type-id-27'/>
</function-decl>
<function-decl name='wcstod' filepath='/usr/include/wchar.h' line='450' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-101'/>
<return type-id='type-id-9'/>
</function-decl>
<function-decl name='wcstof' filepath='/usr/include/wchar.h' line='457' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-101'/>
<return type-id='type-id-10'/>
</function-decl>
<function-decl name='wcstok' filepath='/usr/include/wchar.h' line='282' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-101'/>
<return type-id='type-id-100'/>
</function-decl>
<function-decl name='wcstol' filepath='/usr/include/wchar.h' line='468' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-101'/>
<parameter type-id='type-id-11'/>
<return type-id='type-id-13'/>
</function-decl>
<function-decl name='wcstoul' filepath='/usr/include/wchar.h' line='473' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-101'/>
<parameter type-id='type-id-11'/>
<return type-id='type-id-17'/>
</function-decl>
<function-decl name='wcsxfrm' filepath='/usr/include/wchar.h' line='196' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-27'/>
<return type-id='type-id-27'/>
</function-decl>
<function-decl name='wctob' filepath='/usr/include/wchar.h' line='357' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-24'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='wmemcmp' filepath='/usr/include/wchar.h' line='325' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-27'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='wmemcpy' filepath='/usr/include/wchar.h' line='329' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-27'/>
<return type-id='type-id-100'/>
</function-decl>
<function-decl name='wmemmove' filepath='/usr/include/wchar.h' line='334' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-27'/>
<return type-id='type-id-100'/>
</function-decl>
<function-decl name='wmemset' filepath='/usr/include/wchar.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-100'/>
<parameter type-id='type-id-22'/>
<parameter type-id='type-id-27'/>
<return type-id='type-id-100'/>
</function-decl>
<function-decl name='wprintf' filepath='/usr/include/wchar.h' line='601' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='wscanf' filepath='/usr/include/wchar.h' line='642' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='wcschr' mangled-name='wcschr' filepath='/usr/include/wchar.h' line='224' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-22'/>
<return type-id='type-id-84'/>
</function-decl>
<function-decl name='wcspbrk' mangled-name='wcspbrk' filepath='/usr/include/wchar.h' line='262' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-84'/>
<return type-id='type-id-84'/>
</function-decl>
<function-decl name='wcsrchr' mangled-name='wcsrchr' filepath='/usr/include/wchar.h' line='234' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-22'/>
<return type-id='type-id-84'/>
</function-decl>
<function-decl name='wcsstr' mangled-name='wcsstr' filepath='/usr/include/wchar.h' line='273' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-84'/>
<return type-id='type-id-84'/>
</function-decl>
<function-decl name='wmemchr' mangled-name='wmemchr' filepath='/usr/include/wchar.h' line='316' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-22'/>
<parameter type-id='type-id-27'/>
<return type-id='type-id-84'/>
</function-decl>
<function-decl name='wcstold' filepath='/usr/include/wchar.h' line='459' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-101'/>
<return type-id='type-id-12'/>
</function-decl>
<function-decl name='wcstoll' filepath='/usr/include/wchar.h' line='483' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-101'/>
<parameter type-id='type-id-11'/>
<return type-id='type-id-14'/>
</function-decl>
<function-decl name='wcstoull' filepath='/usr/include/wchar.h' line='490' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-84'/>
<parameter type-id='type-id-101'/>
<parameter type-id='type-id-11'/>
<return type-id='type-id-15'/>
</function-decl>
<function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-11'/>
<parameter type-id='type-id-33'/>
<return type-id='type-id-35'/>
</function-decl>
<function-decl name='localeconv' filepath='/usr/include/locale.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
<return type-id='type-id-86'/>
</function-decl>
<function-decl name='iswctype' filepath='/usr/include/wctype.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-24'/>
<parameter type-id='type-id-36'/>
<return type-id='type-id-11'/>
</function-decl>
<function-decl name='towctrans' filepath='/usr/include/wctype.h' line='221' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-24'/>
<parameter type-id='type-id-38'/>
<return type-id='type-id-24'/>
</function-decl>
<function-decl name='wctrans' filepath='/usr/include/wctype.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-33'/>
<return type-id='type-id-38'/>
</function-decl>
<function-decl name='wctype' filepath='/usr/include/wctype.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-33'/>
<return type-id='type-id-36'/>
</function-decl>
<function-decl name='foo' mangled-name='_Z3fooRKSs' filepath='/home/dodji/git/libabigail.git/suppr/tests/data/test-read-dwarf/test24-drop-fns.cc' line='14' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Z3fooRKSs'>
<parameter type-id='type-id-79' name='s' filepath='/home/dodji/git/libabigail.git/suppr/tests/data/test-read-dwarf/test24-drop-fns.cc' line='14' column='1'/>
<return type-id='type-id-76'/>
</function-decl>
<function-decl name='bar' mangled-name='_Z3barRKSs' filepath='/home/dodji/git/libabigail.git/suppr/tests/data/test-read-dwarf/test24-drop-fns.cc' line='21' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Z3barRKSs'>
<parameter type-id='type-id-79' name='str' filepath='/home/dodji/git/libabigail.git/suppr/tests/data/test-read-dwarf/test24-drop-fns.cc' line='21' column='1'/>
<return type-id='type-id-98'/>
</function-decl>
<class-decl name='_IO_FILE' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-25'/>
</abi-instr>
</abi-corpus>