@@ -178,12 +178,6 @@ public:
void
decl_only_class_equals_definition(bool f) const;
- bool
- use_enum_binary_only_equality() const;
-
- void
- use_enum_binary_only_equality(bool f) const;
-
bool
is_void_type(const type_base_sptr&) const;
@@ -4178,11 +4178,8 @@ compute_diff(const enum_type_decl_sptr first,
second->get_underlying_type(),
ctxt);
enum_diff_sptr d(new enum_diff(first, second, ud, ctxt));
- bool s = first->get_environment()->use_enum_binary_only_equality();
- first->get_environment()->use_enum_binary_only_equality(true);
if (first != second)
{
- first->get_environment()->use_enum_binary_only_equality(false);
compute_diff(first->get_enumerators().begin(),
first->get_enumerators().end(),
second->get_enumerators().begin(),
@@ -4190,7 +4187,6 @@ compute_diff(const enum_type_decl_sptr first,
d->priv_->enumerators_changes_);
d->ensure_lookup_tables_populated();
}
- first->get_environment()->use_enum_binary_only_equality(s);
ctxt->initialize_canonical_diff(d);
return d;
@@ -4149,12 +4149,9 @@ public:
ABG_ASSERT(!e->canonicalization_is_done());
bool s0 = e->decl_only_class_equals_definition();
- bool s1 = e->use_enum_binary_only_equality();
e->decl_only_class_equals_definition(true);
- e->use_enum_binary_only_equality(true);
bool equal = l == r;
e->decl_only_class_equals_definition(s0);
- e->use_enum_binary_only_equality(s1);
return equal;
}
@@ -3499,70 +3499,6 @@ void
environment::decl_only_class_equals_definition(bool f) const
{priv_->decl_only_class_equals_definition_ = f;}
-/// Test if comparing enums is done by looking only at enumerators
-/// values.
-///
-/// For enums, using 'binary-only' equality means looking only at
-/// values of enumerators (not names of enumerators) when comparing
-/// enums. This means we are only considering the binary equality of
-/// enums, not source equality.
-///
-/// The two enums below are "binary equal", but not "source-level
-/// equal":
-///
-/// enum foo
-/// {
-/// e0 = 0;
-/// e1 = 1;
-/// e2 = 2;
-/// };
-///
-/// enum foo
-/// {
-/// e0 = 0;
-/// e1 = 1;
-/// e2 = 2;
-/// e_added = 1;
-/// };
-///
-/// @return true iff using 'binary-only' equality for enums
-/// comparison.
-bool
-environment::use_enum_binary_only_equality() const
-{return priv_->use_enum_binary_only_equality_;}
-
-/// Setter for the property that determines that comparing enums is
-/// done by looking only at enumerators values.
-///
-/// For enums, using 'binary-only' equality means looking only at
-/// values of enumerators (not names of enumerators) when comparing
-/// enums. This means we are only considering the binary equality of
-/// enums, not source equality.
-///
-/// The two enums below are "binary equal", but not "source-level
-/// equal":
-///
-/// enum foo
-/// {
-/// e0 = 0;
-/// e1 = 1;
-/// e2 = 2;
-/// };
-///
-/// enum foo
-/// {
-/// e0 = 0;
-/// e1 = 1;
-/// e2 = 2;
-/// e_added = 1;
-/// };
-///
-/// @param f true iff using 'binary-only' equality for enums
-/// comparison.
-void
-environment::use_enum_binary_only_equality(bool f) const
-{priv_->use_enum_binary_only_equality_ = f;}
-
/// Test if a given type is a void type as defined in the current
/// environment.
///
@@ -5137,7 +5073,7 @@ equals(const decl_base& l, const decl_base& r, change_kind* k)
interned_string ln = get_decl_name_for_comparison(l);
interned_string rn = get_decl_name_for_comparison(r);
- ; /// If both of the current decls have an anonymous scope then let's
+ /// If both of the current decls have an anonymous scope then let's
/// compare their name component by component by properly handling
/// anonymous scopes. That's the slow path.
///
@@ -17477,6 +17413,82 @@ is_enumerator_present_in_enum(const enum_type_decl::enumerator &enr,
return false;
}
+/// Check if two enumerators values are equal.
+///
+/// This function doesn't check if the names of the enumerators are
+/// equal or not.
+///
+/// @param enr the first enumerator to consider.
+///
+/// @param enl the second enumerator to consider.
+///
+/// @return true iff @p enr has the same value as @p enl.
+static bool
+enumerators_values_are_equal(const enum_type_decl::enumerator &enr,
+ const enum_type_decl::enumerator &enl)
+{return enr.get_value() == enl.get_value();}
+
+/// Detect if a given enumerator value is present in an enum.
+///
+/// This function looks inside the enumerators of a given enum and
+/// detect if the enum contains at least one enumerator or a given
+/// value. The function also detects if the enumerator value we are
+/// looking at is present in the enum with a different name. An
+/// enumerator with the same value but with a different name is named
+/// a "redundant enumerator". The function returns the set of
+/// enumerators that are redundant with the value we are looking at.
+///
+/// @param enr the enumerator to consider.
+///
+/// @param enom the enum to consider.
+///
+/// @param redundant_enrs if the function returns true, then this
+/// vector is filled with enumerators that are redundant with the
+/// value of @p enr.
+///
+/// @return true iff the function detects that @p enom contains
+/// enumerators with the same value as @p enr.
+static bool
+is_enumerator_value_present_in_enum(const enum_type_decl::enumerator &enr,
+ const enum_type_decl &enom,
+ vector<enum_type_decl::enumerator>& redundant_enrs)
+{
+ bool found = false;
+ for (const auto &e : enom.get_enumerators())
+ if (enumerators_values_are_equal(e, enr))
+ {
+ found = true;
+ if (e != enr)
+ redundant_enrs.push_back(e);
+ }
+
+ return found;
+}
+
+/// Check if an enumerator value is redundant in a given enum.
+///
+/// Given an enumerator value, this function detects if an enum
+/// contains at least one enumerator with the the same value but with
+/// a different name.
+///
+/// @param enr the enumerator to consider.
+///
+/// @param enom the enum to consider.
+///
+/// @return true iff @p enr is a redundant enumerator in enom.
+static bool
+is_enumerator_value_redundant(const enum_type_decl::enumerator &enr,
+ const enum_type_decl &enom)
+{
+ vector<enum_type_decl::enumerator> redundant_enrs;
+ if (is_enumerator_value_present_in_enum(enr, enom, redundant_enrs))
+ {
+ if (!redundant_enrs.empty())
+ return true;
+ }
+ return false;
+}
+
/// Compares two instances of @ref enum_type_decl.
///
/// If the two intances are different, set a bitfield to give some
@@ -17526,10 +17538,8 @@ equals(const enum_type_decl& l, const enum_type_decl& r, change_kind* k)
// Now compare the enumerators. Note that the order of declaration
// of enumerators should not matter in the comparison.
//
- // Also if the value of
- // abigail::ir::environment::use_enum_binary_only_equality() is
- // true, then enumerators are compared by considering their value
- // only. Their name is not taken into account.
+ // Also if an enumerator value is redundant, that shouldn't impact
+ // the comparison.
//
// In that case, note that the two enums below are considered equal:
//
@@ -17545,16 +17555,15 @@ equals(const enum_type_decl& l, const enum_type_decl& r, change_kind* k)
// e0 = 0;
// e1 = 1;
// e2 = 2;
- // e_added = 1;
+ // e_added = 1; // <-- this value is redundant with the value
+ // // of the enumerator e1.
// };
//
- // These two enums are considered different if
- // environment::use_enum_binary_only_equality() return false.
- //
- // So enumerators comparison should accomodate these conditions.
+ // These two enums are considered equal.
for(const auto &e : l.get_enumerators())
- if (!is_enumerator_present_in_enum(e, r))
+ if (!is_enumerator_present_in_enum(e, r)
+ && !is_enumerator_value_redundant(e, r))
{
result = false;
if (k)
@@ -17567,7 +17576,8 @@ equals(const enum_type_decl& l, const enum_type_decl& r, change_kind* k)
}
for(const auto &e : r.get_enumerators())
- if (!is_enumerator_present_in_enum(e, l))
+ if (!is_enumerator_present_in_enum(e, l)
+ && !is_enumerator_value_redundant(e, r))
{
result = false;
if (k)
@@ -17734,8 +17744,7 @@ bool
enum_type_decl::enumerator::operator==(const enumerator& other) const
{
bool names_equal = true;
- if (!get_environment()->use_enum_binary_only_equality())
- names_equal = (get_name() == other.get_name());
+ names_equal = (get_name() == other.get_name());
return names_equal && (get_value() == other.get_value());
}
@@ -0,0 +1,11 @@
+1 changed type:
+ 'enum E' changed:
+ type size hasn't changed
+ 1 enumerator deletion:
+ 'E::e2' value '1'
+ 1 enumerator insertion:
+ 'E::e1' value '1'
+1 changed declaration:
+ 'function void foo(E)' was changed to 'function void foo(E)':
+ parameter 1 of type 'enum E' has sub-type changes:
+ enum type 'enum E' changed, as reported earlier
@@ -51,9 +51,25 @@
<enumerator name='two' value='1'/>
</enum-decl>
</member-type>
+ <member-type access='public'>
+ <!-- enum S::__anonymous_enum__1 -->
+ <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='20' column='1' id='type-id-11'>
+ <underlying-type type-id='type-id-4'/>
+ <enumerator name='three' value='0'/>
+ <enumerator name='four' value='1'/>
+ </enum-decl>
+ </member-type>
+ <member-type access='public'>
+ <!-- enum S::__anonymous_enum__2 -->
+ <enum-decl name='__anonymous_enum__2' is-anonymous='yes' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='22' column='1' id='type-id-12'>
+ <underlying-type type-id='type-id-4'/>
+ <enumerator name='five' value='0'/>
+ <enumerator name='six' value='1'/>
+ </enum-decl>
+ </member-type>
<member-type access='public'>
<!-- union {int a; char b;} -->
- <union-decl name='__anonymous_union__' size-in-bits='32' is-anonymous='yes' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='24' column='1' id='type-id-11'>
+ <union-decl name='__anonymous_union__' size-in-bits='32' is-anonymous='yes' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='24' column='1' id='type-id-13'>
<data-member access='public'>
<!-- int a -->
<var-decl name='a' type-id='type-id-3' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='24' column='1'/>
@@ -66,7 +82,7 @@
</member-type>
<member-type access='public'>
<!-- union {unsigned int c; double d;} -->
- <union-decl name='__anonymous_union__1' size-in-bits='64' is-anonymous='yes' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='26' column='1' id='type-id-12'>
+ <union-decl name='__anonymous_union__1' size-in-bits='64' is-anonymous='yes' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='26' column='1' id='type-id-14'>
<data-member access='public'>
<!-- unsigned int c -->
<var-decl name='c' type-id='type-id-5' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='26' column='1'/>
@@ -95,31 +111,31 @@
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
<!-- S::__anonymous_enum__1 S::e2 -->
- <var-decl name='e2' type-id='type-id-10' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='20' column='1'/>
+ <var-decl name='e2' type-id='type-id-11' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='20' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
<!-- S::__anonymous_enum__2 S::e3 -->
- <var-decl name='e3' type-id='type-id-10' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='22' column='1'/>
+ <var-decl name='e3' type-id='type-id-12' visibility='default' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='22' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='160'>
<!-- union {int a; char b;} -->
- <var-decl name='' type-id='type-id-11' visibility='default'/>
+ <var-decl name='' type-id='type-id-13' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
<!-- union {unsigned int c; double d;} -->
- <var-decl name='' type-id='type-id-12' visibility='default'/>
+ <var-decl name='' type-id='type-id-14' visibility='default'/>
</data-member>
</class-decl>
<!-- S& -->
- <reference-type-def kind='lvalue' type-id='type-id-6' size-in-bits='64' id='type-id-13'/>
+ <reference-type-def kind='lvalue' type-id='type-id-6' size-in-bits='64' id='type-id-15'/>
<!-- void foo(S&) -->
<function-decl name='foo' mangled-name='_Z3fooR1S' filepath='/home/dodji/git/libabigail/fixes/tests/data/test-annotate/test-anonymous-members-0.cc' line='30' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Z3fooR1S'>
<!-- parameter of type 'S&' -->
- <parameter type-id='type-id-13'/>
+ <parameter type-id='type-id-15'/>
<!-- void -->
- <return type-id='type-id-14'/>
+ <return type-id='type-id-16'/>
</function-decl>
<!-- void -->
- <type-decl name='void' id='type-id-14'/>
+ <type-decl name='void' id='type-id-16'/>
</abi-instr>
</abi-corpus>
@@ -3454,6 +3454,18 @@
<enumerator name='NumberOfMinificationModes' value='6'/>
</enum-decl>
</member-type>
+ <member-type access='private'>
+ <!-- enum vtkTextureObject::__anonymous_enum__2 -->
+ <enum-decl name='__anonymous_enum__2' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkTextureObject.h' line='88' column='1' id='type-id-273'>
+ <underlying-type type-id='type-id-24'/>
+ <enumerator name='Native' value='0'/>
+ <enumerator name='Fixed16' value='1'/>
+ <enumerator name='Fixed24' value='2'/>
+ <enumerator name='Fixed32' value='3'/>
+ <enumerator name='Float32' value='4'/>
+ <enumerator name='NumberOfDepthFormats' value='5'/>
+ </enum-decl>
+ </member-type>
<member-function access='private' static='yes'>
<!-- bool vtkTextureObject::IsSupported() -->
<function-decl name='IsSupported' mangled-name='_ZN16vtkTextureObject11IsSupportedEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkTextureObject.h' line='459' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -3550,7 +3562,7 @@
</member-function>
</class-decl>
<!-- struct std::char_traits<char> -->
- <class-decl name='char_traits<char>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/char_traits.h' line='238' column='1' id='type-id-273'>
+ <class-decl name='char_traits<char>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/char_traits.h' line='238' column='1' id='type-id-274'>
<member-type access='public'>
<!-- typedef char std::char_traits<char>::char_type -->
<typedef-decl name='char_type' type-id='type-id-2' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/char_traits.h' line='239' column='1' id='type-id-157'/>
@@ -3594,7 +3606,7 @@
</member-function>
</class-decl>
<!-- enum std::_Ios_Fmtflags -->
- <enum-decl name='_Ios_Fmtflags' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='60' column='1' id='type-id-274'>
+ <enum-decl name='_Ios_Fmtflags' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='60' column='1' id='type-id-275'>
<underlying-type type-id='type-id-24'/>
<enumerator name='_S_boolalpha' value='1'/>
<enumerator name='_S_dec' value='2'/>
@@ -3617,7 +3629,7 @@
<enumerator name='_S_ios_fmtflags_end' value='65536'/>
</enum-decl>
<!-- enum std::_Ios_Openmode -->
- <enum-decl name='_Ios_Openmode' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='112' column='1' id='type-id-275'>
+ <enum-decl name='_Ios_Openmode' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='112' column='1' id='type-id-276'>
<underlying-type type-id='type-id-24'/>
<enumerator name='_S_app' value='1'/>
<enumerator name='_S_ate' value='2'/>
@@ -3628,7 +3640,7 @@
<enumerator name='_S_ios_openmode_end' value='65536'/>
</enum-decl>
<!-- enum std::_Ios_Iostate -->
- <enum-decl name='_Ios_Iostate' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='152' column='1' id='type-id-276'>
+ <enum-decl name='_Ios_Iostate' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='152' column='1' id='type-id-277'>
<underlying-type type-id='type-id-24'/>
<enumerator name='_S_goodbit' value='0'/>
<enumerator name='_S_badbit' value='1'/>
@@ -3637,7 +3649,7 @@
<enumerator name='_S_ios_iostate_end' value='65536'/>
</enum-decl>
<!-- enum std::_Ios_Seekdir -->
- <enum-decl name='_Ios_Seekdir' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='189' column='1' id='type-id-277'>
+ <enum-decl name='_Ios_Seekdir' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='189' column='1' id='type-id-278'>
<underlying-type type-id='type-id-24'/>
<enumerator name='_S_beg' value='0'/>
<enumerator name='_S_cur' value='1'/>
@@ -3645,11 +3657,11 @@
<enumerator name='_S_ios_seekdir_end' value='65536'/>
</enum-decl>
<!-- typedef long int std::streamoff -->
- <typedef-decl name='streamoff' type-id='type-id-20' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/postypes.h' line='88' column='1' id='type-id-278'/>
+ <typedef-decl name='streamoff' type-id='type-id-20' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/postypes.h' line='88' column='1' id='type-id-279'/>
<!-- typedef ptrdiff_t std::streamsize -->
- <typedef-decl name='streamsize' type-id='type-id-105' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/postypes.h' line='98' column='1' id='type-id-279'/>
+ <typedef-decl name='streamsize' type-id='type-id-105' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/postypes.h' line='98' column='1' id='type-id-280'/>
<!-- struct std::_Destroy_aux<true> -->
- <class-decl name='_Destroy_aux<true>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='106' column='1' id='type-id-280'>
+ <class-decl name='_Destroy_aux<true>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='106' column='1' id='type-id-281'>
<member-function access='public' static='yes'>
<!-- void std::_Destroy_aux<true>::__destroy<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
<function-decl name='__destroy<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -3676,9 +3688,9 @@
<!-- void std::_Destroy_aux<true>::__destroy<vtkPixelBufferObject**>(vtkPixelBufferObject**) -->
<function-decl name='__destroy<vtkPixelBufferObject**>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -3696,7 +3708,7 @@
</member-function>
</class-decl>
<!-- struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
- <class-decl name='_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' size-in-bits='256' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='95' column='1' id='type-id-282'>
+ <class-decl name='_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' size-in-bits='256' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='95' column='1' id='type-id-283'>
<data-member access='public' layout-offset-in-bits='0'>
<!-- vtkPixelExtent* std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::_M_cur -->
<var-decl name='_M_cur' type-id='type-id-44' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='111' column='1'/>
@@ -3717,7 +3729,7 @@
<!-- void std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::_Deque_iterator(vtkPixelExtent*, vtkPixelExtent**) -->
<function-decl name='_Deque_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
- <parameter type-id='type-id-283' is-artificial='yes'/>
+ <parameter type-id='type-id-284' is-artificial='yes'/>
<!-- parameter of type 'vtkPixelExtent*' -->
<parameter type-id='type-id-44'/>
<!-- parameter of type 'vtkPixelExtent**' -->
@@ -3730,7 +3742,7 @@
<!-- void std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::_Deque_iterator() -->
<function-decl name='_Deque_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
- <parameter type-id='type-id-283' is-artificial='yes'/>
+ <parameter type-id='type-id-284' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -3739,7 +3751,7 @@
<!-- void std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::_Deque_iterator(const std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>&) -->
<function-decl name='_Deque_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
- <parameter type-id='type-id-283' is-artificial='yes'/>
+ <parameter type-id='type-id-284' is-artificial='yes'/>
<!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>&' -->
<parameter type-id='type-id-135'/>
<!-- void -->
@@ -3757,7 +3769,7 @@
<!-- void std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::_M_set_node(vtkPixelExtent**) -->
<function-decl name='_M_set_node' mangled-name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_E11_M_set_nodeEPPS0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
- <parameter type-id='type-id-283' is-artificial='yes'/>
+ <parameter type-id='type-id-284' is-artificial='yes'/>
<!-- parameter of type 'vtkPixelExtent**' -->
<parameter type-id='type-id-250'/>
<!-- void -->
@@ -3768,7 +3780,7 @@
<!-- const vtkPixelExtent& std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::operator*() -->
<function-decl name='operator*' mangled-name='_ZNKSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_EdeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
- <parameter type-id='type-id-284' is-artificial='yes'/>
+ <parameter type-id='type-id-285' is-artificial='yes'/>
<!-- const vtkPixelExtent& -->
<return type-id='type-id-45'/>
</function-decl>
@@ -3777,31 +3789,31 @@
<!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>& std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::operator++() -->
<function-decl name='operator++' mangled-name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_EppEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
- <parameter type-id='type-id-283' is-artificial='yes'/>
+ <parameter type-id='type-id-284' is-artificial='yes'/>
<!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>& -->
- <return type-id='type-id-285'/>
+ <return type-id='type-id-286'/>
</function-decl>
</member-function>
<member-function access='public'>
<!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::operator+(long int) -->
<function-decl name='operator+' mangled-name='_ZNKSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_EplEl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
- <parameter type-id='type-id-284' is-artificial='yes'/>
+ <parameter type-id='type-id-285' is-artificial='yes'/>
<!-- parameter of type 'long int' -->
<parameter type-id='type-id-20'/>
<!-- struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
- <return type-id='type-id-282'/>
+ <return type-id='type-id-283'/>
</function-decl>
</member-function>
<member-function access='public'>
<!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>& std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>::operator+=(long int) -->
<function-decl name='operator+=' mangled-name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRKS0_PS1_EpLEl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>*' -->
- <parameter type-id='type-id-283' is-artificial='yes'/>
+ <parameter type-id='type-id-284' is-artificial='yes'/>
<!-- parameter of type 'long int' -->
<parameter type-id='type-id-20'/>
<!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>& -->
- <return type-id='type-id-285'/>
+ <return type-id='type-id-286'/>
</function-decl>
</member-function>
</class-decl>
@@ -4004,7 +4016,7 @@
</member-type>
<member-type access='protected'>
<!-- enum std::_Deque_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::__anonymous_enum__ -->
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='465' column='1' id='type-id-286'>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='465' column='1' id='type-id-287'>
<underlying-type type-id='type-id-24'/>
<enumerator name='_S_initial_map_size' value='8'/>
</enum-decl>
@@ -4352,11 +4364,11 @@
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::__false_type' -->
- <parameter type-id='type-id-287'/>
+ <parameter type-id='type-id-288'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -4369,9 +4381,9 @@
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -4388,7 +4400,7 @@
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- parameter of type 'struct std::__false_type' -->
- <parameter type-id='type-id-287'/>
+ <parameter type-id='type-id-288'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -4445,7 +4457,7 @@
<!-- implicit parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
<parameter type-id='type-id-167' is-artificial='yes'/>
<!-- struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
- <return type-id='type-id-282'/>
+ <return type-id='type-id-283'/>
</function-decl>
</member-function>
<member-function access='private'>
@@ -4454,7 +4466,7 @@
<!-- implicit parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >*' -->
<parameter type-id='type-id-167' is-artificial='yes'/>
<!-- struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
- <return type-id='type-id-282'/>
+ <return type-id='type-id-283'/>
</function-decl>
</member-function>
<member-function access='private'>
@@ -4556,9 +4568,9 @@
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- void -->
@@ -4573,11 +4585,11 @@
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::forward_iterator_tag' -->
- <parameter type-id='type-id-288'/>
+ <parameter type-id='type-id-289'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -4631,14 +4643,14 @@
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- parameter of type 'struct std::forward_iterator_tag' -->
- <parameter type-id='type-id-288'/>
+ <parameter type-id='type-id-289'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
</member-function>
</class-decl>
<!-- struct std::__uninitialized_fill<false> -->
- <class-decl name='__uninitialized_fill<false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='122' column='1' id='type-id-289'>
+ <class-decl name='__uninitialized_fill<false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='122' column='1' id='type-id-290'>
<member-function access='public' static='yes'>
<!-- void std::__uninitialized_fill<false>::uninitialized_fill<vtkPixelExtent*, vtkPixelExtent>(vtkPixelExtent*, const vtkPixelExtent&) -->
<function-decl name='uninitialized_fill<vtkPixelExtent*, vtkPixelExtent>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -4654,10 +4666,10 @@
</member-function>
</class-decl>
<!-- struct std::_Resetiosflags -->
- <class-decl name='_Resetiosflags' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='49' column='1' id='type-id-290'>
+ <class-decl name='_Resetiosflags' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='49' column='1' id='type-id-291'>
<member-type access='public'>
<!-- typedef std::_Ios_Fmtflags std::_Resetiosflags::fmtflags -->
- <typedef-decl name='fmtflags' type-id='type-id-274' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='263' column='1' id='type-id-137'/>
+ <typedef-decl name='fmtflags' type-id='type-id-275' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='263' column='1' id='type-id-137'/>
</member-type>
<data-member access='public' layout-offset-in-bits='0'>
<!-- std::_Resetiosflags::fmtflags std::_Resetiosflags::_M_mask -->
@@ -4665,14 +4677,14 @@
</data-member>
</class-decl>
<!-- struct std::_Setprecision -->
- <class-decl name='_Setprecision' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='194' column='1' id='type-id-291'>
+ <class-decl name='_Setprecision' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='194' column='1' id='type-id-292'>
<data-member access='public' layout-offset-in-bits='0'>
<!-- int std::_Setprecision::_M_n -->
<var-decl name='_M_n' type-id='type-id-17' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='194' column='1'/>
</data-member>
</class-decl>
<!-- struct std::_Setw -->
- <class-decl name='_Setw' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='228' column='1' id='type-id-292'>
+ <class-decl name='_Setw' size-in-bits='32' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='228' column='1' id='type-id-293'>
<data-member access='public' layout-offset-in-bits='0'>
<!-- int std::_Setw::_M_n -->
<var-decl name='_M_n' type-id='type-id-17' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/iomanip' line='228' column='1'/>
@@ -4684,11 +4696,11 @@
<class-decl name='__basic_file<char>' size-in-bits='128' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/x86_64-redhat-linux/bits/basic_file.h' line='53' column='1' id='type-id-139'>
<member-type access='private'>
<!-- typedef std::_Ios_Openmode std::__basic_file<char>::openmode -->
- <typedef-decl name='openmode' type-id='type-id-275' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='369' column='1' id='type-id-142'/>
+ <typedef-decl name='openmode' type-id='type-id-276' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='369' column='1' id='type-id-142'/>
</member-type>
<member-type access='private'>
<!-- typedef std::_Ios_Seekdir std::__basic_file<char>::seekdir -->
- <typedef-decl name='seekdir' type-id='type-id-277' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='401' column='1' id='type-id-144'/>
+ <typedef-decl name='seekdir' type-id='type-id-278' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='401' column='1' id='type-id-144'/>
</member-type>
<data-member access='private' layout-offset-in-bits='0'>
<!-- std::__c_file* std::__basic_file<char>::_M_cfile -->
@@ -4729,7 +4741,7 @@
<class-decl name='basic_ios<char, std::char_traits<char> >' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-152'>
<member-type access='public'>
<!-- typedef std::_Ios_Iostate std::basic_ios<char, std::char_traits<char> >::iostate -->
- <typedef-decl name='iostate' type-id='type-id-276' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='338' column='1' id='type-id-155'/>
+ <typedef-decl name='iostate' type-id='type-id-277' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='338' column='1' id='type-id-155'/>
</member-type>
<member-function access='public'>
<!-- std::basic_ios<char, std::char_traits<char> >::iostate std::basic_ios<char, std::char_traits<char> >::rdstate() -->
@@ -4746,7 +4758,7 @@
<!-- implicit parameter of type 'std::basic_ios<char, std::char_traits<char> >*' -->
<parameter type-id='type-id-204' is-artificial='yes'/>
<!-- parameter of type 'enum std::_Ios_Iostate' -->
- <parameter type-id='type-id-276'/>
+ <parameter type-id='type-id-277'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -4802,7 +4814,7 @@
<!-- implicit parameter of type 'std::basic_ostream<char, std::char_traits<char> >*' -->
<parameter type-id='type-id-207' is-artificial='yes'/>
<!-- parameter of type 'std::basic_ostream<char, std::char_traits<char> >& (std::basic_ostream<char, std::char_traits<char> >&)*' -->
- <parameter type-id='type-id-293'/>
+ <parameter type-id='type-id-294'/>
<!-- std::basic_ostream<char, std::char_traits<char> >& -->
<return type-id='type-id-206'/>
</function-decl>
@@ -4826,7 +4838,7 @@
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- artificial parameter of type 'void**' -->
- <parameter type-id='type-id-294' is-artificial='yes'/>
+ <parameter type-id='type-id-295' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -4850,7 +4862,7 @@
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- artificial parameter of type 'void**' -->
- <parameter type-id='type-id-294' is-artificial='yes'/>
+ <parameter type-id='type-id-295' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -5013,17 +5025,17 @@
</data-member>
</class-decl>
<!-- class std::reverse_iterator<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> > -->
- <class-decl name='reverse_iterator<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> >' visibility='default' is-declaration-only='yes' id='type-id-295'/>
+ <class-decl name='reverse_iterator<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> >' visibility='default' is-declaration-only='yes' id='type-id-296'/>
<!-- class std::reverse_iterator<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> > -->
- <class-decl name='reverse_iterator<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >' visibility='default' is-declaration-only='yes' id='type-id-296'/>
+ <class-decl name='reverse_iterator<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >' visibility='default' is-declaration-only='yes' id='type-id-297'/>
<!-- std::_Ios_Iostate std::operator|(std::_Ios_Iostate, std::_Ios_Iostate) -->
<function-decl name='operator|' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'enum std::_Ios_Iostate' -->
- <parameter type-id='type-id-276'/>
+ <parameter type-id='type-id-277'/>
<!-- parameter of type 'enum std::_Ios_Iostate' -->
- <parameter type-id='type-id-276'/>
+ <parameter type-id='type-id-277'/>
<!-- enum std::_Ios_Iostate -->
- <return type-id='type-id-276'/>
+ <return type-id='type-id-277'/>
</function-decl>
<!-- const int& std::min<int>(const int&, const int&) -->
<function-decl name='min<int>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='186' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -6626,7 +6638,7 @@
<!-- int[6] -->
<array-type-def dimensions='1' type-id='type-id-17' size-in-bits='192' id='type-id-59'>
<!-- <anonymous range>[6] -->
- <subrange length='6' type-id='type-id-4' id='type-id-297'/>
+ <subrange length='6' type-id='type-id-4' id='type-id-298'/>
</array-type-def>
<!-- class vtkWeakPointer<vtkImageDataLIC2D> -->
<class-decl name='vtkWeakPointer<vtkImageDataLIC2D>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-61'>
@@ -6636,7 +6648,7 @@
<!-- void vtkWeakPointer<vtkImageDataLIC2D>::vtkWeakPointer() -->
<function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkWeakPointer<vtkImageDataLIC2D>*' -->
- <parameter type-id='type-id-298' is-artificial='yes'/>
+ <parameter type-id='type-id-299' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -6645,7 +6657,7 @@
<!-- void vtkWeakPointer<vtkImageDataLIC2D>::vtkWeakPointer(vtkImageDataLIC2D*) -->
<function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkWeakPointer<vtkImageDataLIC2D>*' -->
- <parameter type-id='type-id-298' is-artificial='yes'/>
+ <parameter type-id='type-id-299' is-artificial='yes'/>
<!-- parameter of type 'vtkImageDataLIC2D*' -->
<parameter type-id='type-id-65'/>
<!-- void -->
@@ -6656,7 +6668,7 @@
<!-- void vtkWeakPointer<vtkImageDataLIC2D>::vtkWeakPointer(const vtkWeakPointerBase&) -->
<function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkWeakPointer<vtkImageDataLIC2D>*' -->
- <parameter type-id='type-id-298' is-artificial='yes'/>
+ <parameter type-id='type-id-299' is-artificial='yes'/>
<!-- parameter of type 'const vtkWeakPointerBase&' -->
<parameter type-id='type-id-36'/>
<!-- void -->
@@ -6667,7 +6679,7 @@
<!-- void vtkWeakPointer<vtkImageDataLIC2D>::vtkWeakPointer(vtkImageDataLIC2D*, const vtkWeakPointerBase::NoReference&) -->
<function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkWeakPointer<vtkImageDataLIC2D>*' -->
- <parameter type-id='type-id-298' is-artificial='yes'/>
+ <parameter type-id='type-id-299' is-artificial='yes'/>
<!-- parameter of type 'vtkImageDataLIC2D*' -->
<parameter type-id='type-id-65'/>
<!-- parameter of type 'const vtkWeakPointerBase::NoReference&' -->
@@ -6680,7 +6692,7 @@
<!-- vtkImageDataLIC2D* vtkWeakPointer<vtkImageDataLIC2D>::GetPointer() -->
<function-decl name='GetPointer' mangled-name='_ZNK14vtkWeakPointerI17vtkImageDataLIC2DE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkWeakPointer<vtkImageDataLIC2D>*' -->
- <parameter type-id='type-id-299' is-artificial='yes'/>
+ <parameter type-id='type-id-300' is-artificial='yes'/>
<!-- vtkImageDataLIC2D* -->
<return type-id='type-id-65'/>
</function-decl>
@@ -6689,7 +6701,7 @@
<!-- vtkImageDataLIC2D* vtkWeakPointer<vtkImageDataLIC2D>::operator vtkImageDataLIC2D*() -->
<function-decl name='operator vtkImageDataLIC2D*' mangled-name='_ZNK14vtkWeakPointerI17vtkImageDataLIC2DEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkWeakPointer<vtkImageDataLIC2D>*' -->
- <parameter type-id='type-id-299' is-artificial='yes'/>
+ <parameter type-id='type-id-300' is-artificial='yes'/>
<!-- vtkImageDataLIC2D* -->
<return type-id='type-id-65'/>
</function-decl>
@@ -6698,7 +6710,7 @@
<!-- vtkImageDataLIC2D* vtkWeakPointer<vtkImageDataLIC2D>::operator->() -->
<function-decl name='operator->' mangled-name='_ZNK14vtkWeakPointerI17vtkImageDataLIC2DEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkWeakPointer<vtkImageDataLIC2D>*' -->
- <parameter type-id='type-id-299' is-artificial='yes'/>
+ <parameter type-id='type-id-300' is-artificial='yes'/>
<!-- vtkImageDataLIC2D* -->
<return type-id='type-id-65'/>
</function-decl>
@@ -6707,64 +6719,64 @@
<!-- vtkWeakPointer<vtkImageDataLIC2D>& vtkWeakPointer<vtkImageDataLIC2D>::operator=(vtkImageDataLIC2D*) -->
<function-decl name='operator=' mangled-name='_ZN14vtkWeakPointerI17vtkImageDataLIC2DEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkWeakPointer<vtkImageDataLIC2D>*' -->
- <parameter type-id='type-id-298' is-artificial='yes'/>
+ <parameter type-id='type-id-299' is-artificial='yes'/>
<!-- parameter of type 'vtkImageDataLIC2D*' -->
<parameter type-id='type-id-65'/>
<!-- vtkWeakPointer<vtkImageDataLIC2D>& -->
- <return type-id='type-id-300'/>
+ <return type-id='type-id-301'/>
</function-decl>
</member-function>
</class-decl>
<!-- const std::ctype<char> -->
- <qualified-type-def type-id='type-id-301' const='yes' id='type-id-302'/>
+ <qualified-type-def type-id='type-id-302' const='yes' id='type-id-303'/>
<!-- const std::ctype<char>& -->
- <reference-type-def kind='lvalue' type-id='type-id-302' size-in-bits='64' id='type-id-303'/>
+ <reference-type-def kind='lvalue' type-id='type-id-303' size-in-bits='64' id='type-id-304'/>
<!-- const std::ctype<char>* -->
- <pointer-type-def type-id='type-id-302' size-in-bits='64' id='type-id-304'/>
+ <pointer-type-def type-id='type-id-303' size-in-bits='64' id='type-id-305'/>
<!-- const vtkImageDataLIC2DExtentTranslator -->
- <qualified-type-def type-id='type-id-57' const='yes' id='type-id-305'/>
+ <qualified-type-def type-id='type-id-57' const='yes' id='type-id-306'/>
<!-- const vtkImageDataLIC2DExtentTranslator& -->
- <reference-type-def kind='lvalue' type-id='type-id-305' size-in-bits='64' id='type-id-63'/>
+ <reference-type-def kind='lvalue' type-id='type-id-306' size-in-bits='64' id='type-id-63'/>
<!-- const vtkImageDataLIC2DExtentTranslator* -->
- <pointer-type-def type-id='type-id-305' size-in-bits='64' id='type-id-66'/>
+ <pointer-type-def type-id='type-id-306' size-in-bits='64' id='type-id-66'/>
<!-- const vtkWeakPointer<vtkImageDataLIC2D> -->
- <qualified-type-def type-id='type-id-61' const='yes' id='type-id-306'/>
+ <qualified-type-def type-id='type-id-61' const='yes' id='type-id-307'/>
<!-- const vtkWeakPointer<vtkImageDataLIC2D>* -->
- <pointer-type-def type-id='type-id-306' size-in-bits='64' id='type-id-299'/>
+ <pointer-type-def type-id='type-id-307' size-in-bits='64' id='type-id-300'/>
<!-- std::basic_ostream<char, std::char_traits<char> >& (std::basic_ostream<char, std::char_traits<char> >&)* -->
- <pointer-type-def type-id='type-id-307' size-in-bits='64' id='type-id-293'/>
+ <pointer-type-def type-id='type-id-308' size-in-bits='64' id='type-id-294'/>
<!-- vtkImageDataLIC2D& -->
- <reference-type-def kind='lvalue' type-id='type-id-171' size-in-bits='64' id='type-id-308'/>
+ <reference-type-def kind='lvalue' type-id='type-id-171' size-in-bits='64' id='type-id-309'/>
<!-- vtkWeakPointer<vtkImageDataLIC2D>& -->
- <reference-type-def kind='lvalue' type-id='type-id-61' size-in-bits='64' id='type-id-300'/>
+ <reference-type-def kind='lvalue' type-id='type-id-61' size-in-bits='64' id='type-id-301'/>
<!-- vtkWeakPointer<vtkImageDataLIC2D>* -->
- <pointer-type-def type-id='type-id-61' size-in-bits='64' id='type-id-298'/>
+ <pointer-type-def type-id='type-id-61' size-in-bits='64' id='type-id-299'/>
<!-- namespace std -->
<namespace-decl name='std'>
<!-- class std::ctype<char> -->
- <class-decl name='ctype<char>' visibility='default' is-declaration-only='yes' id='type-id-301'>
+ <class-decl name='ctype<char>' visibility='default' is-declaration-only='yes' id='type-id-302'>
<member-type access='private'>
<!-- typedef char std::ctype<char>::char_type -->
- <typedef-decl name='char_type' type-id='type-id-2' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/locale_facets.h' line='679' column='1' id='type-id-309'/>
+ <typedef-decl name='char_type' type-id='type-id-2' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/locale_facets.h' line='679' column='1' id='type-id-310'/>
</member-type>
<member-function access='private'>
<!-- std::ctype<char>::char_type std::ctype<char>::widen(char) -->
<function-decl name='widen' mangled-name='_ZNKSt5ctypeIcE5widenEc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/locale_facets.h' line='865' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::ctype<char>*' -->
- <parameter type-id='type-id-304' is-artificial='yes'/>
+ <parameter type-id='type-id-305' is-artificial='yes'/>
<!-- parameter of type 'char' -->
<parameter type-id='type-id-2'/>
<!-- typedef std::ctype<char>::char_type -->
- <return type-id='type-id-309'/>
+ <return type-id='type-id-310'/>
</function-decl>
</member-function>
</class-decl>
<!-- const std::ctype<char>& std::__check_facet<std::ctype<char> >(const std::ctype<char>*) -->
<function-decl name='__check_facet<std::ctype<char> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_ios.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'const std::ctype<char>*' -->
- <parameter type-id='type-id-304'/>
+ <parameter type-id='type-id-305'/>
<!-- const std::ctype<char>& -->
- <return type-id='type-id-303'/>
+ <return type-id='type-id-304'/>
</function-decl>
<!-- std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&) -->
<function-decl name='endl<char, std::char_traits<char> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ostream' line='538' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -6782,7 +6794,7 @@
</function-decl>
</namespace-decl>
<!-- std::basic_ostream<char, std::char_traits<char> >& (std::basic_ostream<char, std::char_traits<char> >&) -->
- <function-type size-in-bits='64' id='type-id-307'>
+ <function-type size-in-bits='64' id='type-id-308'>
<!-- parameter of type 'std::basic_ostream<char, std::char_traits<char> >&' -->
<parameter type-id='type-id-206'/>
<!-- std::basic_ostream<char, std::char_traits<char> >& -->
@@ -6791,62 +6803,62 @@
</abi-instr>
<abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
<!-- int[2] -->
- <array-type-def dimensions='1' type-id='type-id-17' size-in-bits='64' id='type-id-310'>
+ <array-type-def dimensions='1' type-id='type-id-17' size-in-bits='64' id='type-id-311'>
<!-- <anonymous range>[2] -->
- <subrange length='2' type-id='type-id-4' id='type-id-311'/>
+ <subrange length='2' type-id='type-id-4' id='type-id-312'/>
</array-type-def>
<!-- size_t[4] -->
- <array-type-def dimensions='1' type-id='type-id-50' size-in-bits='256' id='type-id-312'>
+ <array-type-def dimensions='1' type-id='type-id-50' size-in-bits='256' id='type-id-313'>
<!-- <anonymous range>[4] -->
<subrange length='4' type-id='type-id-4' id='type-id-11'/>
</array-type-def>
<!-- unsigned int*[2] -->
- <array-type-def dimensions='1' type-id='type-id-53' size-in-bits='128' id='type-id-313'>
+ <array-type-def dimensions='1' type-id='type-id-53' size-in-bits='128' id='type-id-314'>
<!-- <anonymous range>[2] -->
- <subrange length='2' type-id='type-id-4' id='type-id-311'/>
+ <subrange length='2' type-id='type-id-4' id='type-id-312'/>
</array-type-def>
<!-- unsigned int[2] -->
- <array-type-def dimensions='1' type-id='type-id-13' size-in-bits='64' id='type-id-314'>
+ <array-type-def dimensions='1' type-id='type-id-13' size-in-bits='64' id='type-id-315'>
<!-- <anonymous range>[2] -->
- <subrange length='2' type-id='type-id-4' id='type-id-311'/>
+ <subrange length='2' type-id='type-id-4' id='type-id-312'/>
</array-type-def>
<!-- class vtkLICPingPongBufferManager -->
- <class-decl name='vtkLICPingPongBufferManager' size-in-bits='896' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='107' column='1' id='type-id-315'>
+ <class-decl name='vtkLICPingPongBufferManager' size-in-bits='896' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='107' column='1' id='type-id-316'>
<data-member access='private' layout-offset-in-bits='0'>
<!-- vtkTextureObject* vtkLICPingPongBufferManager::VectorTexture -->
- <var-decl name='VectorTexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='779' column='1'/>
+ <var-decl name='VectorTexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='779' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='64'>
<!-- vtkTextureObject* vtkLICPingPongBufferManager::ImageVectorTexture -->
- <var-decl name='ImageVectorTexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='780' column='1'/>
+ <var-decl name='ImageVectorTexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='780' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='128'>
<!-- vtkTextureObject* vtkLICPingPongBufferManager::MaskVectorTexture -->
- <var-decl name='MaskVectorTexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='781' column='1'/>
+ <var-decl name='MaskVectorTexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='781' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='192'>
<!-- vtkTextureObject* vtkLICPingPongBufferManager::NoiseTexture -->
- <var-decl name='NoiseTexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='782' column='1'/>
+ <var-decl name='NoiseTexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='782' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='256'>
<!-- vtkTextureObject* vtkLICPingPongBufferManager::EETexture -->
- <var-decl name='EETexture' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='783' column='1'/>
+ <var-decl name='EETexture' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='783' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='320'>
<!-- vtkTextureObject* vtkLICPingPongBufferManager::LICTexture0 -->
- <var-decl name='LICTexture0' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='784' column='1'/>
+ <var-decl name='LICTexture0' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='784' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='384'>
<!-- vtkTextureObject* vtkLICPingPongBufferManager::SeedTexture0 -->
- <var-decl name='SeedTexture0' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='785' column='1'/>
+ <var-decl name='SeedTexture0' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='785' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='448'>
<!-- vtkTextureObject* vtkLICPingPongBufferManager::LICTexture1 -->
- <var-decl name='LICTexture1' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='786' column='1'/>
+ <var-decl name='LICTexture1' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='786' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='512'>
<!-- vtkTextureObject* vtkLICPingPongBufferManager::SeedTexture1 -->
- <var-decl name='SeedTexture1' type-id='type-id-316' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='787' column='1'/>
+ <var-decl name='SeedTexture1' type-id='type-id-317' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='787' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='576'>
<!-- int vtkLICPingPongBufferManager::MaskVectorUnit -->
@@ -6858,31 +6870,31 @@
</data-member>
<data-member access='private' layout-offset-in-bits='640'>
<!-- unsigned int vtkLICPingPongBufferManager::PingTextures[2] -->
- <var-decl name='PingTextures' type-id='type-id-314' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='791' column='1'/>
+ <var-decl name='PingTextures' type-id='type-id-315' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='791' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='704'>
<!-- unsigned int vtkLICPingPongBufferManager::PongTextures[2] -->
- <var-decl name='PongTextures' type-id='type-id-314' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='792' column='1'/>
+ <var-decl name='PongTextures' type-id='type-id-315' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='792' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='768'>
<!-- unsigned int* vtkLICPingPongBufferManager::Textures[2] -->
- <var-decl name='Textures' type-id='type-id-313' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='793' column='1'/>
+ <var-decl name='Textures' type-id='type-id-314' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='793' column='1'/>
</data-member>
<member-function access='private' constructor='yes'>
<!-- vtkLICPingPongBufferManager::vtkLICPingPongBufferManager(vtkFrameBufferObject2*, unsigned int*, vtkTextureObject*, vtkTextureObject*, vtkTextureObject*, int, int) -->
<function-decl name='vtkLICPingPongBufferManager' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- parameter of type 'vtkFrameBufferObject2*' -->
- <parameter type-id='type-id-318'/>
+ <parameter type-id='type-id-319'/>
<!-- parameter of type 'unsigned int*' -->
<parameter type-id='type-id-53'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- parameter of type 'int' -->
@@ -6895,7 +6907,7 @@
<!-- vtkLICPingPongBufferManager::~vtkLICPingPongBufferManager(int) -->
<function-decl name='~vtkLICPingPongBufferManager' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -6906,33 +6918,33 @@
<!-- vtkTextureObject* vtkLICPingPongBufferManager::AllocateNoiseBuffer(vtkRenderWindow*, unsigned int*) -->
<function-decl name='AllocateNoiseBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager19AllocateNoiseBufferEP15vtkRenderWindowPj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='601' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderWindow*' -->
<parameter type-id='type-id-35'/>
<!-- parameter of type 'unsigned int*' -->
<parameter type-id='type-id-53'/>
<!-- vtkTextureObject* -->
- <return type-id='type-id-316'/>
+ <return type-id='type-id-317'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkTextureObject* vtkLICPingPongBufferManager::AllocateVectorBuffer(vtkRenderWindow*, unsigned int*) -->
<function-decl name='AllocateVectorBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager20AllocateVectorBufferEP15vtkRenderWindowPj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='617' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderWindow*' -->
<parameter type-id='type-id-35'/>
<!-- parameter of type 'unsigned int*' -->
<parameter type-id='type-id-53'/>
<!-- vtkTextureObject* -->
- <return type-id='type-id-316'/>
+ <return type-id='type-id-317'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- int vtkLICPingPongBufferManager::GetVectorTextureUnit() -->
<function-decl name='GetVectorTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager20GetVectorTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='177' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -6941,7 +6953,7 @@
<!-- void vtkLICPingPongBufferManager::DettachImageVectorBuffer() -->
<function-decl name='DettachImageVectorBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager24DettachImageVectorBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='475' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -6950,7 +6962,7 @@
<!-- int vtkLICPingPongBufferManager::GetMaskVectorTextureUnit() -->
<function-decl name='GetMaskVectorTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager24GetMaskVectorTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -6959,7 +6971,7 @@
<!-- int vtkLICPingPongBufferManager::GetNoiseTextureUnit() -->
<function-decl name='GetNoiseTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager19GetNoiseTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='179' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -6968,7 +6980,7 @@
<!-- int vtkLICPingPongBufferManager::GetLICTextureUnit() -->
<function-decl name='GetLICTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager17GetLICTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='180' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -6977,7 +6989,7 @@
<!-- void vtkLICPingPongBufferManager::Swap() -->
<function-decl name='Swap' mangled-name='_ZN27vtkLICPingPongBufferManager4SwapEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='185' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -6986,7 +6998,7 @@
<!-- int vtkLICPingPongBufferManager::GetSeedTextureUnit() -->
<function-decl name='GetSeedTextureUnit' mangled-name='_ZN27vtkLICPingPongBufferManager18GetSeedTextureUnitEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='181' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -6995,16 +7007,16 @@
<!-- vtkTextureObject* vtkLICPingPongBufferManager::GetLastLICBuffer() -->
<function-decl name='GetLastLICBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager16GetLastLICBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- vtkTextureObject* -->
- <return type-id='type-id-316'/>
+ <return type-id='type-id-317'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- void vtkLICPingPongBufferManager::DettachEEBuffer() -->
<function-decl name='DettachEEBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager15DettachEEBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7013,7 +7025,7 @@
<!-- void vtkLICPingPongBufferManager::RenderQuad(float*, vtkPixelExtent) -->
<function-decl name='RenderQuad' mangled-name='_ZN27vtkLICPingPongBufferManager10RenderQuadEPf14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='673' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- parameter of type 'class vtkPixelExtent' -->
@@ -7026,7 +7038,7 @@
<!-- void vtkLICPingPongBufferManager::AttachEEBuffer() -->
<function-decl name='AttachEEBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager14AttachEEBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='494' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7035,7 +7047,7 @@
<!-- void vtkLICPingPongBufferManager::AttachLICBuffers() -->
<function-decl name='AttachLICBuffers' mangled-name='_ZN27vtkLICPingPongBufferManager16AttachLICBuffersEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='383' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7044,7 +7056,7 @@
<!-- void vtkLICPingPongBufferManager::DettachLICBuffers() -->
<function-decl name='DettachLICBuffers' mangled-name='_ZN27vtkLICPingPongBufferManager17DettachLICBuffersEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='423' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7053,7 +7065,7 @@
<!-- void vtkLICPingPongBufferManager::AttachVectorTextures() -->
<function-decl name='AttachVectorTextures' mangled-name='_ZN27vtkLICPingPongBufferManager20AttachVectorTexturesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='316' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7062,7 +7074,7 @@
<!-- void vtkLICPingPongBufferManager::DettachBuffers() -->
<function-decl name='DettachBuffers' mangled-name='_ZN27vtkLICPingPongBufferManager14DettachBuffersEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='538' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7071,7 +7083,7 @@
<!-- void vtkLICPingPongBufferManager::AttachImageVectorBuffer() -->
<function-decl name='AttachImageVectorBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager23AttachImageVectorBufferEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='452' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7080,20 +7092,20 @@
<!-- vtkTextureObject* vtkLICPingPongBufferManager::AllocateLICBuffer(vtkRenderWindow*, unsigned int*) -->
<function-decl name='AllocateLICBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager17AllocateLICBufferEP15vtkRenderWindowPj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='585' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderWindow*' -->
<parameter type-id='type-id-35'/>
<!-- parameter of type 'unsigned int*' -->
<parameter type-id='type-id-53'/>
<!-- vtkTextureObject* -->
- <return type-id='type-id-316'/>
+ <return type-id='type-id-317'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkTextureObject* vtkLICPingPongBufferManager::AllocateBuffer(vtkRenderWindow*, unsigned int*, int, int, float*) -->
<function-decl name='AllocateBuffer' mangled-name='_ZN27vtkLICPingPongBufferManager14AllocateBufferEP15vtkRenderWindowPjiiPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='632' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderWindow*' -->
<parameter type-id='type-id-35'/>
<!-- parameter of type 'unsigned int*' -->
@@ -7105,16 +7117,16 @@
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- vtkTextureObject* -->
- <return type-id='type-id-316'/>
+ <return type-id='type-id-317'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- void vtkLICPingPongBufferManager::ClearBuffers(vtkFrameBufferObject2*, const vtkPixelExtent&, const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, int) -->
<function-decl name='ClearBuffers' mangled-name='_ZN27vtkLICPingPongBufferManager12ClearBuffersEP21vtkFrameBufferObject2RK14vtkPixelExtentRKSt5dequeIS2_SaIS2_EEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- parameter of type 'vtkFrameBufferObject2*' -->
- <parameter type-id='type-id-318'/>
+ <parameter type-id='type-id-319'/>
<!-- parameter of type 'const vtkPixelExtent&' -->
<parameter type-id='type-id-45'/>
<!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
@@ -7129,7 +7141,7 @@
<!-- void vtkLICPingPongBufferManager::AttachNoiseTexture(int) -->
<function-decl name='AttachNoiseTexture' mangled-name='_ZN27vtkLICPingPongBufferManager18AttachNoiseTextureEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='359' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLICPingPongBufferManager*' -->
- <parameter type-id='type-id-317' is-artificial='yes'/>
+ <parameter type-id='type-id-318' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -7138,12 +7150,12 @@
</member-function>
</class-decl>
<!-- class vtkPainterCommunicator -->
- <class-decl name='vtkPainterCommunicator' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='30' column='1' id='type-id-319'>
+ <class-decl name='vtkPainterCommunicator' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='30' column='1' id='type-id-320'>
<member-function access='private' constructor='yes'>
<!-- vtkPainterCommunicator::vtkPainterCommunicator() -->
<function-decl name='vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320' is-artificial='yes'/>
+ <parameter type-id='type-id-321' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7152,9 +7164,9 @@
<!-- vtkPainterCommunicator::vtkPainterCommunicator(const vtkPainterCommunicator&) -->
<function-decl name='vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320' is-artificial='yes'/>
+ <parameter type-id='type-id-321' is-artificial='yes'/>
<!-- parameter of type 'const vtkPainterCommunicator&' -->
- <parameter type-id='type-id-321'/>
+ <parameter type-id='type-id-322'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7163,7 +7175,7 @@
<!-- vtkPainterCommunicator::~vtkPainterCommunicator(int) -->
<function-decl name='~vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320' is-artificial='yes'/>
+ <parameter type-id='type-id-321' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -7174,9 +7186,9 @@
<!-- void vtkPainterCommunicator::Copy(const vtkPainterCommunicator*, bool) -->
<function-decl name='Copy' mangled-name='_ZN22vtkPainterCommunicator4CopyEPKS_b' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320' is-artificial='yes'/>
+ <parameter type-id='type-id-321' is-artificial='yes'/>
<!-- parameter of type 'const vtkPainterCommunicator*' -->
- <parameter type-id='type-id-322'/>
+ <parameter type-id='type-id-323'/>
<!-- parameter of type 'bool' -->
<parameter type-id='type-id-1'/>
<!-- void -->
@@ -7187,9 +7199,9 @@
<!-- void vtkPainterCommunicator::Duplicate(const vtkPainterCommunicator*) -->
<function-decl name='Duplicate' mangled-name='_ZN22vtkPainterCommunicator9DuplicateEPKS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320' is-artificial='yes'/>
+ <parameter type-id='type-id-321' is-artificial='yes'/>
<!-- parameter of type 'const vtkPainterCommunicator*' -->
- <parameter type-id='type-id-322'/>
+ <parameter type-id='type-id-323'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7198,7 +7210,7 @@
<!-- int vtkPainterCommunicator::GetRank() -->
<function-decl name='GetRank' mangled-name='_ZN22vtkPainterCommunicator7GetRankEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320' is-artificial='yes'/>
+ <parameter type-id='type-id-321' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -7207,7 +7219,7 @@
<!-- int vtkPainterCommunicator::GetSize() -->
<function-decl name='GetSize' mangled-name='_ZN22vtkPainterCommunicator7GetSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320' is-artificial='yes'/>
+ <parameter type-id='type-id-321' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -7216,7 +7228,7 @@
<!-- bool vtkPainterCommunicator::GetIsNull() -->
<function-decl name='GetIsNull' mangled-name='_ZN22vtkPainterCommunicator9GetIsNullEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320' is-artificial='yes'/>
+ <parameter type-id='type-id-321' is-artificial='yes'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -7225,7 +7237,7 @@
<!-- int vtkPainterCommunicator::GetWorldRank() -->
<function-decl name='GetWorldRank' mangled-name='_ZN22vtkPainterCommunicator12GetWorldRankEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320' is-artificial='yes'/>
+ <parameter type-id='type-id-321' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -7234,7 +7246,7 @@
<!-- int vtkPainterCommunicator::GetWorldSize() -->
<function-decl name='GetWorldSize' mangled-name='_ZN22vtkPainterCommunicator12GetWorldSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320' is-artificial='yes'/>
+ <parameter type-id='type-id-321' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -7243,7 +7255,7 @@
<!-- bool vtkPainterCommunicator::GetMPIInitialized() -->
<function-decl name='GetMPIInitialized' mangled-name='_ZN22vtkPainterCommunicator17GetMPIInitializedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320' is-artificial='yes'/>
+ <parameter type-id='type-id-321' is-artificial='yes'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -7252,187 +7264,187 @@
<!-- bool vtkPainterCommunicator::GetMPIFinalized() -->
<function-decl name='GetMPIFinalized' mangled-name='_ZN22vtkPainterCommunicator15GetMPIFinalizedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPainterCommunicator.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320' is-artificial='yes'/>
+ <parameter type-id='type-id-321' is-artificial='yes'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
</member-function>
</class-decl>
<!-- __gnu_cxx::new_allocator<char>* -->
- <pointer-type-def type-id='type-id-323' size-in-bits='64' id='type-id-324'/>
+ <pointer-type-def type-id='type-id-324' size-in-bits='64' id='type-id-325'/>
<!-- __gnu_cxx::new_allocator<float>* -->
- <pointer-type-def type-id='type-id-325' size-in-bits='64' id='type-id-326'/>
+ <pointer-type-def type-id='type-id-326' size-in-bits='64' id='type-id-327'/>
<!-- __gnu_cxx::new_allocator<vtkPixelBufferObject*>* -->
- <pointer-type-def type-id='type-id-327' size-in-bits='64' id='type-id-328'/>
+ <pointer-type-def type-id='type-id-328' size-in-bits='64' id='type-id-329'/>
<!-- char& -->
- <reference-type-def kind='lvalue' type-id='type-id-2' size-in-bits='64' id='type-id-329'/>
+ <reference-type-def kind='lvalue' type-id='type-id-2' size-in-bits='64' id='type-id-330'/>
<!-- char* const -->
- <qualified-type-def type-id='type-id-86' const='yes' id='type-id-330'/>
+ <qualified-type-def type-id='type-id-86' const='yes' id='type-id-331'/>
<!-- char* const& -->
- <reference-type-def kind='lvalue' type-id='type-id-330' size-in-bits='64' id='type-id-331'/>
+ <reference-type-def kind='lvalue' type-id='type-id-331' size-in-bits='64' id='type-id-332'/>
<!-- const __gnu_cxx::new_allocator<char> -->
- <qualified-type-def type-id='type-id-323' const='yes' id='type-id-332'/>
+ <qualified-type-def type-id='type-id-324' const='yes' id='type-id-333'/>
<!-- const __gnu_cxx::new_allocator<char>& -->
- <reference-type-def kind='lvalue' type-id='type-id-332' size-in-bits='64' id='type-id-333'/>
+ <reference-type-def kind='lvalue' type-id='type-id-333' size-in-bits='64' id='type-id-334'/>
<!-- const __gnu_cxx::new_allocator<char>* -->
- <pointer-type-def type-id='type-id-332' size-in-bits='64' id='type-id-334'/>
+ <pointer-type-def type-id='type-id-333' size-in-bits='64' id='type-id-335'/>
<!-- const __gnu_cxx::new_allocator<float> -->
- <qualified-type-def type-id='type-id-325' const='yes' id='type-id-335'/>
+ <qualified-type-def type-id='type-id-326' const='yes' id='type-id-336'/>
<!-- const __gnu_cxx::new_allocator<float>& -->
- <reference-type-def kind='lvalue' type-id='type-id-335' size-in-bits='64' id='type-id-336'/>
+ <reference-type-def kind='lvalue' type-id='type-id-336' size-in-bits='64' id='type-id-337'/>
<!-- const __gnu_cxx::new_allocator<float>* -->
- <pointer-type-def type-id='type-id-335' size-in-bits='64' id='type-id-337'/>
+ <pointer-type-def type-id='type-id-336' size-in-bits='64' id='type-id-338'/>
<!-- const __gnu_cxx::new_allocator<vtkPixelBufferObject*> -->
- <qualified-type-def type-id='type-id-327' const='yes' id='type-id-338'/>
+ <qualified-type-def type-id='type-id-328' const='yes' id='type-id-339'/>
<!-- const __gnu_cxx::new_allocator<vtkPixelBufferObject*>& -->
- <reference-type-def kind='lvalue' type-id='type-id-338' size-in-bits='64' id='type-id-339'/>
+ <reference-type-def kind='lvalue' type-id='type-id-339' size-in-bits='64' id='type-id-340'/>
<!-- const __gnu_cxx::new_allocator<vtkPixelBufferObject*>* -->
- <pointer-type-def type-id='type-id-338' size-in-bits='64' id='type-id-340'/>
+ <pointer-type-def type-id='type-id-339' size-in-bits='64' id='type-id-341'/>
<!-- const char& -->
- <reference-type-def kind='lvalue' type-id='type-id-121' size-in-bits='64' id='type-id-341'/>
+ <reference-type-def kind='lvalue' type-id='type-id-121' size-in-bits='64' id='type-id-342'/>
<!-- const float -->
- <qualified-type-def type-id='type-id-16' const='yes' id='type-id-342'/>
+ <qualified-type-def type-id='type-id-16' const='yes' id='type-id-343'/>
<!-- const float& -->
- <reference-type-def kind='lvalue' type-id='type-id-342' size-in-bits='64' id='type-id-343'/>
+ <reference-type-def kind='lvalue' type-id='type-id-343' size-in-bits='64' id='type-id-344'/>
<!-- const float* -->
- <pointer-type-def type-id='type-id-342' size-in-bits='64' id='type-id-344'/>
+ <pointer-type-def type-id='type-id-343' size-in-bits='64' id='type-id-345'/>
<!-- const std::_Vector_base<float, std::allocator<float> > -->
- <qualified-type-def type-id='type-id-345' const='yes' id='type-id-346'/>
+ <qualified-type-def type-id='type-id-346' const='yes' id='type-id-347'/>
<!-- const std::_Vector_base<float, std::allocator<float> >* -->
- <pointer-type-def type-id='type-id-346' size-in-bits='64' id='type-id-347'/>
+ <pointer-type-def type-id='type-id-347' size-in-bits='64' id='type-id-348'/>
<!-- const std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > -->
- <qualified-type-def type-id='type-id-348' const='yes' id='type-id-349'/>
+ <qualified-type-def type-id='type-id-349' const='yes' id='type-id-350'/>
<!-- const std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >* -->
- <pointer-type-def type-id='type-id-349' size-in-bits='64' id='type-id-350'/>
+ <pointer-type-def type-id='type-id-350' size-in-bits='64' id='type-id-351'/>
<!-- const std::allocator<char> -->
- <qualified-type-def type-id='type-id-351' const='yes' id='type-id-352'/>
+ <qualified-type-def type-id='type-id-352' const='yes' id='type-id-353'/>
<!-- const std::allocator<char>& -->
- <reference-type-def kind='lvalue' type-id='type-id-352' size-in-bits='64' id='type-id-353'/>
+ <reference-type-def kind='lvalue' type-id='type-id-353' size-in-bits='64' id='type-id-354'/>
<!-- const std::allocator<float> -->
- <qualified-type-def type-id='type-id-354' const='yes' id='type-id-355'/>
+ <qualified-type-def type-id='type-id-355' const='yes' id='type-id-356'/>
<!-- const std::allocator<float>& -->
- <reference-type-def kind='lvalue' type-id='type-id-355' size-in-bits='64' id='type-id-356'/>
+ <reference-type-def kind='lvalue' type-id='type-id-356' size-in-bits='64' id='type-id-357'/>
<!-- const std::allocator<vtkPixelBufferObject*> -->
- <qualified-type-def type-id='type-id-357' const='yes' id='type-id-358'/>
+ <qualified-type-def type-id='type-id-358' const='yes' id='type-id-359'/>
<!-- const std::allocator<vtkPixelBufferObject*>& -->
- <reference-type-def kind='lvalue' type-id='type-id-358' size-in-bits='64' id='type-id-359'/>
+ <reference-type-def kind='lvalue' type-id='type-id-359' size-in-bits='64' id='type-id-360'/>
<!-- const std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> > -->
- <qualified-type-def type-id='type-id-360' const='yes' id='type-id-361'/>
+ <qualified-type-def type-id='type-id-361' const='yes' id='type-id-362'/>
<!-- const std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >* -->
- <pointer-type-def type-id='type-id-361' size-in-bits='64' id='type-id-362'/>
+ <pointer-type-def type-id='type-id-362' size-in-bits='64' id='type-id-363'/>
<!-- const std::basic_streambuf<char, std::char_traits<char> > -->
- <qualified-type-def type-id='type-id-363' const='yes' id='type-id-364'/>
+ <qualified-type-def type-id='type-id-364' const='yes' id='type-id-365'/>
<!-- const std::basic_streambuf<char, std::char_traits<char> >* -->
- <pointer-type-def type-id='type-id-364' size-in-bits='64' id='type-id-365'/>
+ <pointer-type-def type-id='type-id-365' size-in-bits='64' id='type-id-366'/>
<!-- const std::basic_string<char, std::char_traits<char>, std::allocator<char> > -->
- <qualified-type-def type-id='type-id-366' const='yes' id='type-id-367'/>
+ <qualified-type-def type-id='type-id-367' const='yes' id='type-id-368'/>
<!-- const std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
- <reference-type-def kind='lvalue' type-id='type-id-367' size-in-bits='64' id='type-id-368'/>
+ <reference-type-def kind='lvalue' type-id='type-id-368' size-in-bits='64' id='type-id-369'/>
<!-- const std::basic_string<char, std::char_traits<char>, std::allocator<char> >* -->
- <pointer-type-def type-id='type-id-367' size-in-bits='64' id='type-id-369'/>
+ <pointer-type-def type-id='type-id-368' size-in-bits='64' id='type-id-370'/>
<!-- const std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep -->
- <qualified-type-def type-id='type-id-370' const='yes' id='type-id-371'/>
+ <qualified-type-def type-id='type-id-371' const='yes' id='type-id-372'/>
<!-- const std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep* -->
- <pointer-type-def type-id='type-id-371' size-in-bits='64' id='type-id-372'/>
+ <pointer-type-def type-id='type-id-372' size-in-bits='64' id='type-id-373'/>
<!-- const std::vector<float, std::allocator<float> > -->
- <qualified-type-def type-id='type-id-373' const='yes' id='type-id-374'/>
+ <qualified-type-def type-id='type-id-374' const='yes' id='type-id-375'/>
<!-- const std::vector<float, std::allocator<float> >& -->
- <reference-type-def kind='lvalue' type-id='type-id-374' size-in-bits='64' id='type-id-375'/>
+ <reference-type-def kind='lvalue' type-id='type-id-375' size-in-bits='64' id='type-id-376'/>
<!-- const std::vector<float, std::allocator<float> >* -->
- <pointer-type-def type-id='type-id-374' size-in-bits='64' id='type-id-376'/>
+ <pointer-type-def type-id='type-id-375' size-in-bits='64' id='type-id-377'/>
<!-- const std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > -->
- <qualified-type-def type-id='type-id-377' const='yes' id='type-id-378'/>
+ <qualified-type-def type-id='type-id-378' const='yes' id='type-id-379'/>
<!-- const std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >& -->
- <reference-type-def kind='lvalue' type-id='type-id-378' size-in-bits='64' id='type-id-379'/>
+ <reference-type-def kind='lvalue' type-id='type-id-379' size-in-bits='64' id='type-id-380'/>
<!-- const std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >* -->
- <pointer-type-def type-id='type-id-378' size-in-bits='64' id='type-id-380'/>
+ <pointer-type-def type-id='type-id-379' size-in-bits='64' id='type-id-381'/>
<!-- const vtkLineIntegralConvolution2D -->
- <qualified-type-def type-id='type-id-381' const='yes' id='type-id-382'/>
+ <qualified-type-def type-id='type-id-382' const='yes' id='type-id-383'/>
<!-- const vtkLineIntegralConvolution2D& -->
- <reference-type-def kind='lvalue' type-id='type-id-382' size-in-bits='64' id='type-id-383'/>
+ <reference-type-def kind='lvalue' type-id='type-id-383' size-in-bits='64' id='type-id-384'/>
<!-- const vtkLineIntegralConvolution2D* -->
- <pointer-type-def type-id='type-id-382' size-in-bits='64' id='type-id-384'/>
+ <pointer-type-def type-id='type-id-383' size-in-bits='64' id='type-id-385'/>
<!-- const vtkPainterCommunicator -->
- <qualified-type-def type-id='type-id-319' const='yes' id='type-id-385'/>
+ <qualified-type-def type-id='type-id-320' const='yes' id='type-id-386'/>
<!-- const vtkPainterCommunicator& -->
- <reference-type-def kind='lvalue' type-id='type-id-385' size-in-bits='64' id='type-id-321'/>
+ <reference-type-def kind='lvalue' type-id='type-id-386' size-in-bits='64' id='type-id-322'/>
<!-- const vtkPainterCommunicator* -->
- <pointer-type-def type-id='type-id-385' size-in-bits='64' id='type-id-322'/>
+ <pointer-type-def type-id='type-id-386' size-in-bits='64' id='type-id-323'/>
<!-- float& -->
- <reference-type-def kind='lvalue' type-id='type-id-16' size-in-bits='64' id='type-id-386'/>
+ <reference-type-def kind='lvalue' type-id='type-id-16' size-in-bits='64' id='type-id-387'/>
<!-- std::_Vector_base<float, std::allocator<float> >* -->
- <pointer-type-def type-id='type-id-345' size-in-bits='64' id='type-id-387'/>
+ <pointer-type-def type-id='type-id-346' size-in-bits='64' id='type-id-388'/>
<!-- std::_Vector_base<float, std::allocator<float> >::_Vector_impl* -->
- <pointer-type-def type-id='type-id-388' size-in-bits='64' id='type-id-389'/>
+ <pointer-type-def type-id='type-id-389' size-in-bits='64' id='type-id-390'/>
<!-- std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >* -->
- <pointer-type-def type-id='type-id-348' size-in-bits='64' id='type-id-390'/>
+ <pointer-type-def type-id='type-id-349' size-in-bits='64' id='type-id-391'/>
<!-- std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl* -->
- <pointer-type-def type-id='type-id-391' size-in-bits='64' id='type-id-392'/>
+ <pointer-type-def type-id='type-id-392' size-in-bits='64' id='type-id-393'/>
<!-- std::allocator<char>* -->
- <pointer-type-def type-id='type-id-351' size-in-bits='64' id='type-id-393'/>
+ <pointer-type-def type-id='type-id-352' size-in-bits='64' id='type-id-394'/>
<!-- std::allocator<float>& -->
- <reference-type-def kind='lvalue' type-id='type-id-354' size-in-bits='64' id='type-id-394'/>
+ <reference-type-def kind='lvalue' type-id='type-id-355' size-in-bits='64' id='type-id-395'/>
<!-- std::allocator<float>* -->
- <pointer-type-def type-id='type-id-354' size-in-bits='64' id='type-id-395'/>
+ <pointer-type-def type-id='type-id-355' size-in-bits='64' id='type-id-396'/>
<!-- std::allocator<vtkPixelBufferObject*>& -->
- <reference-type-def kind='lvalue' type-id='type-id-357' size-in-bits='64' id='type-id-396'/>
+ <reference-type-def kind='lvalue' type-id='type-id-358' size-in-bits='64' id='type-id-397'/>
<!-- std::allocator<vtkPixelBufferObject*>* -->
- <pointer-type-def type-id='type-id-357' size-in-bits='64' id='type-id-397'/>
+ <pointer-type-def type-id='type-id-358' size-in-bits='64' id='type-id-398'/>
<!-- std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >* -->
- <pointer-type-def type-id='type-id-360' size-in-bits='64' id='type-id-398'/>
+ <pointer-type-def type-id='type-id-361' size-in-bits='64' id='type-id-399'/>
<!-- std::basic_streambuf<char, std::char_traits<char> >* -->
- <pointer-type-def type-id='type-id-363' size-in-bits='64' id='type-id-399'/>
+ <pointer-type-def type-id='type-id-364' size-in-bits='64' id='type-id-400'/>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
- <reference-type-def kind='lvalue' type-id='type-id-366' size-in-bits='64' id='type-id-400'/>
+ <reference-type-def kind='lvalue' type-id='type-id-367' size-in-bits='64' id='type-id-401'/>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >* -->
- <pointer-type-def type-id='type-id-366' size-in-bits='64' id='type-id-401'/>
+ <pointer-type-def type-id='type-id-367' size-in-bits='64' id='type-id-402'/>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider* -->
- <pointer-type-def type-id='type-id-402' size-in-bits='64' id='type-id-403'/>
+ <pointer-type-def type-id='type-id-403' size-in-bits='64' id='type-id-404'/>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep& -->
- <reference-type-def kind='lvalue' type-id='type-id-370' size-in-bits='64' id='type-id-404'/>
+ <reference-type-def kind='lvalue' type-id='type-id-371' size-in-bits='64' id='type-id-405'/>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep* -->
- <pointer-type-def type-id='type-id-370' size-in-bits='64' id='type-id-405'/>
+ <pointer-type-def type-id='type-id-371' size-in-bits='64' id='type-id-406'/>
<!-- std::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >* -->
- <pointer-type-def type-id='type-id-406' size-in-bits='64' id='type-id-407'/>
+ <pointer-type-def type-id='type-id-407' size-in-bits='64' id='type-id-408'/>
<!-- std::vector<float, std::allocator<float> >& -->
- <reference-type-def kind='lvalue' type-id='type-id-373' size-in-bits='64' id='type-id-408'/>
+ <reference-type-def kind='lvalue' type-id='type-id-374' size-in-bits='64' id='type-id-409'/>
<!-- std::vector<float, std::allocator<float> >* -->
- <pointer-type-def type-id='type-id-373' size-in-bits='64' id='type-id-409'/>
+ <pointer-type-def type-id='type-id-374' size-in-bits='64' id='type-id-410'/>
<!-- std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >& -->
- <reference-type-def kind='lvalue' type-id='type-id-377' size-in-bits='64' id='type-id-410'/>
+ <reference-type-def kind='lvalue' type-id='type-id-378' size-in-bits='64' id='type-id-411'/>
<!-- std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >* -->
- <pointer-type-def type-id='type-id-377' size-in-bits='64' id='type-id-411'/>
+ <pointer-type-def type-id='type-id-378' size-in-bits='64' id='type-id-412'/>
<!-- void** -->
- <pointer-type-def type-id='type-id-14' size-in-bits='64' id='type-id-294'/>
+ <pointer-type-def type-id='type-id-14' size-in-bits='64' id='type-id-295'/>
<!-- vtkFrameBufferObject2* -->
- <pointer-type-def type-id='type-id-412' size-in-bits='64' id='type-id-318'/>
+ <pointer-type-def type-id='type-id-413' size-in-bits='64' id='type-id-319'/>
<!-- vtkLICPingPongBufferManager* -->
- <pointer-type-def type-id='type-id-315' size-in-bits='64' id='type-id-317'/>
+ <pointer-type-def type-id='type-id-316' size-in-bits='64' id='type-id-318'/>
<!-- vtkLineIntegralConvolution2D* -->
- <pointer-type-def type-id='type-id-381' size-in-bits='64' id='type-id-413'/>
+ <pointer-type-def type-id='type-id-382' size-in-bits='64' id='type-id-414'/>
<!-- vtkPainterCommunicator& -->
- <reference-type-def kind='lvalue' type-id='type-id-319' size-in-bits='64' id='type-id-414'/>
+ <reference-type-def kind='lvalue' type-id='type-id-320' size-in-bits='64' id='type-id-415'/>
<!-- vtkPainterCommunicator* -->
- <pointer-type-def type-id='type-id-319' size-in-bits='64' id='type-id-320'/>
+ <pointer-type-def type-id='type-id-320' size-in-bits='64' id='type-id-321'/>
<!-- vtkPixelBufferObject* const -->
- <qualified-type-def type-id='type-id-245' const='yes' id='type-id-415'/>
+ <qualified-type-def type-id='type-id-245' const='yes' id='type-id-416'/>
<!-- vtkPixelBufferObject* const& -->
- <reference-type-def kind='lvalue' type-id='type-id-415' size-in-bits='64' id='type-id-416'/>
+ <reference-type-def kind='lvalue' type-id='type-id-416' size-in-bits='64' id='type-id-417'/>
<!-- vtkPixelBufferObject* const* -->
- <pointer-type-def type-id='type-id-415' size-in-bits='64' id='type-id-417'/>
+ <pointer-type-def type-id='type-id-416' size-in-bits='64' id='type-id-418'/>
<!-- vtkPixelBufferObject*& -->
- <reference-type-def kind='lvalue' type-id='type-id-245' size-in-bits='64' id='type-id-418'/>
+ <reference-type-def kind='lvalue' type-id='type-id-245' size-in-bits='64' id='type-id-419'/>
<!-- vtkPixelBufferObject** -->
- <pointer-type-def type-id='type-id-245' size-in-bits='64' id='type-id-281'/>
+ <pointer-type-def type-id='type-id-245' size-in-bits='64' id='type-id-282'/>
<!-- vtkTextureObject* -->
- <pointer-type-def type-id='type-id-270' size-in-bits='64' id='type-id-316'/>
+ <pointer-type-def type-id='type-id-270' size-in-bits='64' id='type-id-317'/>
<!-- class vtkFrameBufferObject2 -->
- <class-decl name='vtkFrameBufferObject2' visibility='default' is-declaration-only='yes' id='type-id-412'>
+ <class-decl name='vtkFrameBufferObject2' visibility='default' is-declaration-only='yes' id='type-id-413'>
<member-function access='private'>
<!-- void vtkFrameBufferObject2::RemoveTexColorAttachment(unsigned int, unsigned int) -->
<function-decl name='RemoveTexColorAttachment' mangled-name='_ZN21vtkFrameBufferObject224RemoveTexColorAttachmentEjj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkFrameBufferObject2.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkFrameBufferObject2*' -->
- <parameter type-id='type-id-318' is-artificial='yes'/>
+ <parameter type-id='type-id-319' is-artificial='yes'/>
<!-- parameter of type 'unsigned int' -->
<parameter type-id='type-id-13'/>
<!-- parameter of type 'unsigned int' -->
@@ -7445,7 +7457,7 @@
<!-- void vtkFrameBufferObject2::RemoveRenDepthAttachment(unsigned int) -->
<function-decl name='RemoveRenDepthAttachment' mangled-name='_ZN21vtkFrameBufferObject224RemoveRenDepthAttachmentEj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkFrameBufferObject2.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkFrameBufferObject2*' -->
- <parameter type-id='type-id-318' is-artificial='yes'/>
+ <parameter type-id='type-id-319' is-artificial='yes'/>
<!-- parameter of type 'unsigned int' -->
<parameter type-id='type-id-13'/>
<!-- void -->
@@ -7456,14 +7468,14 @@
<!-- namespace std -->
<namespace-decl name='std'>
<!-- class std::allocator<float> -->
- <class-decl name='allocator<float>' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='87' column='1' id='type-id-354'>
+ <class-decl name='allocator<float>' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='87' column='1' id='type-id-355'>
<!-- class __gnu_cxx::new_allocator<float> -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-325'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-326'/>
<member-function access='private'>
<!-- void std::allocator<float>::allocator() -->
<function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::allocator<float>*' -->
- <parameter type-id='type-id-395' is-artificial='yes'/>
+ <parameter type-id='type-id-396' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7472,9 +7484,9 @@
<!-- void std::allocator<float>::allocator(const std::allocator<float>&) -->
<function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::allocator<float>*' -->
- <parameter type-id='type-id-395' is-artificial='yes'/>
+ <parameter type-id='type-id-396' is-artificial='yes'/>
<!-- parameter of type 'const std::allocator<float>&' -->
- <parameter type-id='type-id-356'/>
+ <parameter type-id='type-id-357'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7483,7 +7495,7 @@
<!-- std::allocator<float>::~allocator(int) -->
<function-decl name='~allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::allocator<float>*' -->
- <parameter type-id='type-id-395' is-artificial='yes'/>
+ <parameter type-id='type-id-396' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -7492,14 +7504,14 @@
</member-function>
</class-decl>
<!-- class std::allocator<vtkPixelBufferObject*> -->
- <class-decl name='allocator<vtkPixelBufferObject*>' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='87' column='1' id='type-id-357'>
+ <class-decl name='allocator<vtkPixelBufferObject*>' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='87' column='1' id='type-id-358'>
<!-- class __gnu_cxx::new_allocator<vtkPixelBufferObject*> -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-327'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-328'/>
<member-function access='private'>
<!-- void std::allocator<vtkPixelBufferObject*>::allocator() -->
<function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::allocator<vtkPixelBufferObject*>*' -->
- <parameter type-id='type-id-397' is-artificial='yes'/>
+ <parameter type-id='type-id-398' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7508,9 +7520,9 @@
<!-- void std::allocator<vtkPixelBufferObject*>::allocator(const std::allocator<vtkPixelBufferObject*>&) -->
<function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::allocator<vtkPixelBufferObject*>*' -->
- <parameter type-id='type-id-397' is-artificial='yes'/>
+ <parameter type-id='type-id-398' is-artificial='yes'/>
<!-- parameter of type 'const std::allocator<vtkPixelBufferObject*>&' -->
- <parameter type-id='type-id-359'/>
+ <parameter type-id='type-id-360'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7519,7 +7531,7 @@
<!-- std::allocator<vtkPixelBufferObject*>::~allocator(int) -->
<function-decl name='~allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::allocator<vtkPixelBufferObject*>*' -->
- <parameter type-id='type-id-397' is-artificial='yes'/>
+ <parameter type-id='type-id-398' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -7528,9 +7540,9 @@
</member-function>
</class-decl>
<!-- struct std::__false_type -->
- <class-decl name='__false_type' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/cpp_type_traits.h' line='79' column='1' id='type-id-287'/>
+ <class-decl name='__false_type' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/cpp_type_traits.h' line='79' column='1' id='type-id-288'/>
<!-- struct std::__niter_base<float*, false> -->
- <class-decl name='__niter_base<float*, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-419'>
+ <class-decl name='__niter_base<float*, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-420'>
<member-function access='public' static='yes'>
<!-- float* std::__niter_base<float*, false>::__b() -->
<function-decl name='__b' mangled-name='_ZNSt12__niter_baseIPfLb0EE3__bES0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7542,19 +7554,19 @@
</member-function>
</class-decl>
<!-- struct std::__niter_base<vtkPixelBufferObject**, false> -->
- <class-decl name='__niter_base<vtkPixelBufferObject**, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-420'>
+ <class-decl name='__niter_base<vtkPixelBufferObject**, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-421'>
<member-function access='public' static='yes'>
<!-- vtkPixelBufferObject** std::__niter_base<vtkPixelBufferObject**, false>::__b() -->
<function-decl name='__b' mangled-name='_ZNSt12__niter_baseIPP20vtkPixelBufferObjectLb0EE3__bES2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- vtkPixelBufferObject** -->
- <return type-id='type-id-281'/>
+ <return type-id='type-id-282'/>
</function-decl>
</member-function>
</class-decl>
<!-- struct std::__niter_base<vtkPixelExtent**, false> -->
- <class-decl name='__niter_base<vtkPixelExtent**, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-421'>
+ <class-decl name='__niter_base<vtkPixelExtent**, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-422'>
<member-function access='public' static='yes'>
<!-- vtkPixelExtent** std::__niter_base<vtkPixelExtent**, false>::__b() -->
<function-decl name='__b' mangled-name='_ZNSt12__niter_baseIPP14vtkPixelExtentLb0EE3__bES2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7566,7 +7578,7 @@
</member-function>
</class-decl>
<!-- struct std::__miter_base<vtkPixelExtent**, false> -->
- <class-decl name='__miter_base<vtkPixelExtent**, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-422'>
+ <class-decl name='__miter_base<vtkPixelExtent**, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-423'>
<member-function access='public' static='yes'>
<!-- vtkPixelExtent** std::__miter_base<vtkPixelExtent**, false>::__b() -->
<function-decl name='__b' mangled-name='_ZNSt12__miter_baseIPP14vtkPixelExtentLb0EE3__bES2_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7578,7 +7590,7 @@
</member-function>
</class-decl>
<!-- struct std::__copy_move<false, true, std::random_access_iterator_tag> -->
- <class-decl name='__copy_move<false, true, std::random_access_iterator_tag>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='307' column='1' id='type-id-423'>
+ <class-decl name='__copy_move<false, true, std::random_access_iterator_tag>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='307' column='1' id='type-id-424'>
<member-function access='public' static='yes'>
<!-- vtkPixelExtent** std::__copy_move<false, true, std::random_access_iterator_tag>::__copy_m<vtkPixelExtent*>(vtkPixelExtent* const*, vtkPixelExtent**) -->
<function-decl name='__copy_m<vtkPixelExtent*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='376' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7596,9 +7608,9 @@
<!-- float* std::__copy_move<false, true, std::random_access_iterator_tag>::__copy_m<float>(const float*, float*) -->
<function-decl name='__copy_m<float>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='376' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'const float*' -->
- <parameter type-id='type-id-344'/>
+ <parameter type-id='type-id-345'/>
<!-- parameter of type 'const float*' -->
- <parameter type-id='type-id-344'/>
+ <parameter type-id='type-id-345'/>
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- float* -->
@@ -7607,7 +7619,7 @@
</member-function>
</class-decl>
<!-- struct std::__copy_move_backward<false, true, std::random_access_iterator_tag> -->
- <class-decl name='__copy_move_backward<false, true, std::random_access_iterator_tag>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='511' column='1' id='type-id-424'>
+ <class-decl name='__copy_move_backward<false, true, std::random_access_iterator_tag>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='511' column='1' id='type-id-425'>
<member-function access='public' static='yes'>
<!-- vtkPixelExtent** std::__copy_move_backward<false, true, std::random_access_iterator_tag>::__copy_move_b<vtkPixelExtent*>(vtkPixelExtent* const*, vtkPixelExtent**) -->
<function-decl name='__copy_move_b<vtkPixelExtent*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='572' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -7625,9 +7637,9 @@
<!-- float* std::__copy_move_backward<false, true, std::random_access_iterator_tag>::__copy_move_b<float>(const float*, float*) -->
<function-decl name='__copy_move_b<float>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='572' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'const float*' -->
- <parameter type-id='type-id-344'/>
+ <parameter type-id='type-id-345'/>
<!-- parameter of type 'const float*' -->
- <parameter type-id='type-id-344'/>
+ <parameter type-id='type-id-345'/>
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- float* -->
@@ -7636,33 +7648,33 @@
</member-function>
</class-decl>
<!-- struct std::input_iterator_tag -->
- <class-decl name='input_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='79' column='1' id='type-id-425'/>
+ <class-decl name='input_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='79' column='1' id='type-id-426'/>
<!-- struct std::forward_iterator_tag -->
- <class-decl name='forward_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='83' column='1' id='type-id-288'>
+ <class-decl name='forward_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='83' column='1' id='type-id-289'>
<!-- struct std::input_iterator_tag -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-425'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-426'/>
</class-decl>
<!-- struct std::bidirectional_iterator_tag -->
- <class-decl name='bidirectional_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='86' column='1' id='type-id-426'>
+ <class-decl name='bidirectional_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='86' column='1' id='type-id-427'>
<!-- struct std::forward_iterator_tag -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-288'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-289'/>
</class-decl>
<!-- struct std::random_access_iterator_tag -->
- <class-decl name='random_access_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='89' column='1' id='type-id-427'>
+ <class-decl name='random_access_iterator_tag' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='89' column='1' id='type-id-428'>
<!-- struct std::bidirectional_iterator_tag -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-426'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-427'/>
</class-decl>
<!-- struct std::__uninitialized_fill_n<true> -->
- <class-decl name='__uninitialized_fill_n<true>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='198' column='1' id='type-id-428'>
+ <class-decl name='__uninitialized_fill_n<true>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='198' column='1' id='type-id-429'>
<member-function access='public' static='yes'>
<!-- void std::__uninitialized_fill_n<true>::uninitialized_fill_n<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*>(unsigned long int, vtkPixelBufferObject* const&) -->
<function-decl name='uninitialized_fill_n<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='201' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'vtkPixelBufferObject* const&' -->
- <parameter type-id='type-id-416'/>
+ <parameter type-id='type-id-417'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7675,19 +7687,19 @@
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const float&' -->
- <parameter type-id='type-id-343'/>
+ <parameter type-id='type-id-344'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
</member-function>
</class-decl>
<!-- struct std::_Vector_base<float, std::allocator<float> > -->
- <class-decl name='_Vector_base<float, std::allocator<float> >' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-345'>
+ <class-decl name='_Vector_base<float, std::allocator<float> >' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-346'>
<member-type access='public'>
<!-- struct std::_Vector_base<float, std::allocator<float> >::_Vector_impl -->
- <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-388'>
+ <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-389'>
<!-- class std::allocator<float> -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-354'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-355'/>
<data-member access='public' layout-offset-in-bits='0'>
<!-- float* std::_Vector_base<float, std::allocator<float> >::_Vector_impl::_M_start -->
<var-decl name='_M_start' type-id='type-id-55' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='76' column='1'/>
@@ -7704,7 +7716,7 @@
<!-- std::_Vector_base<float, std::allocator<float> >::_Vector_impl::_Vector_impl() -->
<function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >::_Vector_impl*' -->
- <parameter type-id='type-id-389' is-artificial='yes'/>
+ <parameter type-id='type-id-390' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7713,9 +7725,9 @@
<!-- std::_Vector_base<float, std::allocator<float> >::_Vector_impl::_Vector_impl(const std::allocator<float>&) -->
<function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >::_Vector_impl*' -->
- <parameter type-id='type-id-389' is-artificial='yes'/>
+ <parameter type-id='type-id-390' is-artificial='yes'/>
<!-- parameter of type 'const std::allocator<float>&' -->
- <parameter type-id='type-id-356'/>
+ <parameter type-id='type-id-357'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7724,13 +7736,13 @@
</member-type>
<data-member access='public' layout-offset-in-bits='0'>
<!-- std::_Vector_base<float, std::allocator<float> >::_Vector_impl std::_Vector_base<float, std::allocator<float> >::_M_impl -->
- <var-decl name='_M_impl' type-id='type-id-388' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
+ <var-decl name='_M_impl' type-id='type-id-389' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
</data-member>
<member-function access='public'>
<!-- void std::_Vector_base<float, std::allocator<float> >::_Vector_base() -->
<function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-387' is-artificial='yes'/>
+ <parameter type-id='type-id-388' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7739,9 +7751,9 @@
<!-- void std::_Vector_base<float, std::allocator<float> >::_Vector_base(const std::allocator<float>&) -->
<function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-387' is-artificial='yes'/>
+ <parameter type-id='type-id-388' is-artificial='yes'/>
<!-- parameter of type 'const std::allocator<float>&' -->
- <parameter type-id='type-id-356'/>
+ <parameter type-id='type-id-357'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7750,11 +7762,11 @@
<!-- void std::_Vector_base<float, std::allocator<float> >::_Vector_base(unsigned long int, const std::allocator<float>&) -->
<function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-387' is-artificial='yes'/>
+ <parameter type-id='type-id-388' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const std::allocator<float>&' -->
- <parameter type-id='type-id-356'/>
+ <parameter type-id='type-id-357'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7763,7 +7775,7 @@
<!-- std::_Vector_base<float, std::allocator<float> >::~_Vector_base(int) -->
<function-decl name='~_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-387' is-artificial='yes'/>
+ <parameter type-id='type-id-388' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -7774,16 +7786,16 @@
<!-- std::allocator<float>& std::_Vector_base<float, std::allocator<float> >::_M_get_Tp_allocator() -->
<function-decl name='_M_get_Tp_allocator' mangled-name='_ZNSt12_Vector_baseIfSaIfEE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-387' is-artificial='yes'/>
+ <parameter type-id='type-id-388' is-artificial='yes'/>
<!-- std::allocator<float>& -->
- <return type-id='type-id-394'/>
+ <return type-id='type-id-395'/>
</function-decl>
</member-function>
<member-function access='public'>
<!-- float* std::_Vector_base<float, std::allocator<float> >::_M_allocate(unsigned long int) -->
<function-decl name='_M_allocate' mangled-name='_ZNSt12_Vector_baseIfSaIfEE11_M_allocateEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-387' is-artificial='yes'/>
+ <parameter type-id='type-id-388' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- float* -->
@@ -7794,7 +7806,7 @@
<!-- void std::_Vector_base<float, std::allocator<float> >::_M_deallocate(float*, unsigned long int) -->
<function-decl name='_M_deallocate' mangled-name='_ZNSt12_Vector_baseIfSaIfEE13_M_deallocateEPfm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-387' is-artificial='yes'/>
+ <parameter type-id='type-id-388' is-artificial='yes'/>
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- parameter of type 'unsigned long int' -->
@@ -7807,36 +7819,36 @@
<!-- const std::allocator<float>& std::_Vector_base<float, std::allocator<float> >::_M_get_Tp_allocator() -->
<function-decl name='_M_get_Tp_allocator' mangled-name='_ZNKSt12_Vector_baseIfSaIfEE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::_Vector_base<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-347' is-artificial='yes'/>
+ <parameter type-id='type-id-348' is-artificial='yes'/>
<!-- const std::allocator<float>& -->
- <return type-id='type-id-356'/>
+ <return type-id='type-id-357'/>
</function-decl>
</member-function>
</class-decl>
<!-- struct std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > -->
- <class-decl name='_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-348'>
+ <class-decl name='_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='70' column='1' id='type-id-349'>
<member-type access='public'>
<!-- struct std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl -->
- <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-391'>
+ <class-decl name='_Vector_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='75' column='1' id='type-id-392'>
<!-- class std::allocator<vtkPixelBufferObject*> -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-357'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-358'/>
<data-member access='public' layout-offset-in-bits='0'>
<!-- vtkPixelBufferObject** std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl::_M_start -->
- <var-decl name='_M_start' type-id='type-id-281' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='76' column='1'/>
+ <var-decl name='_M_start' type-id='type-id-282' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='76' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
<!-- vtkPixelBufferObject** std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl::_M_finish -->
- <var-decl name='_M_finish' type-id='type-id-281' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='77' column='1'/>
+ <var-decl name='_M_finish' type-id='type-id-282' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='77' column='1'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
<!-- vtkPixelBufferObject** std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl::_M_end_of_storage -->
- <var-decl name='_M_end_of_storage' type-id='type-id-281' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='78' column='1'/>
+ <var-decl name='_M_end_of_storage' type-id='type-id-282' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='78' column='1'/>
</data-member>
<member-function access='public' constructor='yes'>
<!-- std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl::_Vector_impl() -->
<function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl*' -->
- <parameter type-id='type-id-392' is-artificial='yes'/>
+ <parameter type-id='type-id-393' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7845,9 +7857,9 @@
<!-- std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl::_Vector_impl(const std::allocator<vtkPixelBufferObject*>&) -->
<function-decl name='_Vector_impl' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl*' -->
- <parameter type-id='type-id-392' is-artificial='yes'/>
+ <parameter type-id='type-id-393' is-artificial='yes'/>
<!-- parameter of type 'const std::allocator<vtkPixelBufferObject*>&' -->
- <parameter type-id='type-id-359'/>
+ <parameter type-id='type-id-360'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7856,13 +7868,13 @@
</member-type>
<data-member access='public' layout-offset-in-bits='0'>
<!-- std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_impl std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_M_impl -->
- <var-decl name='_M_impl' type-id='type-id-391' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
+ <var-decl name='_M_impl' type-id='type-id-392' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='136' column='1'/>
</data-member>
<member-function access='public'>
<!-- void std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_base() -->
<function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-390' is-artificial='yes'/>
+ <parameter type-id='type-id-391' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7871,9 +7883,9 @@
<!-- void std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_base(const std::allocator<vtkPixelBufferObject*>&) -->
<function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-390' is-artificial='yes'/>
+ <parameter type-id='type-id-391' is-artificial='yes'/>
<!-- parameter of type 'const std::allocator<vtkPixelBufferObject*>&' -->
- <parameter type-id='type-id-359'/>
+ <parameter type-id='type-id-360'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7882,11 +7894,11 @@
<!-- void std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_Vector_base(unsigned long int, const std::allocator<vtkPixelBufferObject*>&) -->
<function-decl name='_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-390' is-artificial='yes'/>
+ <parameter type-id='type-id-391' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const std::allocator<vtkPixelBufferObject*>&' -->
- <parameter type-id='type-id-359'/>
+ <parameter type-id='type-id-360'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7895,7 +7907,7 @@
<!-- std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::~_Vector_base(int) -->
<function-decl name='~_Vector_base' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-390' is-artificial='yes'/>
+ <parameter type-id='type-id-391' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -7906,29 +7918,29 @@
<!-- std::allocator<vtkPixelBufferObject*>& std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_M_get_Tp_allocator() -->
<function-decl name='_M_get_Tp_allocator' mangled-name='_ZNSt12_Vector_baseIP20vtkPixelBufferObjectSaIS1_EE19_M_get_Tp_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-390' is-artificial='yes'/>
+ <parameter type-id='type-id-391' is-artificial='yes'/>
<!-- std::allocator<vtkPixelBufferObject*>& -->
- <return type-id='type-id-396'/>
+ <return type-id='type-id-397'/>
</function-decl>
</member-function>
<member-function access='public'>
<!-- vtkPixelBufferObject** std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_M_allocate(unsigned long int) -->
<function-decl name='_M_allocate' mangled-name='_ZNSt12_Vector_baseIP20vtkPixelBufferObjectSaIS1_EE11_M_allocateEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-390' is-artificial='yes'/>
+ <parameter type-id='type-id-391' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- vtkPixelBufferObject** -->
- <return type-id='type-id-281'/>
+ <return type-id='type-id-282'/>
</function-decl>
</member-function>
<member-function access='public'>
<!-- void std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_M_deallocate(vtkPixelBufferObject**, unsigned long int) -->
<function-decl name='_M_deallocate' mangled-name='_ZNSt12_Vector_baseIP20vtkPixelBufferObjectSaIS1_EE13_M_deallocateEPS1_m' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-390' is-artificial='yes'/>
+ <parameter type-id='type-id-391' is-artificial='yes'/>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- void -->
@@ -7937,14 +7949,14 @@
</member-function>
</class-decl>
<!-- class std::vector<float, std::allocator<float> > -->
- <class-decl name='vector<float, std::allocator<float> >' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-373'>
+ <class-decl name='vector<float, std::allocator<float> >' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-374'>
<!-- struct std::_Vector_base<float, std::allocator<float> > -->
- <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-345'/>
+ <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-346'/>
<member-function access='private'>
<!-- void std::vector<float, std::allocator<float> >::vector() -->
<function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7953,9 +7965,9 @@
<!-- void std::vector<float, std::allocator<float> >::vector(const std::allocator<float>&) -->
<function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- parameter of type 'const std::allocator<float>&' -->
- <parameter type-id='type-id-356'/>
+ <parameter type-id='type-id-357'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7964,13 +7976,13 @@
<!-- void std::vector<float, std::allocator<float> >::vector(unsigned long int, const float&, const std::allocator<float>&) -->
<function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const float&' -->
- <parameter type-id='type-id-343'/>
+ <parameter type-id='type-id-344'/>
<!-- parameter of type 'const std::allocator<float>&' -->
- <parameter type-id='type-id-356'/>
+ <parameter type-id='type-id-357'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7979,9 +7991,9 @@
<!-- void std::vector<float, std::allocator<float> >::vector(const std::vector<float, std::allocator<float> >&) -->
<function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- parameter of type 'const std::vector<float, std::allocator<float> >&' -->
- <parameter type-id='type-id-375'/>
+ <parameter type-id='type-id-376'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -7990,7 +8002,7 @@
<!-- std::vector<float, std::allocator<float> >::~vector(int) -->
<function-decl name='~vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -8001,11 +8013,11 @@
<!-- void std::vector<float, std::allocator<float> >::_M_fill_initialize(unsigned long int, const float&) -->
<function-decl name='_M_fill_initialize' mangled-name='_ZNSt6vectorIfSaIfEE18_M_fill_initializeEmRKf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1033' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const float&' -->
- <parameter type-id='type-id-343'/>
+ <parameter type-id='type-id-344'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8014,18 +8026,18 @@
<!-- float& std::vector<float, std::allocator<float> >::operator[](unsigned long int) -->
<function-decl name='operator[]' mangled-name='_ZNSt6vectorIfSaIfEEixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='610' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- float& -->
- <return type-id='type-id-386'/>
+ <return type-id='type-id-387'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- size_t std::vector<float, std::allocator<float> >::max_size() -->
<function-decl name='max_size' mangled-name='_ZNKSt6vectorIfSaIfEE8max_sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='537' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-376' is-artificial='yes'/>
+ <parameter type-id='type-id-377' is-artificial='yes'/>
<!-- typedef size_t -->
<return type-id='type-id-50'/>
</function-decl>
@@ -8034,7 +8046,7 @@
<!-- size_t std::vector<float, std::allocator<float> >::size() -->
<function-decl name='size' mangled-name='_ZNKSt6vectorIfSaIfEE4sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='532' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-376' is-artificial='yes'/>
+ <parameter type-id='type-id-377' is-artificial='yes'/>
<!-- typedef size_t -->
<return type-id='type-id-50'/>
</function-decl>
@@ -8043,16 +8055,16 @@
<!-- __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > std::vector<float, std::allocator<float> >::end() -->
<function-decl name='end' mangled-name='_ZNSt6vectorIfSaIfEE3endEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='443' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- class __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > -->
- <return type-id='type-id-429'/>
+ <return type-id='type-id-430'/>
</function-decl>
</member-function>
<member-function access='protected'>
<!-- size_t std::vector<float, std::allocator<float> >::_M_check_len(unsigned long int, const char*) -->
<function-decl name='_M_check_len' mangled-name='_ZNKSt6vectorIfSaIfEE12_M_check_lenEmPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1134' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-376' is-artificial='yes'/>
+ <parameter type-id='type-id-377' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const char*' -->
@@ -8065,16 +8077,16 @@
<!-- __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > std::vector<float, std::allocator<float> >::begin() -->
<function-decl name='begin' mangled-name='_ZNSt6vectorIfSaIfEE5beginEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='425' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- class __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > -->
- <return type-id='type-id-429'/>
+ <return type-id='type-id-430'/>
</function-decl>
</member-function>
<member-function access='protected'>
<!-- void std::vector<float, std::allocator<float> >::_M_erase_at_end(float*) -->
<function-decl name='_M_erase_at_end' mangled-name='_ZNSt6vectorIfSaIfEE15_M_erase_at_endEPf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1148' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- void -->
@@ -8085,13 +8097,13 @@
<!-- void std::vector<float, std::allocator<float> >::insert(__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >, unsigned long int, const float&) -->
<function-decl name='insert' mangled-name='_ZNSt6vectorIfSaIfEE6insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='850' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- parameter of type 'class __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >' -->
- <parameter type-id='type-id-429'/>
+ <parameter type-id='type-id-430'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const float&' -->
- <parameter type-id='type-id-343'/>
+ <parameter type-id='type-id-344'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8100,7 +8112,7 @@
<!-- void std::vector<float, std::allocator<float> >::resize(unsigned long int, float) -->
<function-decl name='resize' mangled-name='_ZNSt6vectorIfSaIfEE6resizeEmf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='552' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'float' -->
@@ -8113,27 +8125,27 @@
<!-- void std::vector<float, std::allocator<float> >::_M_fill_insert(__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >, unsigned long int, const float&) -->
<function-decl name='_M_fill_insert' mangled-name='_ZNSt6vectorIfSaIfEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/vector.tcc' line='372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorIfSaIfEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf'>
<!-- implicit parameter of type 'std::vector<float, std::allocator<float> >*' -->
- <parameter type-id='type-id-409' is-artificial='yes'/>
+ <parameter type-id='type-id-410' is-artificial='yes'/>
<!-- parameter of type 'class __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >' -->
- <parameter type-id='type-id-429'/>
+ <parameter type-id='type-id-430'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const float&' -->
- <parameter type-id='type-id-343'/>
+ <parameter type-id='type-id-344'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
</member-function>
</class-decl>
<!-- class std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > -->
- <class-decl name='vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-377'>
+ <class-decl name='vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >' size-in-bits='192' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='171' column='1' id='type-id-378'>
<!-- struct std::_Vector_base<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > -->
- <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-348'/>
+ <base-class access='protected' layout-offset-in-bits='0' type-id='type-id-349'/>
<member-function access='private'>
<!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::vector() -->
<function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-411' is-artificial='yes'/>
+ <parameter type-id='type-id-412' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8142,9 +8154,9 @@
<!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::vector(const std::allocator<vtkPixelBufferObject*>&) -->
<function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-411' is-artificial='yes'/>
+ <parameter type-id='type-id-412' is-artificial='yes'/>
<!-- parameter of type 'const std::allocator<vtkPixelBufferObject*>&' -->
- <parameter type-id='type-id-359'/>
+ <parameter type-id='type-id-360'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8153,13 +8165,13 @@
<!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::vector(unsigned long int, vtkPixelBufferObject* const&, const std::allocator<vtkPixelBufferObject*>&) -->
<function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-411' is-artificial='yes'/>
+ <parameter type-id='type-id-412' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'vtkPixelBufferObject* const&' -->
- <parameter type-id='type-id-416'/>
+ <parameter type-id='type-id-417'/>
<!-- parameter of type 'const std::allocator<vtkPixelBufferObject*>&' -->
- <parameter type-id='type-id-359'/>
+ <parameter type-id='type-id-360'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8168,9 +8180,9 @@
<!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::vector(const std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >&) -->
<function-decl name='vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-411' is-artificial='yes'/>
+ <parameter type-id='type-id-412' is-artificial='yes'/>
<!-- parameter of type 'const std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >&' -->
- <parameter type-id='type-id-379'/>
+ <parameter type-id='type-id-380'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8179,7 +8191,7 @@
<!-- std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::~vector(int) -->
<function-decl name='~vector' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-411' is-artificial='yes'/>
+ <parameter type-id='type-id-412' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -8190,9 +8202,9 @@
<!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_M_erase_at_end(vtkPixelBufferObject**) -->
<function-decl name='_M_erase_at_end' mangled-name='_ZNSt6vectorIP20vtkPixelBufferObjectSaIS1_EE15_M_erase_at_endEPS1_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1148' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-411' is-artificial='yes'/>
+ <parameter type-id='type-id-412' is-artificial='yes'/>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8201,11 +8213,11 @@
<!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::_M_fill_initialize(unsigned long int, vtkPixelBufferObject* const&) -->
<function-decl name='_M_fill_initialize' mangled-name='_ZNSt6vectorIP20vtkPixelBufferObjectSaIS1_EE18_M_fill_initializeEmRKS1_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='1033' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-411' is-artificial='yes'/>
+ <parameter type-id='type-id-412' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'vtkPixelBufferObject* const&' -->
- <parameter type-id='type-id-416'/>
+ <parameter type-id='type-id-417'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8214,32 +8226,32 @@
<!-- vtkPixelBufferObject*& std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::operator[](unsigned long int) -->
<function-decl name='operator[]' mangled-name='_ZNSt6vectorIP20vtkPixelBufferObjectSaIS1_EEixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='610' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-411' is-artificial='yes'/>
+ <parameter type-id='type-id-412' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- vtkPixelBufferObject*& -->
- <return type-id='type-id-418'/>
+ <return type-id='type-id-419'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- void std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >::clear() -->
<function-decl name='clear' mangled-name='_ZNSt6vectorIP20vtkPixelBufferObjectSaIS1_EE5clearEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_vector.h' line='950' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> >*' -->
- <parameter type-id='type-id-411' is-artificial='yes'/>
+ <parameter type-id='type-id-412' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
</member-function>
</class-decl>
<!-- struct std::allocator<char> -->
- <class-decl name='allocator<char>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='45' column='1' id='type-id-351'>
+ <class-decl name='allocator<char>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='45' column='1' id='type-id-352'>
<!-- class __gnu_cxx::new_allocator<char> -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-323'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-324'/>
<member-function access='public'>
<!-- void std::allocator<char>::allocator() -->
<function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::allocator<char>*' -->
- <parameter type-id='type-id-393' is-artificial='yes'/>
+ <parameter type-id='type-id-394' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8248,9 +8260,9 @@
<!-- void std::allocator<char>::allocator(const std::allocator<char>&) -->
<function-decl name='allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::allocator<char>*' -->
- <parameter type-id='type-id-393' is-artificial='yes'/>
+ <parameter type-id='type-id-394' is-artificial='yes'/>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8259,7 +8271,7 @@
<!-- std::allocator<char>::~allocator(int) -->
<function-decl name='~allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::allocator<char>*' -->
- <parameter type-id='type-id-393' is-artificial='yes'/>
+ <parameter type-id='type-id-394' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -8268,10 +8280,10 @@
</member-function>
</class-decl>
<!-- struct std::basic_string<char, std::char_traits<char>, std::allocator<char> > -->
- <class-decl name='basic_string<char, std::char_traits<char>, std::allocator<char> >' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='52' column='1' id='type-id-366'>
+ <class-decl name='basic_string<char, std::char_traits<char>, std::allocator<char> >' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='52' column='1' id='type-id-367'>
<member-type access='private'>
<!-- struct std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep_base -->
- <class-decl name='_Rep_base' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='141' column='1' id='type-id-430'>
+ <class-decl name='_Rep_base' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='141' column='1' id='type-id-431'>
<data-member access='public' layout-offset-in-bits='0'>
<!-- size_t std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep_base::_M_length -->
<var-decl name='_M_length' type-id='type-id-50' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='142' column='1'/>
@@ -8288,9 +8300,9 @@
</member-type>
<member-type access='private'>
<!-- struct std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep -->
- <class-decl name='_Rep' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='148' column='1' id='type-id-370'>
+ <class-decl name='_Rep' size-in-bits='192' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='148' column='1' id='type-id-371'>
<!-- struct std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep_base -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-430'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-431'/>
<data-member access='public' static='yes'>
<!-- static const size_t std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_S_max_size -->
<var-decl name='_S_max_size' type-id='type-id-128' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='51' column='1'/>
@@ -8301,20 +8313,20 @@
</data-member>
<data-member access='public' static='yes'>
<!-- static size_t std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_S_empty_rep_storage[4] -->
- <var-decl name='_S_empty_rep_storage' type-id='type-id-312' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='68' column='1'/>
+ <var-decl name='_S_empty_rep_storage' type-id='type-id-313' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='68' column='1'/>
</data-member>
<member-function access='public' static='yes'>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_S_empty_rep() -->
<function-decl name='_S_empty_rep' mangled-name='_ZNSs4_Rep12_S_empty_repEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep& -->
- <return type-id='type-id-404'/>
+ <return type-id='type-id-405'/>
</function-decl>
</member-function>
<member-function access='public'>
<!-- char* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_M_refdata() -->
<function-decl name='_M_refdata' mangled-name='_ZNSs4_Rep10_M_refdataEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep*' -->
- <parameter type-id='type-id-405' is-artificial='yes'/>
+ <parameter type-id='type-id-406' is-artificial='yes'/>
<!-- char* -->
<return type-id='type-id-86'/>
</function-decl>
@@ -8323,7 +8335,7 @@
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_M_set_sharable() -->
<function-decl name='_M_set_sharable' mangled-name='_ZNSs4_Rep15_M_set_sharableEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep*' -->
- <parameter type-id='type-id-405' is-artificial='yes'/>
+ <parameter type-id='type-id-406' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8332,7 +8344,7 @@
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_M_set_length_and_sharable(unsigned long int) -->
<function-decl name='_M_set_length_and_sharable' mangled-name='_ZNSs4_Rep26_M_set_length_and_sharableEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep*' -->
- <parameter type-id='type-id-405' is-artificial='yes'/>
+ <parameter type-id='type-id-406' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- void -->
@@ -8343,7 +8355,7 @@
<!-- bool std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_M_is_leaked() -->
<function-decl name='_M_is_leaked' mangled-name='_ZNKSs4_Rep12_M_is_leakedEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep*' -->
- <parameter type-id='type-id-372' is-artificial='yes'/>
+ <parameter type-id='type-id-373' is-artificial='yes'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -8352,9 +8364,9 @@
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep::_M_dispose(const std::allocator<char>&) -->
<function-decl name='_M_dispose' mangled-name='_ZNSs4_Rep10_M_disposeERKSaIcE' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='229' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep*' -->
- <parameter type-id='type-id-405' is-artificial='yes'/>
+ <parameter type-id='type-id-406' is-artificial='yes'/>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8363,9 +8375,9 @@
</member-type>
<member-type access='private'>
<!-- struct std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider -->
- <class-decl name='_Alloc_hider' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='258' column='1' id='type-id-402'>
+ <class-decl name='_Alloc_hider' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='258' column='1' id='type-id-403'>
<!-- struct std::allocator<char> -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-351'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-352'/>
<data-member access='public' layout-offset-in-bits='0'>
<!-- char* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider::_M_p -->
<var-decl name='_M_p' type-id='type-id-86' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='262' column='1'/>
@@ -8374,11 +8386,11 @@
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider::_Alloc_hider(char*, const std::allocator<char>&) -->
<function-decl name='_Alloc_hider' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider*' -->
- <parameter type-id='type-id-403' is-artificial='yes'/>
+ <parameter type-id='type-id-404' is-artificial='yes'/>
<!-- parameter of type 'char*' -->
<parameter type-id='type-id-86'/>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8391,13 +8403,13 @@
</data-member>
<data-member access='private' layout-offset-in-bits='0'>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_dataplus -->
- <var-decl name='_M_dataplus' type-id='type-id-402' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='274' column='1'/>
+ <var-decl name='_M_dataplus' type-id='type-id-403' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='274' column='1'/>
</data-member>
<member-function access='public'>
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string() -->
<function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='2144' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8406,9 +8418,9 @@
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(const std::allocator<char>&) -->
<function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8417,9 +8429,9 @@
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&) -->
<function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='170' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&' -->
- <parameter type-id='type-id-368'/>
+ <parameter type-id='type-id-369'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8428,9 +8440,9 @@
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, unsigned long int, unsigned long int) -->
<function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&' -->
- <parameter type-id='type-id-368'/>
+ <parameter type-id='type-id-369'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'unsigned long int' -->
@@ -8443,15 +8455,15 @@
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, unsigned long int, unsigned long int, const std::allocator<char>&) -->
<function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='194' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&' -->
- <parameter type-id='type-id-368'/>
+ <parameter type-id='type-id-369'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8460,13 +8472,13 @@
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(const char*, unsigned long int, const std::allocator<char>&) -->
<function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='206' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8475,11 +8487,11 @@
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(const char*, const std::allocator<char>&) -->
<function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8488,13 +8500,13 @@
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(unsigned long int, char, const std::allocator<char>&) -->
<function-decl name='basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='220' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'char' -->
<parameter type-id='type-id-2'/>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8503,7 +8515,7 @@
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::~basic_string(int) -->
<function-decl name='~basic_string' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='502' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -8514,13 +8526,13 @@
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string<char*>(char*, char*, const std::allocator<char>&) -->
<function-decl name='basic_string<char*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'char*' -->
<parameter type-id='type-id-86'/>
<!-- parameter of type 'char*' -->
<parameter type-id='type-id-86'/>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8529,7 +8541,7 @@
<!-- char* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_data() -->
<function-decl name='_M_data' mangled-name='_ZNKSs7_M_dataEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-369' is-artificial='yes'/>
+ <parameter type-id='type-id-370' is-artificial='yes'/>
<!-- char* -->
<return type-id='type-id-86'/>
</function-decl>
@@ -8538,7 +8550,7 @@
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_S_empty_rep() -->
<function-decl name='_S_empty_rep' mangled-name='_ZNSs12_S_empty_repEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='411' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep& -->
- <return type-id='type-id-404'/>
+ <return type-id='type-id-405'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
@@ -8549,9 +8561,9 @@
<!-- parameter of type 'char*' -->
<parameter type-id='type-id-86'/>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- parameter of type 'struct std::__false_type' -->
- <parameter type-id='type-id-287'/>
+ <parameter type-id='type-id-288'/>
<!-- char* -->
<return type-id='type-id-86'/>
</function-decl>
@@ -8564,7 +8576,7 @@
<!-- parameter of type 'char*' -->
<parameter type-id='type-id-86'/>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- char* -->
<return type-id='type-id-86'/>
</function-decl>
@@ -8573,36 +8585,36 @@
<!-- std::allocator<char> std::basic_string<char, std::char_traits<char>, std::allocator<char> >::get_allocator() -->
<function-decl name='get_allocator' mangled-name='_ZNKSs13get_allocatorEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='1629' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-369' is-artificial='yes'/>
+ <parameter type-id='type-id-370' is-artificial='yes'/>
<!-- struct std::allocator<char> -->
- <return type-id='type-id-351'/>
+ <return type-id='type-id-352'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_rep() -->
<function-decl name='_M_rep' mangled-name='_ZNKSs6_M_repEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='285' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-369' is-artificial='yes'/>
+ <parameter type-id='type-id-370' is-artificial='yes'/>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Rep* -->
- <return type-id='type-id-405'/>
+ <return type-id='type-id-406'/>
</function-decl>
</member-function>
<member-function access='public'>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator=(const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&) -->
<function-decl name='operator=' mangled-name='_ZNSsaSERKSs' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='510' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >&' -->
- <parameter type-id='type-id-368'/>
+ <parameter type-id='type-id-369'/>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
- <return type-id='type-id-400'/>
+ <return type-id='type-id-401'/>
</function-decl>
</member-function>
<member-function access='public'>
<!-- const char* std::basic_string<char, std::char_traits<char>, std::allocator<char> >::c_str() -->
<function-decl name='c_str' mangled-name='_ZNKSs5c_strEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='1612' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-369' is-artificial='yes'/>
+ <parameter type-id='type-id-370' is-artificial='yes'/>
<!-- const char* -->
<return type-id='type-id-64'/>
</function-decl>
@@ -8611,18 +8623,18 @@
<!-- char& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator[](unsigned long int) -->
<function-decl name='operator[]' mangled-name='_ZNSsixEm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- char& -->
- <return type-id='type-id-329'/>
+ <return type-id='type-id-330'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- void std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_leak() -->
<function-decl name='_M_leak' mangled-name='_ZNSs7_M_leakEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='299' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8631,29 +8643,29 @@
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator=(const char*) -->
<function-decl name='operator=' mangled-name='_ZNSsaSEPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
- <return type-id='type-id-400'/>
+ <return type-id='type-id-401'/>
</function-decl>
</member-function>
<member-function access='public'>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator+=(const char*) -->
<function-decl name='operator+=' mangled-name='_ZNSspLEPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='804' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
- <return type-id='type-id-400'/>
+ <return type-id='type-id-401'/>
</function-decl>
</member-function>
<member-function access='public'>
<!-- size_t std::basic_string<char, std::char_traits<char>, std::allocator<char> >::length() -->
<function-decl name='length' mangled-name='_ZNKSs6lengthEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='634' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-369' is-artificial='yes'/>
+ <parameter type-id='type-id-370' is-artificial='yes'/>
<!-- typedef size_t -->
<return type-id='type-id-50'/>
</function-decl>
@@ -8662,40 +8674,40 @@
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::assign(const char*) -->
<function-decl name='assign' mangled-name='_ZNSs6assignEPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='972' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
- <return type-id='type-id-400'/>
+ <return type-id='type-id-401'/>
</function-decl>
</member-function>
<member-function access='public'>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& std::basic_string<char, std::char_traits<char>, std::allocator<char> >::append(const char*) -->
<function-decl name='append' mangled-name='_ZNSs6appendEPKc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h' line='868' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-401' is-artificial='yes'/>
+ <parameter type-id='type-id-402' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> >& -->
- <return type-id='type-id-400'/>
+ <return type-id='type-id-401'/>
</function-decl>
</member-function>
</class-decl>
<!-- typedef std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::string -->
- <typedef-decl name='string' type-id='type-id-366' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='56' column='1' id='type-id-431'/>
+ <typedef-decl name='string' type-id='type-id-367' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stringfwd.h' line='56' column='1' id='type-id-432'/>
<!-- struct std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> > -->
- <class-decl name='basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-360'>
+ <class-decl name='basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-361'>
<member-function access='public'>
<!-- void std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >::basic_ostringstream(int, void**, std::_Ios_Openmode) -->
<function-decl name='basic_ostringstream' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/sstream' line='402' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-398' is-artificial='yes'/>
+ <parameter type-id='type-id-399' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- artificial parameter of type 'void**' -->
- <parameter type-id='type-id-294' is-artificial='yes'/>
+ <parameter type-id='type-id-295' is-artificial='yes'/>
<!-- parameter of type 'enum std::_Ios_Openmode' -->
- <parameter type-id='type-id-275'/>
+ <parameter type-id='type-id-276'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8704,32 +8716,32 @@
<!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >::str() -->
<function-decl name='str' mangled-name='_ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/sstream' line='450' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-362' is-artificial='yes'/>
+ <parameter type-id='type-id-363' is-artificial='yes'/>
<!-- struct std::basic_string<char, std::char_traits<char>, std::allocator<char> > -->
- <return type-id='type-id-366'/>
+ <return type-id='type-id-367'/>
</function-decl>
</member-function>
<member-function access='public' destructor='yes' vtable-offset='-1'>
<!-- std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >::~basic_ostringstream(int, void**) -->
<function-decl name='~basic_ostringstream' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/sstream' line='431' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-398' is-artificial='yes'/>
+ <parameter type-id='type-id-399' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- artificial parameter of type 'void**' -->
- <parameter type-id='type-id-294' is-artificial='yes'/>
+ <parameter type-id='type-id-295' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
</member-function>
</class-decl>
<!-- struct std::basic_streambuf<char, std::char_traits<char> > -->
- <class-decl name='basic_streambuf<char, std::char_traits<char> >' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-363'>
+ <class-decl name='basic_streambuf<char, std::char_traits<char> >' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-364'>
<member-function access='protected'>
<!-- void std::basic_streambuf<char, std::char_traits<char> >::basic_streambuf() -->
<function-decl name='basic_streambuf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='439' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_streambuf<char, std::char_traits<char> >*' -->
- <parameter type-id='type-id-399' is-artificial='yes'/>
+ <parameter type-id='type-id-400' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8738,7 +8750,7 @@
<!-- char* std::basic_streambuf<char, std::char_traits<char> >::pptr() -->
<function-decl name='pptr' mangled-name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE4pptrEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='508' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::basic_streambuf<char, std::char_traits<char> >*' -->
- <parameter type-id='type-id-365' is-artificial='yes'/>
+ <parameter type-id='type-id-366' is-artificial='yes'/>
<!-- char* -->
<return type-id='type-id-86'/>
</function-decl>
@@ -8747,7 +8759,7 @@
<!-- char* std::basic_streambuf<char, std::char_traits<char> >::egptr() -->
<function-decl name='egptr' mangled-name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5egptrEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='464' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::basic_streambuf<char, std::char_traits<char> >*' -->
- <parameter type-id='type-id-365' is-artificial='yes'/>
+ <parameter type-id='type-id-366' is-artificial='yes'/>
<!-- char* -->
<return type-id='type-id-86'/>
</function-decl>
@@ -8756,7 +8768,7 @@
<!-- char* std::basic_streambuf<char, std::char_traits<char> >::pbase() -->
<function-decl name='pbase' mangled-name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5pbaseEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='505' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const std::basic_streambuf<char, std::char_traits<char> >*' -->
- <parameter type-id='type-id-365' is-artificial='yes'/>
+ <parameter type-id='type-id-366' is-artificial='yes'/>
<!-- char* -->
<return type-id='type-id-86'/>
</function-decl>
@@ -8765,7 +8777,7 @@
<!-- std::basic_streambuf<char, std::char_traits<char> >::~basic_streambuf(int) -->
<function-decl name='~basic_streambuf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/streambuf' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_streambuf<char, std::char_traits<char> >*' -->
- <parameter type-id='type-id-399' is-artificial='yes'/>
+ <parameter type-id='type-id-400' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -8774,48 +8786,48 @@
</member-function>
</class-decl>
<!-- struct std::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> > -->
- <class-decl name='basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-406'>
+ <class-decl name='basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-407'>
<member-function access='public'>
<!-- void std::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >::basic_stringbuf(std::_Ios_Openmode) -->
<function-decl name='basic_stringbuf' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/sstream' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'std::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >*' -->
- <parameter type-id='type-id-407' is-artificial='yes'/>
+ <parameter type-id='type-id-408' is-artificial='yes'/>
<!-- parameter of type 'enum std::_Ios_Openmode' -->
- <parameter type-id='type-id-275'/>
+ <parameter type-id='type-id-276'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
</member-function>
</class-decl>
<!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > -->
- <class-decl name='reverse_iterator<__gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >' visibility='default' is-declaration-only='yes' id='type-id-432'/>
+ <class-decl name='reverse_iterator<__gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >' visibility='default' is-declaration-only='yes' id='type-id-433'/>
<!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > -->
- <class-decl name='reverse_iterator<__gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >' visibility='default' is-declaration-only='yes' id='type-id-433'/>
+ <class-decl name='reverse_iterator<__gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >' visibility='default' is-declaration-only='yes' id='type-id-434'/>
<!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<const float*, std::vector<float, std::allocator<float> > > > -->
- <class-decl name='reverse_iterator<__gnu_cxx::__normal_iterator<const float*, std::vector<float, std::allocator<float> > > >' visibility='default' is-declaration-only='yes' id='type-id-434'/>
+ <class-decl name='reverse_iterator<__gnu_cxx::__normal_iterator<const float*, std::vector<float, std::allocator<float> > > >' visibility='default' is-declaration-only='yes' id='type-id-435'/>
<!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > > -->
- <class-decl name='reverse_iterator<__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > >' visibility='default' is-declaration-only='yes' id='type-id-435'/>
+ <class-decl name='reverse_iterator<__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > >' visibility='default' is-declaration-only='yes' id='type-id-436'/>
<!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelBufferObject* const*, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > > > -->
- <class-decl name='reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelBufferObject* const*, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > > >' visibility='default' is-declaration-only='yes' id='type-id-436'/>
+ <class-decl name='reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelBufferObject* const*, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > > >' visibility='default' is-declaration-only='yes' id='type-id-437'/>
<!-- class std::reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelBufferObject**, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > > > -->
- <class-decl name='reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelBufferObject**, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > > >' visibility='default' is-declaration-only='yes' id='type-id-437'/>
+ <class-decl name='reverse_iterator<__gnu_cxx::__normal_iterator<vtkPixelBufferObject**, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > > >' visibility='default' is-declaration-only='yes' id='type-id-438'/>
<!-- bool std::operator==<char>(const std::allocator<char>&, const std::allocator<char>&) -->
<function-decl name='operator==<char>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/allocator.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- parameter of type 'const std::allocator<char>&' -->
- <parameter type-id='type-id-353'/>
+ <parameter type-id='type-id-354'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
<!-- std::_Ios_Openmode std::operator|(std::_Ios_Openmode, std::_Ios_Openmode) -->
<function-decl name='operator|' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'enum std::_Ios_Openmode' -->
- <parameter type-id='type-id-275'/>
+ <parameter type-id='type-id-276'/>
<!-- parameter of type 'enum std::_Ios_Openmode' -->
- <parameter type-id='type-id-275'/>
+ <parameter type-id='type-id-276'/>
<!-- enum std::_Ios_Openmode -->
- <return type-id='type-id-275'/>
+ <return type-id='type-id-276'/>
</function-decl>
<!-- vtkPixelExtent** std::__copy_move_a<false, vtkPixelExtent**, vtkPixelExtent**>(vtkPixelExtent**, vtkPixelExtent**, vtkPixelExtent**) -->
<function-decl name='__copy_move_a<false, vtkPixelExtent**, vtkPixelExtent**>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -8890,20 +8902,20 @@
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const float&' -->
- <parameter type-id='type-id-343'/>
+ <parameter type-id='type-id-344'/>
<!-- float* -->
<return type-id='type-id-55'/>
</function-decl>
<!-- vtkPixelBufferObject** std::__fill_n_a<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*>(vtkPixelBufferObject**, unsigned long int, vtkPixelBufferObject* const&) -->
<function-decl name='__fill_n_a<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='754' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'vtkPixelBufferObject* const&' -->
- <parameter type-id='type-id-416'/>
+ <parameter type-id='type-id-417'/>
<!-- vtkPixelBufferObject** -->
- <return type-id='type-id-281'/>
+ <return type-id='type-id-282'/>
</function-decl>
<!-- float* std::fill_n<float*, long unsigned int, float>(float*, unsigned long int, const float&) -->
<function-decl name='fill_n<float*, long unsigned int, float>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='785' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -8912,20 +8924,20 @@
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const float&' -->
- <parameter type-id='type-id-343'/>
+ <parameter type-id='type-id-344'/>
<!-- float* -->
<return type-id='type-id-55'/>
</function-decl>
<!-- vtkPixelBufferObject** std::fill_n<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*>(vtkPixelBufferObject**, unsigned long int, vtkPixelBufferObject* const&) -->
<function-decl name='fill_n<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='785' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'vtkPixelBufferObject* const&' -->
- <parameter type-id='type-id-416'/>
+ <parameter type-id='type-id-417'/>
<!-- vtkPixelBufferObject** -->
- <return type-id='type-id-281'/>
+ <return type-id='type-id-282'/>
</function-decl>
<!-- void std::_Destroy<float*>(float*, float*) -->
<function-decl name='_Destroy<float*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -8939,9 +8951,9 @@
<!-- void std::_Destroy<vtkPixelBufferObject**>(vtkPixelBufferObject**, vtkPixelBufferObject**) -->
<function-decl name='_Destroy<vtkPixelBufferObject**>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8952,18 +8964,18 @@
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- parameter of type 'std::allocator<float>&' -->
- <parameter type-id='type-id-394'/>
+ <parameter type-id='type-id-395'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
<!-- void std::_Destroy<vtkPixelBufferObject**, vtkPixelBufferObject*>(vtkPixelBufferObject**, vtkPixelBufferObject**, std::allocator<vtkPixelBufferObject*>&) -->
<function-decl name='_Destroy<vtkPixelBufferObject**, vtkPixelBufferObject*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- parameter of type 'std::allocator<vtkPixelBufferObject*>&' -->
- <parameter type-id='type-id-396'/>
+ <parameter type-id='type-id-397'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -8983,7 +8995,7 @@
<!-- parameter of type 'char*' -->
<parameter type-id='type-id-86'/>
<!-- parameter of type 'struct std::random_access_iterator_tag' -->
- <parameter type-id='type-id-427'/>
+ <parameter type-id='type-id-428'/>
<!-- typedef ptrdiff_t -->
<return type-id='type-id-105'/>
</function-decl>
@@ -8999,9 +9011,9 @@
<!-- std::random_access_iterator_tag std::__iterator_category<char*>(char* const&) -->
<function-decl name='__iterator_category<char*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'char* const&' -->
- <parameter type-id='type-id-331'/>
+ <parameter type-id='type-id-332'/>
<!-- struct std::random_access_iterator_tag -->
- <return type-id='type-id-427'/>
+ <return type-id='type-id-428'/>
</function-decl>
<!-- void std::uninitialized_fill_n<float*, long unsigned int, float>(float*, unsigned long int, const float&) -->
<function-decl name='uninitialized_fill_n<float*, long unsigned int, float>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -9010,18 +9022,18 @@
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const float&' -->
- <parameter type-id='type-id-343'/>
+ <parameter type-id='type-id-344'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
<!-- void std::uninitialized_fill_n<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*>(vtkPixelBufferObject**, unsigned long int, vtkPixelBufferObject* const&) -->
<function-decl name='uninitialized_fill_n<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'vtkPixelBufferObject* const&' -->
- <parameter type-id='type-id-416'/>
+ <parameter type-id='type-id-417'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9032,22 +9044,22 @@
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'const float&' -->
- <parameter type-id='type-id-343'/>
+ <parameter type-id='type-id-344'/>
<!-- parameter of type 'std::allocator<float>&' -->
- <parameter type-id='type-id-394'/>
+ <parameter type-id='type-id-395'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
<!-- void std::__uninitialized_fill_n_a<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*, vtkPixelBufferObject*>(vtkPixelBufferObject**, unsigned long int, vtkPixelBufferObject* const&, std::allocator<vtkPixelBufferObject*>&) -->
<function-decl name='__uninitialized_fill_n_a<vtkPixelBufferObject**, long unsigned int, vtkPixelBufferObject*, vtkPixelBufferObject*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='315' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'vtkPixelBufferObject* const&' -->
- <parameter type-id='type-id-416'/>
+ <parameter type-id='type-id-417'/>
<!-- parameter of type 'std::allocator<vtkPixelBufferObject*>&' -->
- <parameter type-id='type-id-396'/>
+ <parameter type-id='type-id-397'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9063,12 +9075,12 @@
</function-decl>
</namespace-decl>
<!-- class vtkLineIntegralConvolution2D -->
- <class-decl name='vtkLineIntegralConvolution2D' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='105' column='1' is-declaration-only='yes' id='type-id-381'>
+ <class-decl name='vtkLineIntegralConvolution2D' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='105' column='1' is-declaration-only='yes' id='type-id-382'>
<!-- class vtkObject -->
<base-class access='public' layout-offset-in-bits='0' type-id='type-id-268'/>
<member-type access='private'>
<!-- enum vtkLineIntegralConvolution2D::__anonymous_enum__ -->
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='149' column='1' id='type-id-438'>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='149' column='1' id='type-id-439'>
<underlying-type type-id='type-id-24'/>
<enumerator name='ENHANCE_CONTRAST_OFF' value='0'/>
<enumerator name='ENHANCE_CONTRAST_ON' value='1'/>
@@ -9076,7 +9088,7 @@
</member-type>
<data-member access='protected' layout-offset-in-bits='384'>
<!-- vtkPainterCommunicator* vtkLineIntegralConvolution2D::Comm -->
- <var-decl name='Comm' type-id='type-id-320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='362' column='1'/>
+ <var-decl name='Comm' type-id='type-id-321' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='362' column='1'/>
</data-member>
<data-member access='protected' layout-offset-in-bits='448'>
<!-- vtkWeakPointer<vtkRenderWindow> vtkLineIntegralConvolution2D::Context -->
@@ -9084,7 +9096,7 @@
</data-member>
<data-member access='protected' layout-offset-in-bits='512'>
<!-- vtkFrameBufferObject2* vtkLineIntegralConvolution2D::FBO -->
- <var-decl name='FBO' type-id='type-id-318' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='365' column='1'/>
+ <var-decl name='FBO' type-id='type-id-319' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='365' column='1'/>
</data-member>
<data-member access='protected' layout-offset-in-bits='576'>
<!-- int vtkLineIntegralConvolution2D::ShadersNeedBuild -->
@@ -9168,7 +9180,7 @@
</data-member>
<data-member access='protected' layout-offset-in-bits='1664'>
<!-- int vtkLineIntegralConvolution2D::ComponentIds[2] -->
- <var-decl name='ComponentIds' type-id='type-id-310' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='388' column='1'/>
+ <var-decl name='ComponentIds' type-id='type-id-311' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='388' column='1'/>
</data-member>
<data-member access='protected' layout-offset-in-bits='1728'>
<!-- double vtkLineIntegralConvolution2D::MaxNoiseValue -->
@@ -9178,7 +9190,7 @@
<!-- vtkLineIntegralConvolution2D::vtkLineIntegralConvolution2D() -->
<function-decl name='vtkLineIntegralConvolution2D' mangled-name='_ZN28vtkLineIntegralConvolution2DC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='959' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2DC1Ev'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9187,9 +9199,9 @@
<!-- vtkLineIntegralConvolution2D::vtkLineIntegralConvolution2D(const vtkLineIntegralConvolution2D&) -->
<function-decl name='vtkLineIntegralConvolution2D' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='392' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'const vtkLineIntegralConvolution2D&' -->
- <parameter type-id='type-id-383'/>
+ <parameter type-id='type-id-384'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9207,7 +9219,7 @@
<!-- vtkRenderWindow* vtkLineIntegralConvolution2D::GetContext() -->
<function-decl name='GetContext' mangled-name='_ZN28vtkLineIntegralConvolution2D10GetContextEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1024' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D10GetContextEv'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- vtkRenderWindow* -->
<return type-id='type-id-35'/>
</function-decl>
@@ -9216,7 +9228,7 @@
<!-- void vtkLineIntegralConvolution2D::SetComponentIds(int, int) -->
<function-decl name='SetComponentIds' mangled-name='_ZN28vtkLineIntegralConvolution2D15SetComponentIdsEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D15SetComponentIdsEii'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- parameter of type 'int' -->
@@ -9229,7 +9241,7 @@
<!-- void vtkLineIntegralConvolution2D::SetTransformVectors(int) -->
<function-decl name='SetTransformVectors' mangled-name='_ZN28vtkLineIntegralConvolution2D19SetTransformVectorsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D19SetTransformVectorsEi'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -9240,7 +9252,7 @@
<!-- void vtkLineIntegralConvolution2D::SetNormalizeVectors(int) -->
<function-decl name='SetNormalizeVectors' mangled-name='_ZN28vtkLineIntegralConvolution2D19SetNormalizeVectorsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D19SetNormalizeVectorsEi'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -9251,7 +9263,7 @@
<!-- void vtkLineIntegralConvolution2D::SetVTShader(vtkShaderProgram2*) -->
<function-decl name='SetVTShader' mangled-name='_ZN28vtkLineIntegralConvolution2D11SetVTShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D11SetVTShaderEP17vtkShaderProgram2'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'vtkShaderProgram2*' -->
<parameter type-id='type-id-258'/>
<!-- void -->
@@ -9262,7 +9274,7 @@
<!-- void vtkLineIntegralConvolution2D::SetLIC0Shader(vtkShaderProgram2*) -->
<function-decl name='SetLIC0Shader' mangled-name='_ZN28vtkLineIntegralConvolution2D13SetLIC0ShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1162' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D13SetLIC0ShaderEP17vtkShaderProgram2'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'vtkShaderProgram2*' -->
<parameter type-id='type-id-258'/>
<!-- void -->
@@ -9273,7 +9285,7 @@
<!-- void vtkLineIntegralConvolution2D::SetLICIShader(vtkShaderProgram2*) -->
<function-decl name='SetLICIShader' mangled-name='_ZN28vtkLineIntegralConvolution2D13SetLICIShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1168' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D13SetLICIShaderEP17vtkShaderProgram2'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'vtkShaderProgram2*' -->
<parameter type-id='type-id-258'/>
<!-- void -->
@@ -9284,7 +9296,7 @@
<!-- void vtkLineIntegralConvolution2D::SetLICNShader(vtkShaderProgram2*) -->
<function-decl name='SetLICNShader' mangled-name='_ZN28vtkLineIntegralConvolution2D13SetLICNShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1174' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D13SetLICNShaderEP17vtkShaderProgram2'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'vtkShaderProgram2*' -->
<parameter type-id='type-id-258'/>
<!-- void -->
@@ -9295,7 +9307,7 @@
<!-- void vtkLineIntegralConvolution2D::SetEEShader(vtkShaderProgram2*) -->
<function-decl name='SetEEShader' mangled-name='_ZN28vtkLineIntegralConvolution2D11SetEEShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D11SetEEShaderEP17vtkShaderProgram2'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'vtkShaderProgram2*' -->
<parameter type-id='type-id-258'/>
<!-- void -->
@@ -9306,7 +9318,7 @@
<!-- void vtkLineIntegralConvolution2D::SetCEShader(vtkShaderProgram2*) -->
<function-decl name='SetCEShader' mangled-name='_ZN28vtkLineIntegralConvolution2D11SetCEShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D11SetCEShaderEP17vtkShaderProgram2'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'vtkShaderProgram2*' -->
<parameter type-id='type-id-258'/>
<!-- void -->
@@ -9317,7 +9329,7 @@
<!-- void vtkLineIntegralConvolution2D::SetAAHShader(vtkShaderProgram2*) -->
<function-decl name='SetAAHShader' mangled-name='_ZN28vtkLineIntegralConvolution2D12SetAAHShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1191' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D12SetAAHShaderEP17vtkShaderProgram2'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'vtkShaderProgram2*' -->
<parameter type-id='type-id-258'/>
<!-- void -->
@@ -9328,7 +9340,7 @@
<!-- void vtkLineIntegralConvolution2D::SetAAVShader(vtkShaderProgram2*) -->
<function-decl name='SetAAVShader' mangled-name='_ZN28vtkLineIntegralConvolution2D12SetAAVShaderEP17vtkShaderProgram2' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D12SetAAVShaderEP17vtkShaderProgram2'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'vtkShaderProgram2*' -->
<parameter type-id='type-id-258'/>
<!-- void -->
@@ -9339,7 +9351,7 @@
<!-- void vtkLineIntegralConvolution2D::SetVectorTexParameters() -->
<function-decl name='SetVectorTexParameters' mangled-name='_ZN28vtkLineIntegralConvolution2D22SetVectorTexParametersEP16vtkTextureObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1099' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D22SetVectorTexParametersEP16vtkTextureObject'>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9348,7 +9360,7 @@
<!-- void vtkLineIntegralConvolution2D::SetNoiseTexParameters() -->
<function-decl name='SetNoiseTexParameters' mangled-name='_ZN28vtkLineIntegralConvolution2D21SetNoiseTexParametersEP16vtkTextureObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1084' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D21SetNoiseTexParametersEP16vtkTextureObject'>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9366,7 +9378,7 @@
<!-- void vtkLineIntegralConvolution2D::SetContext(vtkRenderWindow*) -->
<function-decl name='SetContext' mangled-name='_ZN28vtkLineIntegralConvolution2D10SetContextEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1030' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D10SetContextEP15vtkRenderWindow'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderWindow*' -->
<parameter type-id='type-id-35'/>
<!-- void -->
@@ -9377,14 +9389,14 @@
<!-- vtkLineIntegralConvolution2D* vtkLineIntegralConvolution2D::New() -->
<function-decl name='New' mangled-name='_ZN28vtkLineIntegralConvolution2D3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='956' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D3NewEv'>
<!-- vtkLineIntegralConvolution2D* -->
- <return type-id='type-id-413'/>
+ <return type-id='type-id-414'/>
</function-decl>
</member-function>
<member-function access='protected'>
<!-- void vtkLineIntegralConvolution2D::BuildShaders() -->
<function-decl name='BuildShaders' mangled-name='_ZN28vtkLineIntegralConvolution2D12BuildShadersEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D12BuildShadersEv'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9393,7 +9405,7 @@
<!-- vtkTextureObject* vtkLineIntegralConvolution2D::Execute(const vtkPixelExtent&, const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, vtkTextureObject*, vtkTextureObject*, vtkTextureObject*) -->
<function-decl name='Execute' mangled-name='_ZN28vtkLineIntegralConvolution2D7ExecuteERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EES7_P16vtkTextureObjectS9_S9_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D7ExecuteERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EES7_P16vtkTextureObjectS9_S9_'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'const vtkPixelExtent&' -->
<parameter type-id='type-id-45'/>
<!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
@@ -9401,48 +9413,48 @@
<!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
<parameter type-id='type-id-166'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- vtkTextureObject* -->
- <return type-id='type-id-316'/>
+ <return type-id='type-id-317'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkTextureObject* vtkLineIntegralConvolution2D::Execute(const int*, vtkTextureObject*, vtkTextureObject*) -->
<function-decl name='Execute' mangled-name='_ZN28vtkLineIntegralConvolution2D7ExecuteEPKiP16vtkTextureObjectS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1417' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D7ExecuteEPKiP16vtkTextureObjectS3_'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'const int*' -->
<parameter type-id='type-id-46'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- vtkTextureObject* -->
- <return type-id='type-id-316'/>
+ <return type-id='type-id-317'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkTextureObject* vtkLineIntegralConvolution2D::Execute(vtkTextureObject*, vtkTextureObject*) -->
<function-decl name='Execute' mangled-name='_ZN28vtkLineIntegralConvolution2D7ExecuteEP16vtkTextureObjectS1_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D7ExecuteEP16vtkTextureObjectS1_'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- vtkTextureObject* -->
- <return type-id='type-id-316'/>
+ <return type-id='type-id-317'/>
</function-decl>
</member-function>
<member-function access='protected' destructor='yes' vtable-offset='-1'>
<!-- vtkLineIntegralConvolution2D::~vtkLineIntegralConvolution2D(int) -->
<function-decl name='~vtkLineIntegralConvolution2D' mangled-name='_ZN28vtkLineIntegralConvolution2DD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='994' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2DD1Ev'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -9453,7 +9465,7 @@
<!-- const char* vtkLineIntegralConvolution2D::GetClassNameInternal() -->
<function-decl name='GetClassNameInternal' mangled-name='_ZNK28vtkLineIntegralConvolution2D20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-384' is-artificial='yes'/>
+ <parameter type-id='type-id-385' is-artificial='yes'/>
<!-- const char* -->
<return type-id='type-id-64'/>
</function-decl>
@@ -9462,7 +9474,7 @@
<!-- int vtkLineIntegralConvolution2D::IsA(const char*) -->
<function-decl name='IsA' mangled-name='_ZN28vtkLineIntegralConvolution2D3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- int -->
@@ -9473,7 +9485,7 @@
<!-- void vtkLineIntegralConvolution2D::PrintSelf(std::ostream&, vtkIndent) -->
<function-decl name='PrintSelf' mangled-name='_ZN28vtkLineIntegralConvolution2D9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='2129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D9PrintSelfERSo9vtkIndent'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'std::ostream&' -->
<parameter type-id='type-id-67'/>
<!-- parameter of type 'class vtkIndent' -->
@@ -9486,7 +9498,7 @@
<!-- vtkObjectBase* vtkLineIntegralConvolution2D::NewInstanceInternal() -->
<function-decl name='NewInstanceInternal' mangled-name='_ZNK28vtkLineIntegralConvolution2D19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-384' is-artificial='yes'/>
+ <parameter type-id='type-id-385' is-artificial='yes'/>
<!-- vtkObjectBase* -->
<return type-id='type-id-41'/>
</function-decl>
@@ -9495,7 +9507,7 @@
<!-- void vtkLineIntegralConvolution2D::SetEnhancedLIC(int) -->
<function-decl name='SetEnhancedLIC' mangled-name='_ZN28vtkLineIntegralConvolution2D14SetEnhancedLICEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -9506,7 +9518,7 @@
<!-- int vtkLineIntegralConvolution2D::GetEnhancedLICMinValue() -->
<function-decl name='GetEnhancedLICMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D22GetEnhancedLICMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9515,7 +9527,7 @@
<!-- int vtkLineIntegralConvolution2D::GetEnhancedLICMaxValue() -->
<function-decl name='GetEnhancedLICMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D22GetEnhancedLICMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9524,7 +9536,7 @@
<!-- int vtkLineIntegralConvolution2D::GetEnhancedLIC() -->
<function-decl name='GetEnhancedLIC' mangled-name='_ZN28vtkLineIntegralConvolution2D14GetEnhancedLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9533,7 +9545,7 @@
<!-- void vtkLineIntegralConvolution2D::EnhancedLICOn() -->
<function-decl name='EnhancedLICOn' mangled-name='_ZN28vtkLineIntegralConvolution2D13EnhancedLICOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9542,7 +9554,7 @@
<!-- void vtkLineIntegralConvolution2D::EnhancedLICOff() -->
<function-decl name='EnhancedLICOff' mangled-name='_ZN28vtkLineIntegralConvolution2D14EnhancedLICOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9551,7 +9563,7 @@
<!-- void vtkLineIntegralConvolution2D::SetEnhanceContrast(int) -->
<function-decl name='SetEnhanceContrast' mangled-name='_ZN28vtkLineIntegralConvolution2D18SetEnhanceContrastEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -9562,7 +9574,7 @@
<!-- int vtkLineIntegralConvolution2D::GetEnhanceContrastMinValue() -->
<function-decl name='GetEnhanceContrastMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D26GetEnhanceContrastMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9571,7 +9583,7 @@
<!-- int vtkLineIntegralConvolution2D::GetEnhanceContrastMaxValue() -->
<function-decl name='GetEnhanceContrastMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D26GetEnhanceContrastMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9580,7 +9592,7 @@
<!-- int vtkLineIntegralConvolution2D::GetEnhanceContrast() -->
<function-decl name='GetEnhanceContrast' mangled-name='_ZN28vtkLineIntegralConvolution2D18GetEnhanceContrastEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9589,7 +9601,7 @@
<!-- void vtkLineIntegralConvolution2D::EnhanceContrastOn() -->
<function-decl name='EnhanceContrastOn' mangled-name='_ZN28vtkLineIntegralConvolution2D17EnhanceContrastOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9598,7 +9610,7 @@
<!-- void vtkLineIntegralConvolution2D::EnhanceContrastOff() -->
<function-decl name='EnhanceContrastOff' mangled-name='_ZN28vtkLineIntegralConvolution2D18EnhanceContrastOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9607,7 +9619,7 @@
<!-- void vtkLineIntegralConvolution2D::SetLowContrastEnhancementFactor(double) -->
<function-decl name='SetLowContrastEnhancementFactor' mangled-name='_ZN28vtkLineIntegralConvolution2D31SetLowContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -9618,7 +9630,7 @@
<!-- double vtkLineIntegralConvolution2D::GetLowContrastEnhancementFactorMinValue() -->
<function-decl name='GetLowContrastEnhancementFactorMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D39GetLowContrastEnhancementFactorMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9627,7 +9639,7 @@
<!-- double vtkLineIntegralConvolution2D::GetLowContrastEnhancementFactorMaxValue() -->
<function-decl name='GetLowContrastEnhancementFactorMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D39GetLowContrastEnhancementFactorMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9636,7 +9648,7 @@
<!-- double vtkLineIntegralConvolution2D::GetLowContrastEnhancementFactor() -->
<function-decl name='GetLowContrastEnhancementFactor' mangled-name='_ZN28vtkLineIntegralConvolution2D31GetLowContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9645,7 +9657,7 @@
<!-- void vtkLineIntegralConvolution2D::SetHighContrastEnhancementFactor(double) -->
<function-decl name='SetHighContrastEnhancementFactor' mangled-name='_ZN28vtkLineIntegralConvolution2D32SetHighContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -9656,7 +9668,7 @@
<!-- double vtkLineIntegralConvolution2D::GetHighContrastEnhancementFactorMinValue() -->
<function-decl name='GetHighContrastEnhancementFactorMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D40GetHighContrastEnhancementFactorMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9665,7 +9677,7 @@
<!-- double vtkLineIntegralConvolution2D::GetHighContrastEnhancementFactorMaxValue() -->
<function-decl name='GetHighContrastEnhancementFactorMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D40GetHighContrastEnhancementFactorMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9674,7 +9686,7 @@
<!-- double vtkLineIntegralConvolution2D::GetHighContrastEnhancementFactor() -->
<function-decl name='GetHighContrastEnhancementFactor' mangled-name='_ZN28vtkLineIntegralConvolution2D32GetHighContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9683,7 +9695,7 @@
<!-- void vtkLineIntegralConvolution2D::SetAntiAlias(int) -->
<function-decl name='SetAntiAlias' mangled-name='_ZN28vtkLineIntegralConvolution2D12SetAntiAliasEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -9694,7 +9706,7 @@
<!-- int vtkLineIntegralConvolution2D::GetAntiAliasMinValue() -->
<function-decl name='GetAntiAliasMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D20GetAntiAliasMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9703,7 +9715,7 @@
<!-- int vtkLineIntegralConvolution2D::GetAntiAliasMaxValue() -->
<function-decl name='GetAntiAliasMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D20GetAntiAliasMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9712,7 +9724,7 @@
<!-- int vtkLineIntegralConvolution2D::GetAntiAlias() -->
<function-decl name='GetAntiAlias' mangled-name='_ZN28vtkLineIntegralConvolution2D12GetAntiAliasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9721,7 +9733,7 @@
<!-- void vtkLineIntegralConvolution2D::AntiAliasOn() -->
<function-decl name='AntiAliasOn' mangled-name='_ZN28vtkLineIntegralConvolution2D11AntiAliasOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9730,7 +9742,7 @@
<!-- void vtkLineIntegralConvolution2D::AntiAliasOff() -->
<function-decl name='AntiAliasOff' mangled-name='_ZN28vtkLineIntegralConvolution2D12AntiAliasOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9739,7 +9751,7 @@
<!-- void vtkLineIntegralConvolution2D::SetNumberOfSteps(int) -->
<function-decl name='SetNumberOfSteps' mangled-name='_ZN28vtkLineIntegralConvolution2D16SetNumberOfStepsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -9750,7 +9762,7 @@
<!-- int vtkLineIntegralConvolution2D::GetNumberOfStepsMinValue() -->
<function-decl name='GetNumberOfStepsMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetNumberOfStepsMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9759,7 +9771,7 @@
<!-- int vtkLineIntegralConvolution2D::GetNumberOfStepsMaxValue() -->
<function-decl name='GetNumberOfStepsMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetNumberOfStepsMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9768,7 +9780,7 @@
<!-- int vtkLineIntegralConvolution2D::GetNumberOfSteps() -->
<function-decl name='GetNumberOfSteps' mangled-name='_ZN28vtkLineIntegralConvolution2D16GetNumberOfStepsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='190' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9777,7 +9789,7 @@
<!-- void vtkLineIntegralConvolution2D::SetStepSize(double) -->
<function-decl name='SetStepSize' mangled-name='_ZN28vtkLineIntegralConvolution2D11SetStepSizeEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -9788,7 +9800,7 @@
<!-- double vtkLineIntegralConvolution2D::GetStepSizeMinValue() -->
<function-decl name='GetStepSizeMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D19GetStepSizeMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9797,7 +9809,7 @@
<!-- double vtkLineIntegralConvolution2D::GetStepSizeMaxValue() -->
<function-decl name='GetStepSizeMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D19GetStepSizeMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9806,7 +9818,7 @@
<!-- double vtkLineIntegralConvolution2D::GetStepSize() -->
<function-decl name='GetStepSize' mangled-name='_ZN28vtkLineIntegralConvolution2D11GetStepSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9815,7 +9827,7 @@
<!-- int* vtkLineIntegralConvolution2D::GetComponentIds() -->
<function-decl name='GetComponentIds' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetComponentIdsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int* -->
<return type-id='type-id-47'/>
</function-decl>
@@ -9824,7 +9836,7 @@
<!-- void vtkLineIntegralConvolution2D::GetComponentIds(int&, int&) -->
<function-decl name='GetComponentIds' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetComponentIdsERiS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'int&' -->
<parameter type-id='type-id-52'/>
<!-- parameter of type 'int&' -->
@@ -9837,7 +9849,7 @@
<!-- void vtkLineIntegralConvolution2D::GetComponentIds(int*) -->
<function-decl name='GetComponentIds' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetComponentIdsEPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'int*' -->
<parameter type-id='type-id-47'/>
<!-- void -->
@@ -9848,7 +9860,7 @@
<!-- void vtkLineIntegralConvolution2D::SetMaxNoiseValue(double) -->
<function-decl name='SetMaxNoiseValue' mangled-name='_ZN28vtkLineIntegralConvolution2D16SetMaxNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -9859,7 +9871,7 @@
<!-- double vtkLineIntegralConvolution2D::GetMaxNoiseValueMinValue() -->
<function-decl name='GetMaxNoiseValueMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetMaxNoiseValueMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9868,7 +9880,7 @@
<!-- double vtkLineIntegralConvolution2D::GetMaxNoiseValueMaxValue() -->
<function-decl name='GetMaxNoiseValueMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetMaxNoiseValueMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9877,7 +9889,7 @@
<!-- double vtkLineIntegralConvolution2D::GetMaxNoiseValue() -->
<function-decl name='GetMaxNoiseValue' mangled-name='_ZN28vtkLineIntegralConvolution2D16GetMaxNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9886,7 +9898,7 @@
<!-- int vtkLineIntegralConvolution2D::GetTransformVectors() -->
<function-decl name='GetTransformVectors' mangled-name='_ZN28vtkLineIntegralConvolution2D19GetTransformVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9895,7 +9907,7 @@
<!-- int vtkLineIntegralConvolution2D::GetNormalizeVectors() -->
<function-decl name='GetNormalizeVectors' mangled-name='_ZN28vtkLineIntegralConvolution2D19GetNormalizeVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='243' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -9904,7 +9916,7 @@
<!-- void vtkLineIntegralConvolution2D::SetMaskThreshold(double) -->
<function-decl name='SetMaskThreshold' mangled-name='_ZN28vtkLineIntegralConvolution2D16SetMaskThresholdEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -9915,7 +9927,7 @@
<!-- double vtkLineIntegralConvolution2D::GetMaskThresholdMinValue() -->
<function-decl name='GetMaskThresholdMinValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetMaskThresholdMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9924,7 +9936,7 @@
<!-- double vtkLineIntegralConvolution2D::GetMaskThresholdMaxValue() -->
<function-decl name='GetMaskThresholdMaxValue' mangled-name='_ZN28vtkLineIntegralConvolution2D24GetMaskThresholdMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9933,7 +9945,7 @@
<!-- double vtkLineIntegralConvolution2D::GetMaskThreshold() -->
<function-decl name='GetMaskThreshold' mangled-name='_ZN28vtkLineIntegralConvolution2D16GetMaskThresholdEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -9942,9 +9954,9 @@
<!-- void vtkLineIntegralConvolution2D::SetCommunicator(vtkPainterCommunicator*) -->
<function-decl name='SetCommunicator' mangled-name='_ZN28vtkLineIntegralConvolution2D15SetCommunicatorEP22vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='308' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320'/>
+ <parameter type-id='type-id-321'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9953,22 +9965,22 @@
<!-- vtkPainterCommunicator* vtkLineIntegralConvolution2D::GetCommunicator() -->
<function-decl name='GetCommunicator' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='1014' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN28vtkLineIntegralConvolution2D15GetCommunicatorEv'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- vtkPainterCommunicator* -->
- <return type-id='type-id-320'/>
+ <return type-id='type-id-321'/>
</function-decl>
</member-function>
<member-function access='private' vtable-offset='69'>
<!-- void vtkLineIntegralConvolution2D::GetGlobalMinMax(vtkPainterCommunicator*, float&, float&) -->
<function-decl name='GetGlobalMinMax' mangled-name='_ZN28vtkLineIntegralConvolution2D15GetGlobalMinMaxEP22vtkPainterCommunicatorRfS2_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320'/>
+ <parameter type-id='type-id-321'/>
<!-- parameter of type 'float&' -->
- <parameter type-id='type-id-386'/>
+ <parameter type-id='type-id-387'/>
<!-- parameter of type 'float&' -->
- <parameter type-id='type-id-386'/>
+ <parameter type-id='type-id-387'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -9977,7 +9989,7 @@
<!-- void vtkLineIntegralConvolution2D::WriteTimerLog(const char*) -->
<function-decl name='WriteTimerLog' mangled-name='_ZN28vtkLineIntegralConvolution2D13WriteTimerLogEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='325' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- void -->
@@ -9988,7 +10000,7 @@
<!-- void vtkLineIntegralConvolution2D::StartTimerEvent(const char*) -->
<function-decl name='StartTimerEvent' mangled-name='_ZN28vtkLineIntegralConvolution2D15StartTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='358' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- void -->
@@ -9999,7 +10011,7 @@
<!-- void vtkLineIntegralConvolution2D::EndTimerEvent(const char*) -->
<function-decl name='EndTimerEvent' mangled-name='_ZN28vtkLineIntegralConvolution2D13EndTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.h' line='359' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413' is-artificial='yes'/>
+ <parameter type-id='type-id-414' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- void -->
@@ -10010,7 +10022,7 @@
<!-- namespace __gnu_cxx -->
<namespace-decl name='__gnu_cxx'>
<!-- class __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > -->
- <class-decl name='__normal_iterator<float*, std::vector<float, std::allocator<float> > >' size-in-bits='64' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='669' column='1' id='type-id-429'>
+ <class-decl name='__normal_iterator<float*, std::vector<float, std::allocator<float> > >' size-in-bits='64' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='669' column='1' id='type-id-430'>
<data-member access='protected' layout-offset-in-bits='0'>
<!-- float* __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >::_M_current -->
<var-decl name='_M_current' type-id='type-id-55' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='671' column='1'/>
@@ -10019,7 +10031,7 @@
<!-- void __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >::__normal_iterator() -->
<function-decl name='__normal_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='683' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >*' -->
- <parameter type-id='type-id-439' is-artificial='yes'/>
+ <parameter type-id='type-id-440' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -10028,9 +10040,9 @@
<!-- void __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >::__normal_iterator(float* const&) -->
<function-decl name='__normal_iterator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='686' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >*' -->
- <parameter type-id='type-id-439' is-artificial='yes'/>
+ <parameter type-id='type-id-440' is-artificial='yes'/>
<!-- parameter of type 'float* const&' -->
- <parameter type-id='type-id-440'/>
+ <parameter type-id='type-id-441'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -10039,19 +10051,19 @@
<!-- float* const& __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >::base() -->
<function-decl name='base' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPfSt6vectorIfSaIfEEE4baseEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='750' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >*' -->
- <parameter type-id='type-id-441' is-artificial='yes'/>
+ <parameter type-id='type-id-442' is-artificial='yes'/>
<!-- float* const& -->
- <return type-id='type-id-440'/>
+ <return type-id='type-id-441'/>
</function-decl>
</member-function>
</class-decl>
<!-- class __gnu_cxx::new_allocator<char> -->
- <class-decl name='new_allocator<char>' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-323'>
+ <class-decl name='new_allocator<char>' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-324'>
<member-function access='private'>
<!-- void __gnu_cxx::new_allocator<char>::new_allocator() -->
<function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<char>*' -->
- <parameter type-id='type-id-324' is-artificial='yes'/>
+ <parameter type-id='type-id-325' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -10060,9 +10072,9 @@
<!-- void __gnu_cxx::new_allocator<char>::new_allocator(const __gnu_cxx::new_allocator<char>&) -->
<function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<char>*' -->
- <parameter type-id='type-id-324' is-artificial='yes'/>
+ <parameter type-id='type-id-325' is-artificial='yes'/>
<!-- parameter of type 'const __gnu_cxx::new_allocator<char>&' -->
- <parameter type-id='type-id-333'/>
+ <parameter type-id='type-id-334'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -10071,7 +10083,7 @@
<!-- __gnu_cxx::new_allocator<char>::~new_allocator(int) -->
<function-decl name='~new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<char>*' -->
- <parameter type-id='type-id-324' is-artificial='yes'/>
+ <parameter type-id='type-id-325' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -10080,12 +10092,12 @@
</member-function>
</class-decl>
<!-- class __gnu_cxx::new_allocator<float> -->
- <class-decl name='new_allocator<float>' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-325'>
+ <class-decl name='new_allocator<float>' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-326'>
<member-function access='private'>
<!-- void __gnu_cxx::new_allocator<float>::new_allocator() -->
<function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<float>*' -->
- <parameter type-id='type-id-326' is-artificial='yes'/>
+ <parameter type-id='type-id-327' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -10094,9 +10106,9 @@
<!-- void __gnu_cxx::new_allocator<float>::new_allocator(const __gnu_cxx::new_allocator<float>&) -->
<function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<float>*' -->
- <parameter type-id='type-id-326' is-artificial='yes'/>
+ <parameter type-id='type-id-327' is-artificial='yes'/>
<!-- parameter of type 'const __gnu_cxx::new_allocator<float>&' -->
- <parameter type-id='type-id-336'/>
+ <parameter type-id='type-id-337'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -10105,7 +10117,7 @@
<!-- __gnu_cxx::new_allocator<float>::~new_allocator(int) -->
<function-decl name='~new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<float>*' -->
- <parameter type-id='type-id-326' is-artificial='yes'/>
+ <parameter type-id='type-id-327' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -10116,7 +10128,7 @@
<!-- size_t __gnu_cxx::new_allocator<float>::max_size() -->
<function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx13new_allocatorIfE8max_sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const __gnu_cxx::new_allocator<float>*' -->
- <parameter type-id='type-id-337' is-artificial='yes'/>
+ <parameter type-id='type-id-338' is-artificial='yes'/>
<!-- typedef size_t -->
<return type-id='type-id-50'/>
</function-decl>
@@ -10125,7 +10137,7 @@
<!-- float* __gnu_cxx::new_allocator<float>::allocate(unsigned long int, void*) -->
<function-decl name='allocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIfE8allocateEmPKv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<float>*' -->
- <parameter type-id='type-id-326' is-artificial='yes'/>
+ <parameter type-id='type-id-327' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'void*' -->
@@ -10138,7 +10150,7 @@
<!-- void __gnu_cxx::new_allocator<float>::deallocate(float*, unsigned long int) -->
<function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIfE10deallocateEPfm' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<float>*' -->
- <parameter type-id='type-id-326' is-artificial='yes'/>
+ <parameter type-id='type-id-327' is-artificial='yes'/>
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- parameter of type 'unsigned long int' -->
@@ -10149,12 +10161,12 @@
</member-function>
</class-decl>
<!-- class __gnu_cxx::new_allocator<vtkPixelBufferObject*> -->
- <class-decl name='new_allocator<vtkPixelBufferObject*>' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-327'>
+ <class-decl name='new_allocator<vtkPixelBufferObject*>' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='52' column='1' id='type-id-328'>
<member-function access='private'>
<!-- void __gnu_cxx::new_allocator<vtkPixelBufferObject*>::new_allocator() -->
<function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<vtkPixelBufferObject*>*' -->
- <parameter type-id='type-id-328' is-artificial='yes'/>
+ <parameter type-id='type-id-329' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -10163,9 +10175,9 @@
<!-- void __gnu_cxx::new_allocator<vtkPixelBufferObject*>::new_allocator(const __gnu_cxx::new_allocator<vtkPixelBufferObject*>&) -->
<function-decl name='new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<vtkPixelBufferObject*>*' -->
- <parameter type-id='type-id-328' is-artificial='yes'/>
+ <parameter type-id='type-id-329' is-artificial='yes'/>
<!-- parameter of type 'const __gnu_cxx::new_allocator<vtkPixelBufferObject*>&' -->
- <parameter type-id='type-id-339'/>
+ <parameter type-id='type-id-340'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -10174,7 +10186,7 @@
<!-- __gnu_cxx::new_allocator<vtkPixelBufferObject*>::~new_allocator(int) -->
<function-decl name='~new_allocator' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<vtkPixelBufferObject*>*' -->
- <parameter type-id='type-id-328' is-artificial='yes'/>
+ <parameter type-id='type-id-329' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -10185,7 +10197,7 @@
<!-- size_t __gnu_cxx::new_allocator<vtkPixelBufferObject*>::max_size() -->
<function-decl name='max_size' mangled-name='_ZNK9__gnu_cxx13new_allocatorIP20vtkPixelBufferObjectE8max_sizeEv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const __gnu_cxx::new_allocator<vtkPixelBufferObject*>*' -->
- <parameter type-id='type-id-340' is-artificial='yes'/>
+ <parameter type-id='type-id-341' is-artificial='yes'/>
<!-- typedef size_t -->
<return type-id='type-id-50'/>
</function-decl>
@@ -10194,22 +10206,22 @@
<!-- vtkPixelBufferObject** __gnu_cxx::new_allocator<vtkPixelBufferObject*>::allocate(unsigned long int, void*) -->
<function-decl name='allocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIP20vtkPixelBufferObjectE8allocateEmPKv' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<vtkPixelBufferObject*>*' -->
- <parameter type-id='type-id-328' is-artificial='yes'/>
+ <parameter type-id='type-id-329' is-artificial='yes'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'void*' -->
<parameter type-id='type-id-14'/>
<!-- vtkPixelBufferObject** -->
- <return type-id='type-id-281'/>
+ <return type-id='type-id-282'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- void __gnu_cxx::new_allocator<vtkPixelBufferObject*>::deallocate(vtkPixelBufferObject**, unsigned long int) -->
<function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx13new_allocatorIP20vtkPixelBufferObjectE10deallocateEPS2_m' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/new_allocator.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type '__gnu_cxx::new_allocator<vtkPixelBufferObject*>*' -->
- <parameter type-id='type-id-328' is-artificial='yes'/>
+ <parameter type-id='type-id-329' is-artificial='yes'/>
<!-- parameter of type 'vtkPixelBufferObject**' -->
- <parameter type-id='type-id-281'/>
+ <parameter type-id='type-id-282'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- void -->
@@ -10218,15 +10230,15 @@
</member-function>
</class-decl>
<!-- class __gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > -->
- <class-decl name='__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >' visibility='default' is-declaration-only='yes' id='type-id-442'/>
+ <class-decl name='__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >' visibility='default' is-declaration-only='yes' id='type-id-443'/>
<!-- class __gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > -->
- <class-decl name='__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >' visibility='default' is-declaration-only='yes' id='type-id-443'/>
+ <class-decl name='__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >' visibility='default' is-declaration-only='yes' id='type-id-444'/>
<!-- class __gnu_cxx::__normal_iterator<const float*, std::vector<float, std::allocator<float> > > -->
- <class-decl name='__normal_iterator<const float*, std::vector<float, std::allocator<float> > >' visibility='default' is-declaration-only='yes' id='type-id-444'/>
+ <class-decl name='__normal_iterator<const float*, std::vector<float, std::allocator<float> > >' visibility='default' is-declaration-only='yes' id='type-id-445'/>
<!-- class __gnu_cxx::__normal_iterator<vtkPixelBufferObject* const*, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > > -->
- <class-decl name='__normal_iterator<vtkPixelBufferObject* const*, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > >' visibility='default' is-declaration-only='yes' id='type-id-445'/>
+ <class-decl name='__normal_iterator<vtkPixelBufferObject* const*, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > >' visibility='default' is-declaration-only='yes' id='type-id-446'/>
<!-- class __gnu_cxx::__normal_iterator<vtkPixelBufferObject**, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > > -->
- <class-decl name='__normal_iterator<vtkPixelBufferObject**, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > >' visibility='default' is-declaration-only='yes' id='type-id-446'/>
+ <class-decl name='__normal_iterator<vtkPixelBufferObject**, std::vector<vtkPixelBufferObject*, std::allocator<vtkPixelBufferObject*> > >' visibility='default' is-declaration-only='yes' id='type-id-447'/>
<!-- bool __gnu_cxx::__is_null_pointer<char>(char*) -->
<function-decl name='__is_null_pointer<char>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/type_traits.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'char*' -->
@@ -10242,11 +10254,11 @@
</abi-instr>
<abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
<!-- typedef int vtkTypeInt32 -->
- <typedef-decl name='vtkTypeInt32' type-id='type-id-17' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkType.h' line='197' column='1' id='type-id-447'/>
+ <typedef-decl name='vtkTypeInt32' type-id='type-id-17' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkType.h' line='197' column='1' id='type-id-448'/>
<!-- class vtkStructuredGridLIC2D -->
- <class-decl name='vtkStructuredGridLIC2D' size-in-bits='1472' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='51' column='1' id='type-id-448'>
+ <class-decl name='vtkStructuredGridLIC2D' size-in-bits='1472' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='51' column='1' id='type-id-449'>
<!-- class vtkStructuredGridAlgorithm -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-449'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-450'/>
<data-member access='protected' layout-offset-in-bits='1024'>
<!-- int vtkStructuredGridLIC2D::Steps -->
<var-decl name='Steps' type-id='type-id-17' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='149' column='1'/>
@@ -10287,7 +10299,7 @@
<!-- vtkStructuredGridLIC2D::vtkStructuredGridLIC2D() -->
<function-decl name='vtkStructuredGridLIC2D' mangled-name='_ZN22vtkStructuredGridLIC2DC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='52' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2DC1Ev'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -10296,9 +10308,9 @@
<!-- vtkStructuredGridLIC2D::vtkStructuredGridLIC2D(const vtkStructuredGridLIC2D&) -->
<function-decl name='vtkStructuredGridLIC2D' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'const vtkStructuredGridLIC2D&' -->
- <parameter type-id='type-id-451'/>
+ <parameter type-id='type-id-452'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -10316,7 +10328,7 @@
<!-- vtkRenderWindow* vtkStructuredGridLIC2D::GetContext() -->
<function-decl name='GetContext' mangled-name='_ZN22vtkStructuredGridLIC2D10GetContextEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D10GetContextEv'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- vtkRenderWindow* -->
<return type-id='type-id-35'/>
</function-decl>
@@ -10325,9 +10337,9 @@
<!-- void vtkStructuredGridLIC2D::AllocateScalars(vtkStructuredGrid*, vtkInformation*) -->
<function-decl name='AllocateScalars' mangled-name='_ZN22vtkStructuredGridLIC2D15AllocateScalarsEP17vtkStructuredGridP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D15AllocateScalarsEP17vtkStructuredGridP14vtkInformation'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'vtkStructuredGrid*' -->
- <parameter type-id='type-id-452'/>
+ <parameter type-id='type-id-453'/>
<!-- parameter of type 'vtkInformation*' -->
<parameter type-id='type-id-237'/>
<!-- void -->
@@ -10338,7 +10350,7 @@
<!-- int vtkStructuredGridLIC2D::SetContext(vtkRenderWindow*) -->
<function-decl name='SetContext' mangled-name='_ZN22vtkStructuredGridLIC2D10SetContextEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='85' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D10SetContextEP15vtkRenderWindow'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderWindow*' -->
<parameter type-id='type-id-35'/>
<!-- int -->
@@ -10349,14 +10361,14 @@
<!-- vtkStructuredGridLIC2D* vtkStructuredGridLIC2D::New() -->
<function-decl name='New' mangled-name='_ZN22vtkStructuredGridLIC2D3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='50' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D3NewEv'>
<!-- vtkStructuredGridLIC2D* -->
- <return type-id='type-id-450'/>
+ <return type-id='type-id-451'/>
</function-decl>
</member-function>
<member-function access='protected'>
<!-- void vtkStructuredGridLIC2D::AllocateOutputData(vtkDataObject*, vtkInformation*) -->
<function-decl name='AllocateOutputData' mangled-name='_ZN22vtkStructuredGridLIC2D18AllocateOutputDataEP13vtkDataObjectP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='288' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D18AllocateOutputDataEP13vtkDataObjectP14vtkInformation'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'vtkDataObject*' -->
<parameter type-id='type-id-229'/>
<!-- parameter of type 'vtkInformation*' -->
@@ -10369,7 +10381,7 @@
<!-- vtkStructuredGridLIC2D::~vtkStructuredGridLIC2D(int) -->
<function-decl name='~vtkStructuredGridLIC2D' mangled-name='_ZN22vtkStructuredGridLIC2DD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='72' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2DD1Ev'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -10380,7 +10392,7 @@
<!-- const char* vtkStructuredGridLIC2D::GetClassNameInternal() -->
<function-decl name='GetClassNameInternal' mangled-name='_ZNK22vtkStructuredGridLIC2D20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-453' is-artificial='yes'/>
+ <parameter type-id='type-id-454' is-artificial='yes'/>
<!-- const char* -->
<return type-id='type-id-64'/>
</function-decl>
@@ -10389,7 +10401,7 @@
<!-- int vtkStructuredGridLIC2D::IsA(const char*) -->
<function-decl name='IsA' mangled-name='_ZN22vtkStructuredGridLIC2D3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- int -->
@@ -10400,7 +10412,7 @@
<!-- void vtkStructuredGridLIC2D::PrintSelf(std::ostream&, vtkIndent) -->
<function-decl name='PrintSelf' mangled-name='_ZN22vtkStructuredGridLIC2D9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='840' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D9PrintSelfERSo9vtkIndent'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'std::ostream&' -->
<parameter type-id='type-id-67'/>
<!-- parameter of type 'class vtkIndent' -->
@@ -10413,7 +10425,7 @@
<!-- vtkObjectBase* vtkStructuredGridLIC2D::NewInstanceInternal() -->
<function-decl name='NewInstanceInternal' mangled-name='_ZNK22vtkStructuredGridLIC2D19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-453' is-artificial='yes'/>
+ <parameter type-id='type-id-454' is-artificial='yes'/>
<!-- vtkObjectBase* -->
<return type-id='type-id-41'/>
</function-decl>
@@ -10422,7 +10434,7 @@
<!-- int vtkStructuredGridLIC2D::FillInputPortInformation(int, vtkInformation*) -->
<function-decl name='FillInputPortInformation' mangled-name='_ZN22vtkStructuredGridLIC2D24FillInputPortInformationEiP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D24FillInputPortInformationEiP14vtkInformation'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- parameter of type 'vtkInformation*' -->
@@ -10435,7 +10447,7 @@
<!-- int vtkStructuredGridLIC2D::FillOutputPortInformation(int, vtkInformation*) -->
<function-decl name='FillOutputPortInformation' mangled-name='_ZN22vtkStructuredGridLIC2D25FillOutputPortInformationEiP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D25FillOutputPortInformationEiP14vtkInformation'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- parameter of type 'vtkInformation*' -->
@@ -10448,7 +10460,7 @@
<!-- int vtkStructuredGridLIC2D::RequestInformation(vtkInformation*, vtkInformationVector**, vtkInformationVector*) -->
<function-decl name='RequestInformation' mangled-name='_ZN22vtkStructuredGridLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='186' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'vtkInformation*' -->
<parameter type-id='type-id-237'/>
<!-- parameter of type 'vtkInformationVector**' -->
@@ -10463,7 +10475,7 @@
<!-- int vtkStructuredGridLIC2D::RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) -->
<function-decl name='RequestData' mangled-name='_ZN22vtkStructuredGridLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'vtkInformation*' -->
<parameter type-id='type-id-237'/>
<!-- parameter of type 'vtkInformationVector**' -->
@@ -10478,7 +10490,7 @@
<!-- int vtkStructuredGridLIC2D::RequestUpdateExtent(vtkInformation*, vtkInformationVector**, vtkInformationVector*) -->
<function-decl name='RequestUpdateExtent' mangled-name='_ZN22vtkStructuredGridLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='235' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkStructuredGridLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'vtkInformation*' -->
<parameter type-id='type-id-237'/>
<!-- parameter of type 'vtkInformationVector**' -->
@@ -10493,7 +10505,7 @@
<!-- void vtkStructuredGridLIC2D::SetSteps(int) -->
<function-decl name='SetSteps' mangled-name='_ZN22vtkStructuredGridLIC2D8SetStepsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -10504,7 +10516,7 @@
<!-- int vtkStructuredGridLIC2D::GetSteps() -->
<function-decl name='GetSteps' mangled-name='_ZN22vtkStructuredGridLIC2D8GetStepsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -10513,7 +10525,7 @@
<!-- void vtkStructuredGridLIC2D::SetStepSize(double) -->
<function-decl name='SetStepSize' mangled-name='_ZN22vtkStructuredGridLIC2D11SetStepSizeEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -10524,7 +10536,7 @@
<!-- double vtkStructuredGridLIC2D::GetStepSize() -->
<function-decl name='GetStepSize' mangled-name='_ZN22vtkStructuredGridLIC2D11GetStepSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -10533,7 +10545,7 @@
<!-- void vtkStructuredGridLIC2D::SetMagnification(int) -->
<function-decl name='SetMagnification' mangled-name='_ZN22vtkStructuredGridLIC2D16SetMagnificationEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -10544,7 +10556,7 @@
<!-- int vtkStructuredGridLIC2D::GetMagnificationMinValue() -->
<function-decl name='GetMagnificationMinValue' mangled-name='_ZN22vtkStructuredGridLIC2D24GetMagnificationMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -10553,7 +10565,7 @@
<!-- int vtkStructuredGridLIC2D::GetMagnificationMaxValue() -->
<function-decl name='GetMagnificationMaxValue' mangled-name='_ZN22vtkStructuredGridLIC2D24GetMagnificationMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -10562,7 +10574,7 @@
<!-- int vtkStructuredGridLIC2D::GetMagnification() -->
<function-decl name='GetMagnification' mangled-name='_ZN22vtkStructuredGridLIC2D16GetMagnificationEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -10571,21 +10583,21 @@
<!-- int vtkStructuredGridLIC2D::GetOpenGLExtensionsSupported() -->
<function-decl name='GetOpenGLExtensionsSupported' mangled-name='_ZN22vtkStructuredGridLIC2D28GetOpenGLExtensionsSupportedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkStructuredGridLIC2D*' -->
- <parameter type-id='type-id-450' is-artificial='yes'/>
+ <parameter type-id='type-id-451' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkAtomicInt<int> -->
- <class-decl name='vtkAtomicInt<int>' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='308' column='1' id='type-id-454'>
+ <class-decl name='vtkAtomicInt<int>' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='308' column='1' id='type-id-455'>
<!-- class detail::vtkAtomicIntImpl<int> -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-455'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-456'/>
<member-function access='private'>
<!-- void vtkAtomicInt<int>::vtkAtomicInt() -->
<function-decl name='vtkAtomicInt' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkAtomicInt<int>*' -->
- <parameter type-id='type-id-456' is-artificial='yes'/>
+ <parameter type-id='type-id-457' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -10594,7 +10606,7 @@
<!-- void vtkAtomicInt<int>::vtkAtomicInt(int) -->
<function-decl name='vtkAtomicInt' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='321' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkAtomicInt<int>*' -->
- <parameter type-id='type-id-456' is-artificial='yes'/>
+ <parameter type-id='type-id-457' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -10605,45 +10617,45 @@
<!-- int vtkAtomicInt<int>::operator int() -->
<function-decl name='operator int' mangled-name='_ZNK12vtkAtomicIntIiEcviEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='363' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkAtomicInt<int>*' -->
- <parameter type-id='type-id-457' is-artificial='yes'/>
+ <parameter type-id='type-id-458' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
</member-function>
</class-decl>
<!-- const detail::vtkAtomicIntImpl<int> -->
- <qualified-type-def type-id='type-id-455' const='yes' id='type-id-458'/>
+ <qualified-type-def type-id='type-id-456' const='yes' id='type-id-459'/>
<!-- const detail::vtkAtomicIntImpl<int>* -->
- <pointer-type-def type-id='type-id-458' size-in-bits='64' id='type-id-459'/>
+ <pointer-type-def type-id='type-id-459' size-in-bits='64' id='type-id-460'/>
<!-- const vtkAtomicInt<int> -->
- <qualified-type-def type-id='type-id-454' const='yes' id='type-id-460'/>
+ <qualified-type-def type-id='type-id-455' const='yes' id='type-id-461'/>
<!-- const vtkAtomicInt<int>* -->
- <pointer-type-def type-id='type-id-460' size-in-bits='64' id='type-id-457'/>
+ <pointer-type-def type-id='type-id-461' size-in-bits='64' id='type-id-458'/>
<!-- const vtkStructuredGridLIC2D -->
- <qualified-type-def type-id='type-id-448' const='yes' id='type-id-461'/>
+ <qualified-type-def type-id='type-id-449' const='yes' id='type-id-462'/>
<!-- const vtkStructuredGridLIC2D& -->
- <reference-type-def kind='lvalue' type-id='type-id-461' size-in-bits='64' id='type-id-451'/>
+ <reference-type-def kind='lvalue' type-id='type-id-462' size-in-bits='64' id='type-id-452'/>
<!-- const vtkStructuredGridLIC2D* -->
- <pointer-type-def type-id='type-id-461' size-in-bits='64' id='type-id-453'/>
+ <pointer-type-def type-id='type-id-462' size-in-bits='64' id='type-id-454'/>
<!-- detail::vtkAtomicIntImpl<int>* -->
- <pointer-type-def type-id='type-id-455' size-in-bits='64' id='type-id-462'/>
+ <pointer-type-def type-id='type-id-456' size-in-bits='64' id='type-id-463'/>
<!-- vtkAtomicInt<int>* -->
- <pointer-type-def type-id='type-id-454' size-in-bits='64' id='type-id-456'/>
+ <pointer-type-def type-id='type-id-455' size-in-bits='64' id='type-id-457'/>
<!-- vtkFrameBufferObject* -->
- <pointer-type-def type-id='type-id-463' size-in-bits='64' id='type-id-464'/>
+ <pointer-type-def type-id='type-id-464' size-in-bits='64' id='type-id-465'/>
<!-- vtkPoints* -->
- <pointer-type-def type-id='type-id-465' size-in-bits='64' id='type-id-466'/>
+ <pointer-type-def type-id='type-id-466' size-in-bits='64' id='type-id-467'/>
<!-- vtkStructuredGrid* -->
- <pointer-type-def type-id='type-id-467' size-in-bits='64' id='type-id-452'/>
+ <pointer-type-def type-id='type-id-468' size-in-bits='64' id='type-id-453'/>
<!-- vtkStructuredGridLIC2D* -->
- <pointer-type-def type-id='type-id-448' size-in-bits='64' id='type-id-450'/>
+ <pointer-type-def type-id='type-id-449' size-in-bits='64' id='type-id-451'/>
<!-- class vtkFrameBufferObject -->
- <class-decl name='vtkFrameBufferObject' visibility='default' is-declaration-only='yes' id='type-id-463'>
+ <class-decl name='vtkFrameBufferObject' visibility='default' is-declaration-only='yes' id='type-id-464'>
<member-function access='private'>
<!-- void vtkFrameBufferObject::SetActiveBuffer(unsigned int) -->
<function-decl name='SetActiveBuffer' mangled-name='_ZN20vtkFrameBufferObject15SetActiveBufferEj' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/OpenGL/vtkFrameBufferObject.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkFrameBufferObject*' -->
- <parameter type-id='type-id-464' is-artificial='yes'/>
+ <parameter type-id='type-id-465' is-artificial='yes'/>
<!-- parameter of type 'unsigned int' -->
<parameter type-id='type-id-13'/>
<!-- void -->
@@ -10652,19 +10664,19 @@
</member-function>
</class-decl>
<!-- class vtkPoints -->
- <class-decl name='vtkPoints' visibility='default' is-declaration-only='yes' id='type-id-465'>
+ <class-decl name='vtkPoints' visibility='default' is-declaration-only='yes' id='type-id-466'>
<member-function access='private'>
<!-- vtkDataArray* vtkPoints::GetData() -->
<function-decl name='GetData' mangled-name='_ZN9vtkPoints7GetDataEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkPoints.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPoints*' -->
- <parameter type-id='type-id-466' is-artificial='yes'/>
+ <parameter type-id='type-id-467' is-artificial='yes'/>
<!-- vtkDataArray* -->
<return type-id='type-id-225'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkStructuredExtent -->
- <class-decl name='vtkStructuredExtent' visibility='default' is-declaration-only='yes' id='type-id-468'>
+ <class-decl name='vtkStructuredExtent' visibility='default' is-declaration-only='yes' id='type-id-469'>
<member-function access='private' static='yes'>
<!-- void vtkStructuredExtent::GetDimensions(int*) -->
<function-decl name='GetDimensions' mangled-name='_ZN19vtkStructuredExtent13GetDimensionsEPKiPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkStructuredExtent.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10678,19 +10690,19 @@
</member-function>
</class-decl>
<!-- class vtkStructuredGrid -->
- <class-decl name='vtkStructuredGrid' visibility='default' is-declaration-only='yes' id='type-id-467'>
+ <class-decl name='vtkStructuredGrid' visibility='default' is-declaration-only='yes' id='type-id-468'>
<member-function access='private' static='yes'>
<!-- vtkStructuredGrid* vtkStructuredGrid::SafeDownCast() -->
<function-decl name='SafeDownCast' mangled-name='_ZN17vtkStructuredGrid12SafeDownCastEP13vtkObjectBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkStructuredGrid.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'vtkObjectBase*' -->
<parameter type-id='type-id-41'/>
<!-- vtkStructuredGrid* -->
- <return type-id='type-id-452'/>
+ <return type-id='type-id-453'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkStructuredGridAlgorithm -->
- <class-decl name='vtkStructuredGridAlgorithm' visibility='default' is-declaration-only='yes' id='type-id-449'>
+ <class-decl name='vtkStructuredGridAlgorithm' visibility='default' is-declaration-only='yes' id='type-id-450'>
<member-function access='private' static='yes'>
<!-- int vtkStructuredGridAlgorithm::IsTypeOf() -->
<function-decl name='IsTypeOf' mangled-name='_ZN26vtkStructuredGridAlgorithm8IsTypeOfEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/ExecutionModel/vtkStructuredGridAlgorithm.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10704,18 +10716,18 @@
<!-- namespace detail -->
<namespace-decl name='detail'>
<!-- class detail::vtkAtomicIntImpl<int> -->
- <class-decl name='vtkAtomicIntImpl<int>' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='85' column='1' id='type-id-455'>
+ <class-decl name='vtkAtomicIntImpl<int>' size-in-bits='32' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='85' column='1' id='type-id-456'>
<data-member access='protected' layout-offset-in-bits='0'>
<!-- vtkTypeInt32 detail::vtkAtomicIntImpl<int>::Value -->
- <var-decl name='Value' type-id='type-id-447' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='182' column='1'/>
+ <var-decl name='Value' type-id='type-id-448' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='182' column='1'/>
</data-member>
<member-function access='private'>
<!-- vtkTypeInt32 detail::vtkAtomicIntImpl<int>::load() -->
<function-decl name='load' mangled-name='_ZNK6detail16vtkAtomicIntImplIiE4loadEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Common/Core/vtkAtomicInt.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const detail::vtkAtomicIntImpl<int>*' -->
- <parameter type-id='type-id-459' is-artificial='yes'/>
+ <parameter type-id='type-id-460' is-artificial='yes'/>
<!-- typedef vtkTypeInt32 -->
- <return type-id='type-id-447'/>
+ <return type-id='type-id-448'/>
</function-decl>
</member-function>
</class-decl>
@@ -10723,47 +10735,47 @@
</abi-instr>
<abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
<!-- __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >& -->
- <reference-type-def kind='lvalue' type-id='type-id-429' size-in-bits='64' id='type-id-469'/>
+ <reference-type-def kind='lvalue' type-id='type-id-430' size-in-bits='64' id='type-id-470'/>
<!-- __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >* -->
- <pointer-type-def type-id='type-id-429' size-in-bits='64' id='type-id-439'/>
+ <pointer-type-def type-id='type-id-430' size-in-bits='64' id='type-id-440'/>
<!-- const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > -->
- <qualified-type-def type-id='type-id-429' const='yes' id='type-id-470'/>
+ <qualified-type-def type-id='type-id-430' const='yes' id='type-id-471'/>
<!-- const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >& -->
- <reference-type-def kind='lvalue' type-id='type-id-470' size-in-bits='64' id='type-id-471'/>
+ <reference-type-def kind='lvalue' type-id='type-id-471' size-in-bits='64' id='type-id-472'/>
<!-- const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >* -->
- <pointer-type-def type-id='type-id-470' size-in-bits='64' id='type-id-441'/>
+ <pointer-type-def type-id='type-id-471' size-in-bits='64' id='type-id-442'/>
<!-- const ptrdiff_t -->
- <qualified-type-def type-id='type-id-105' const='yes' id='type-id-472'/>
+ <qualified-type-def type-id='type-id-105' const='yes' id='type-id-473'/>
<!-- const ptrdiff_t& -->
- <reference-type-def kind='lvalue' type-id='type-id-472' size-in-bits='64' id='type-id-473'/>
+ <reference-type-def kind='lvalue' type-id='type-id-473' size-in-bits='64' id='type-id-474'/>
<!-- const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
- <qualified-type-def type-id='type-id-282' const='yes' id='type-id-474'/>
+ <qualified-type-def type-id='type-id-283' const='yes' id='type-id-475'/>
<!-- const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>& -->
- <reference-type-def kind='lvalue' type-id='type-id-474' size-in-bits='64' id='type-id-475'/>
+ <reference-type-def kind='lvalue' type-id='type-id-475' size-in-bits='64' id='type-id-476'/>
<!-- const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>* -->
- <pointer-type-def type-id='type-id-474' size-in-bits='64' id='type-id-284'/>
+ <pointer-type-def type-id='type-id-475' size-in-bits='64' id='type-id-285'/>
<!-- const vtkSurfaceLICComposite -->
- <qualified-type-def type-id='type-id-476' const='yes' id='type-id-477'/>
+ <qualified-type-def type-id='type-id-477' const='yes' id='type-id-478'/>
<!-- const vtkSurfaceLICComposite& -->
- <reference-type-def kind='lvalue' type-id='type-id-477' size-in-bits='64' id='type-id-478'/>
+ <reference-type-def kind='lvalue' type-id='type-id-478' size-in-bits='64' id='type-id-479'/>
<!-- const vtkSurfaceLICComposite* -->
- <pointer-type-def type-id='type-id-477' size-in-bits='64' id='type-id-479'/>
+ <pointer-type-def type-id='type-id-478' size-in-bits='64' id='type-id-480'/>
<!-- float* const -->
- <qualified-type-def type-id='type-id-55' const='yes' id='type-id-480'/>
+ <qualified-type-def type-id='type-id-55' const='yes' id='type-id-481'/>
<!-- float* const& -->
- <reference-type-def kind='lvalue' type-id='type-id-480' size-in-bits='64' id='type-id-440'/>
+ <reference-type-def kind='lvalue' type-id='type-id-481' size-in-bits='64' id='type-id-441'/>
<!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>& -->
- <reference-type-def kind='lvalue' type-id='type-id-282' size-in-bits='64' id='type-id-285'/>
+ <reference-type-def kind='lvalue' type-id='type-id-283' size-in-bits='64' id='type-id-286'/>
<!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>* -->
- <pointer-type-def type-id='type-id-282' size-in-bits='64' id='type-id-283'/>
+ <pointer-type-def type-id='type-id-283' size-in-bits='64' id='type-id-284'/>
<!-- vtkSurfaceLICComposite* -->
- <pointer-type-def type-id='type-id-476' size-in-bits='64' id='type-id-481'/>
+ <pointer-type-def type-id='type-id-477' size-in-bits='64' id='type-id-482'/>
<!-- vtkTextureObject*& -->
- <reference-type-def kind='lvalue' type-id='type-id-316' size-in-bits='64' id='type-id-482'/>
+ <reference-type-def kind='lvalue' type-id='type-id-317' size-in-bits='64' id='type-id-483'/>
<!-- namespace std -->
<namespace-decl name='std'>
<!-- struct std::__iter_swap<true> -->
- <class-decl name='__iter_swap<true>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='96' column='1' id='type-id-483'>
+ <class-decl name='__iter_swap<true>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='96' column='1' id='type-id-484'>
<member-function access='public' static='yes'>
<!-- void std::__iter_swap<true>::iter_swap<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
<function-decl name='iter_swap<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10777,19 +10789,19 @@
</member-function>
</class-decl>
<!-- struct std::__niter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false> -->
- <class-decl name='__niter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-484'>
+ <class-decl name='__niter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-485'>
<member-function access='public' static='yes'>
<!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> std::__niter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false>::__b() -->
<function-decl name='__b' mangled-name='_ZNSt12__niter_baseISt15_Deque_iteratorI14vtkPixelExtentRKS1_PS2_ELb0EE3__bES5_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
- <return type-id='type-id-282'/>
+ <return type-id='type-id-283'/>
</function-decl>
</member-function>
</class-decl>
<!-- struct std::__niter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false> -->
- <class-decl name='__niter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-485'>
+ <class-decl name='__niter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='267' column='1' id='type-id-486'>
<member-function access='public' static='yes'>
<!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__niter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false>::__b() -->
<function-decl name='__b' mangled-name='_ZNSt12__niter_baseISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ELb0EE3__bES4_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10801,7 +10813,7 @@
</member-function>
</class-decl>
<!-- struct std::__miter_base<float*, false> -->
- <class-decl name='__miter_base<float*, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-486'>
+ <class-decl name='__miter_base<float*, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-487'>
<member-function access='public' static='yes'>
<!-- float* std::__miter_base<float*, false>::__b() -->
<function-decl name='__b' mangled-name='_ZNSt12__miter_baseIPfLb0EE3__bES0_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10813,19 +10825,19 @@
</member-function>
</class-decl>
<!-- struct std::__miter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false> -->
- <class-decl name='__miter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-487'>
+ <class-decl name='__miter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-488'>
<member-function access='public' static='yes'>
<!-- std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> std::__miter_base<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, false>::__b() -->
<function-decl name='__b' mangled-name='_ZNSt12__miter_baseISt15_Deque_iteratorI14vtkPixelExtentRKS1_PS2_ELb0EE3__bES5_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> -->
- <return type-id='type-id-282'/>
+ <return type-id='type-id-283'/>
</function-decl>
</member-function>
</class-decl>
<!-- struct std::__miter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false> -->
- <class-decl name='__miter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-488'>
+ <class-decl name='__miter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='285' column='1' id='type-id-489'>
<member-function access='public' static='yes'>
<!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__miter_base<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, false>::__b() -->
<function-decl name='__b' mangled-name='_ZNSt12__miter_baseISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ELb0EE3__bES4_' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10837,14 +10849,14 @@
</member-function>
</class-decl>
<!-- struct std::__copy_move<false, false, std::random_access_iterator_tag> -->
- <class-decl name='__copy_move<false, false, std::random_access_iterator_tag>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='335' column='1' id='type-id-489'>
+ <class-decl name='__copy_move<false, false, std::random_access_iterator_tag>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='335' column='1' id='type-id-490'>
<member-function access='public' static='yes'>
<!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__copy_move<false, false, std::random_access_iterator_tag>::__copy_m<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
<function-decl name='__copy_m<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
@@ -10866,7 +10878,7 @@
</member-function>
</class-decl>
<!-- struct std::__copy_move_backward<false, false, std::random_access_iterator_tag> -->
- <class-decl name='__copy_move_backward<false, false, std::random_access_iterator_tag>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='539' column='1' id='type-id-490'>
+ <class-decl name='__copy_move_backward<false, false, std::random_access_iterator_tag>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='539' column='1' id='type-id-491'>
<member-function access='public' static='yes'>
<!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__copy_move_backward<false, false, std::random_access_iterator_tag>::__copy_move_b<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
<function-decl name='__copy_move_b<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='542' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -10882,14 +10894,14 @@
</member-function>
</class-decl>
<!-- struct std::__uninitialized_copy<false> -->
- <class-decl name='__uninitialized_copy<false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='64' column='1' id='type-id-491'>
+ <class-decl name='__uninitialized_copy<false>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='64' column='1' id='type-id-492'>
<member-function access='public' static='yes'>
<!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__uninitialized_copy<false>::uninitialized_copy<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
<function-decl name='uninitialized_copy<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
@@ -10924,7 +10936,7 @@
</member-function>
</class-decl>
<!-- struct std::__uninitialized_copy<true> -->
- <class-decl name='__uninitialized_copy<true>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='87' column='1' id='type-id-492'>
+ <class-decl name='__uninitialized_copy<true>' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='87' column='1' id='type-id-493'>
<member-function access='public' static='yes'>
<!-- float* std::__uninitialized_copy<true>::uninitialized_copy<float*, float*>(float*, float*) -->
<function-decl name='uninitialized_copy<float*, float*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -11078,9 +11090,9 @@
<!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__copy_move_a<false, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
<function-decl name='__copy_move_a<false, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
@@ -11111,9 +11123,9 @@
<!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__copy_move_a2<false, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
<function-decl name='__copy_move_a2<false, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='431' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
@@ -11144,9 +11156,9 @@
<!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::copy<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
<function-decl name='copy<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='458' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
@@ -11236,7 +11248,7 @@
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- parameter of type 'const float&' -->
- <parameter type-id='type-id-343'/>
+ <parameter type-id='type-id-344'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -11247,16 +11259,16 @@
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- parameter of type 'const float&' -->
- <parameter type-id='type-id-343'/>
+ <parameter type-id='type-id-344'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
<!-- bool std::operator==<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>(const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&, const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&) -->
<function-decl name='operator==<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
- <parameter type-id='type-id-475'/>
+ <parameter type-id='type-id-476'/>
<!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
- <parameter type-id='type-id-475'/>
+ <parameter type-id='type-id-476'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -11272,9 +11284,9 @@
<!-- bool std::operator!=<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>(const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&, const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&) -->
<function-decl name='operator!=<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
- <parameter type-id='type-id-475'/>
+ <parameter type-id='type-id-476'/>
<!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
- <parameter type-id='type-id-475'/>
+ <parameter type-id='type-id-476'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -11299,9 +11311,9 @@
<!-- ptrdiff_t std::operator-<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>(const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&, const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&) -->
<function-decl name='operator-<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_deque.h' line='319' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
- <parameter type-id='type-id-475'/>
+ <parameter type-id='type-id-476'/>
<!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
- <parameter type-id='type-id-475'/>
+ <parameter type-id='type-id-476'/>
<!-- typedef ptrdiff_t -->
<return type-id='type-id-105'/>
</function-decl>
@@ -11363,11 +11375,11 @@
<!-- ptrdiff_t std::__distance<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::random_access_iterator_tag) -->
<function-decl name='__distance<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::random_access_iterator_tag' -->
- <parameter type-id='type-id-427'/>
+ <parameter type-id='type-id-428'/>
<!-- typedef ptrdiff_t -->
<return type-id='type-id-105'/>
</function-decl>
@@ -11378,16 +11390,16 @@
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- parameter of type 'struct std::random_access_iterator_tag' -->
- <parameter type-id='type-id-427'/>
+ <parameter type-id='type-id-428'/>
<!-- typedef ptrdiff_t -->
<return type-id='type-id-105'/>
</function-decl>
<!-- ptrdiff_t std::distance<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>) -->
<function-decl name='distance<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- typedef ptrdiff_t -->
<return type-id='type-id-105'/>
</function-decl>
@@ -11403,11 +11415,11 @@
<!-- void std::__advance<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, long int>(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&, long int, std::random_access_iterator_tag) -->
<function-decl name='__advance<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, long int>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
- <parameter type-id='type-id-285'/>
+ <parameter type-id='type-id-286'/>
<!-- parameter of type 'long int' -->
<parameter type-id='type-id-20'/>
<!-- parameter of type 'struct std::random_access_iterator_tag' -->
- <parameter type-id='type-id-427'/>
+ <parameter type-id='type-id-428'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -11418,14 +11430,14 @@
<!-- parameter of type 'long int' -->
<parameter type-id='type-id-20'/>
<!-- parameter of type 'struct std::random_access_iterator_tag' -->
- <parameter type-id='type-id-427'/>
+ <parameter type-id='type-id-428'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
<!-- void std::advance<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, long int>(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&, long int) -->
<function-decl name='advance<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, long int>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_funcs.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
- <parameter type-id='type-id-285'/>
+ <parameter type-id='type-id-286'/>
<!-- parameter of type 'long int' -->
<parameter type-id='type-id-20'/>
<!-- void -->
@@ -11443,16 +11455,16 @@
<!-- std::random_access_iterator_tag std::__iterator_category<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> >(const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&) -->
<function-decl name='__iterator_category<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>&' -->
- <parameter type-id='type-id-475'/>
+ <parameter type-id='type-id-476'/>
<!-- struct std::random_access_iterator_tag -->
- <return type-id='type-id-427'/>
+ <return type-id='type-id-428'/>
</function-decl>
<!-- std::random_access_iterator_tag std::__iterator_category<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(const std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>&) -->
<function-decl name='__iterator_category<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator_base_types.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'const std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>&' -->
<parameter type-id='type-id-135'/>
<!-- struct std::random_access_iterator_tag -->
- <return type-id='type-id-427'/>
+ <return type-id='type-id-428'/>
</function-decl>
<!-- float* std::uninitialized_copy<float*, float*>(float*, float*, float*) -->
<function-decl name='uninitialized_copy<float*, float*>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -11468,9 +11480,9 @@
<!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::uninitialized_copy<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
<function-decl name='uninitialized_copy<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> -->
@@ -11496,16 +11508,16 @@
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- parameter of type 'std::allocator<float>&' -->
- <parameter type-id='type-id-394'/>
+ <parameter type-id='type-id-395'/>
<!-- float* -->
<return type-id='type-id-55'/>
</function-decl>
<!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__uninitialized_copy_a<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, vtkPixelExtent>(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::allocator<vtkPixelExtent>&) -->
<function-decl name='__uninitialized_copy_a<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, vtkPixelExtent>' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- parameter of type 'std::allocator<vtkPixelExtent>&' -->
@@ -11548,7 +11560,7 @@
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- parameter of type 'std::allocator<float>&' -->
- <parameter type-id='type-id-394'/>
+ <parameter type-id='type-id-395'/>
<!-- float* -->
<return type-id='type-id-55'/>
</function-decl>
@@ -11561,7 +11573,7 @@
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55' name='__result' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
<!-- parameter of type 'std::allocator<float>&' -->
- <parameter type-id='type-id-394' name='__alloc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
+ <parameter type-id='type-id-395' name='__alloc' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='262' column='1'/>
<!-- float* -->
<return type-id='type-id-55'/>
</function-decl>
@@ -11581,9 +11593,9 @@
<!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__uninitialized_copy_move<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::allocator<vtkPixelExtent> >(std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::allocator<vtkPixelExtent>&) -->
<function-decl name='__uninitialized_copy_move<std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::allocator<vtkPixelExtent> >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_uninitialized.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
@@ -11619,9 +11631,9 @@
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, const vtkPixelExtent&, const vtkPixelExtent*>' -->
- <parameter type-id='type-id-282'/>
+ <parameter type-id='type-id-283'/>
<!-- parameter of type 'struct std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>' -->
<parameter type-id='type-id-133'/>
<!-- parameter of type 'std::allocator<vtkPixelExtent>&' -->
@@ -11648,7 +11660,7 @@
</function-decl>
</namespace-decl>
<!-- class vtkSurfaceLICComposite -->
- <class-decl name='vtkSurfaceLICComposite' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='38' column='1' is-declaration-only='yes' id='type-id-476'>
+ <class-decl name='vtkSurfaceLICComposite' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='38' column='1' is-declaration-only='yes' id='type-id-477'>
<!-- class vtkObject -->
<base-class access='public' layout-offset-in-bits='0' type-id='type-id-268'/>
<data-member access='protected' layout-offset-in-bits='384'>
@@ -11711,7 +11723,7 @@
<!-- vtkSurfaceLICComposite::vtkSurfaceLICComposite() -->
<function-decl name='vtkSurfaceLICComposite' mangled-name='_ZN22vtkSurfaceLICCompositeC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='36' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICCompositeC1Ev'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -11720,9 +11732,9 @@
<!-- vtkSurfaceLICComposite::vtkSurfaceLICComposite(const vtkSurfaceLICComposite&) -->
<function-decl name='vtkSurfaceLICComposite' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'const vtkSurfaceLICComposite&' -->
- <parameter type-id='type-id-478'/>
+ <parameter type-id='type-id-479'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -11740,7 +11752,7 @@
<!-- float vtkSurfaceLICComposite::GetFudgeFactor(int*) -->
<function-decl name='GetFudgeFactor' mangled-name='_ZN22vtkSurfaceLICComposite14GetFudgeFactorEPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='249' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite14GetFudgeFactorEPi'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'int*' -->
<parameter type-id='type-id-47'/>
<!-- float -->
@@ -11751,7 +11763,7 @@
<!-- void vtkSurfaceLICComposite::GetPixelBounds(float*, int, vtkPixelExtent&) -->
<function-decl name='GetPixelBounds' mangled-name='_ZN22vtkSurfaceLICComposite14GetPixelBoundsEPfiR14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite14GetPixelBoundsEPfiR14vtkPixelExtent'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- parameter of type 'int' -->
@@ -11766,7 +11778,7 @@
<!-- float vtkSurfaceLICComposite::VectorMax(const vtkPixelExtent&, float*) -->
<function-decl name='VectorMax' mangled-name='_ZN22vtkSurfaceLICComposite9VectorMaxERK14vtkPixelExtentPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite9VectorMaxERK14vtkPixelExtentPf'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'const vtkPixelExtent&' -->
<parameter type-id='type-id-45'/>
<!-- parameter of type 'float*' -->
@@ -11779,20 +11791,20 @@
<!-- vtkSurfaceLICComposite* vtkSurfaceLICComposite::New() -->
<function-decl name='New' mangled-name='_ZN22vtkSurfaceLICComposite3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='33' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite3NewEv'>
<!-- vtkSurfaceLICComposite* -->
- <return type-id='type-id-481'/>
+ <return type-id='type-id-482'/>
</function-decl>
</member-function>
<member-function access='protected'>
<!-- int vtkSurfaceLICComposite::VectorMax(const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, float*, std::vector<float, std::allocator<float> >&) -->
<function-decl name='VectorMax' mangled-name='_ZN22vtkSurfaceLICComposite9VectorMaxERKSt5dequeI14vtkPixelExtentSaIS1_EEPfRSt6vectorIfSaIfEE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='90' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite9VectorMaxERKSt5dequeI14vtkPixelExtentSaIS1_EEPfRSt6vectorIfSaIfEE'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
<parameter type-id='type-id-166'/>
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- parameter of type 'std::vector<float, std::allocator<float> >&' -->
- <parameter type-id='type-id-408'/>
+ <parameter type-id='type-id-409'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -11801,7 +11813,7 @@
<!-- void vtkSurfaceLICComposite::Initialize(const vtkPixelExtent&, const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, int, double, int, int, int, int) -->
<function-decl name='Initialize' mangled-name='_ZN22vtkSurfaceLICComposite10InitializeERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EEidiiii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='56' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite10InitializeERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EEidiiii'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'const vtkPixelExtent&' -->
<parameter type-id='type-id-45'/>
<!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
@@ -11837,7 +11849,7 @@
<!-- int vtkSurfaceLICComposite::MakeDecompDisjoint(const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, float*) -->
<function-decl name='MakeDecompDisjoint' mangled-name='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_Pf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='164' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_Pf'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
<parameter type-id='type-id-166'/>
<!-- parameter of type 'std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
@@ -11852,7 +11864,7 @@
<!-- int vtkSurfaceLICComposite::AddGuardPixels(const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, float*) -->
<function-decl name='AddGuardPixels' mangled-name='_ZN22vtkSurfaceLICComposite14AddGuardPixelsERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_S6_Pf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='262' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite14AddGuardPixelsERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_S6_Pf'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
<parameter type-id='type-id-166'/>
<!-- parameter of type 'std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&' -->
@@ -11869,7 +11881,7 @@
<!-- int vtkSurfaceLICComposite::InitializeCompositeExtents(float*) -->
<function-decl name='InitializeCompositeExtents' mangled-name='_ZN22vtkSurfaceLICComposite26InitializeCompositeExtentsEPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='360' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite26InitializeCompositeExtentsEPf'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- int -->
@@ -11880,7 +11892,7 @@
<!-- const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >& vtkSurfaceLICComposite::GetCompositeExtents() -->
<function-decl name='GetCompositeExtents' mangled-name='_ZNK22vtkSurfaceLICComposite19GetCompositeExtentsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-479' is-artificial='yes'/>
+ <parameter type-id='type-id-480' is-artificial='yes'/>
<!-- const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >& -->
<return type-id='type-id-166'/>
</function-decl>
@@ -11889,7 +11901,7 @@
<!-- const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >& vtkSurfaceLICComposite::GetDisjointGuardExtents() -->
<function-decl name='GetDisjointGuardExtents' mangled-name='_ZNK22vtkSurfaceLICComposite23GetDisjointGuardExtentsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-479' is-artificial='yes'/>
+ <parameter type-id='type-id-480' is-artificial='yes'/>
<!-- const std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >& -->
<return type-id='type-id-166'/>
</function-decl>
@@ -11898,7 +11910,7 @@
<!-- int vtkSurfaceLICComposite::GetStrategy() -->
<function-decl name='GetStrategy' mangled-name='_ZN22vtkSurfaceLICComposite11GetStrategyEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='95' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -11907,7 +11919,7 @@
<!-- vtkSurfaceLICComposite::~vtkSurfaceLICComposite(int) -->
<function-decl name='~vtkSurfaceLICComposite' mangled-name='_ZN22vtkSurfaceLICCompositeD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='52' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICCompositeD1Ev'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -11918,7 +11930,7 @@
<!-- const char* vtkSurfaceLICComposite::GetClassNameInternal() -->
<function-decl name='GetClassNameInternal' mangled-name='_ZNK22vtkSurfaceLICComposite20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-479' is-artificial='yes'/>
+ <parameter type-id='type-id-480' is-artificial='yes'/>
<!-- const char* -->
<return type-id='type-id-64'/>
</function-decl>
@@ -11927,7 +11939,7 @@
<!-- int vtkSurfaceLICComposite::IsA(const char*) -->
<function-decl name='IsA' mangled-name='_ZN22vtkSurfaceLICComposite3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- int -->
@@ -11938,7 +11950,7 @@
<!-- void vtkSurfaceLICComposite::PrintSelf(std::ostream&, vtkIndent) -->
<function-decl name='PrintSelf' mangled-name='_ZN22vtkSurfaceLICComposite9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' line='392' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN22vtkSurfaceLICComposite9PrintSelfERSo9vtkIndent'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'std::ostream&' -->
<parameter type-id='type-id-67'/>
<!-- parameter of type 'class vtkIndent' -->
@@ -11951,7 +11963,7 @@
<!-- vtkObjectBase* vtkSurfaceLICComposite::NewInstanceInternal() -->
<function-decl name='NewInstanceInternal' mangled-name='_ZNK22vtkSurfaceLICComposite19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-479' is-artificial='yes'/>
+ <parameter type-id='type-id-480' is-artificial='yes'/>
<!-- vtkObjectBase* -->
<return type-id='type-id-41'/>
</function-decl>
@@ -11960,7 +11972,7 @@
<!-- void vtkSurfaceLICComposite::SetContext(vtkOpenGLRenderWindow*) -->
<function-decl name='SetContext' mangled-name='_ZN22vtkSurfaceLICComposite10SetContextEP21vtkOpenGLRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'vtkOpenGLRenderWindow*' -->
<parameter type-id='type-id-243'/>
<!-- void -->
@@ -11971,7 +11983,7 @@
<!-- vtkOpenGLRenderWindow* vtkSurfaceLICComposite::GetContext() -->
<function-decl name='GetContext' mangled-name='_ZN22vtkSurfaceLICComposite10GetContextEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- vtkOpenGLRenderWindow* -->
<return type-id='type-id-243'/>
</function-decl>
@@ -11980,9 +11992,9 @@
<!-- void vtkSurfaceLICComposite::SetCommunicator(vtkPainterCommunicator*) -->
<function-decl name='SetCommunicator' mangled-name='_ZN22vtkSurfaceLICComposite15SetCommunicatorEP22vtkPainterCommunicator' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320'/>
+ <parameter type-id='type-id-321'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -11991,7 +12003,7 @@
<!-- void vtkSurfaceLICComposite::RestoreDefaultCommunicator() -->
<function-decl name='RestoreDefaultCommunicator' mangled-name='_ZN22vtkSurfaceLICComposite26RestoreDefaultCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12000,7 +12012,7 @@
<!-- int vtkSurfaceLICComposite::BuildProgram(float*) -->
<function-decl name='BuildProgram' mangled-name='_ZN22vtkSurfaceLICComposite12BuildProgramEPf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- int -->
@@ -12011,7 +12023,7 @@
<!-- int vtkSurfaceLICComposite::Gather(void*, int, int, vtkTextureObject*&) -->
<function-decl name='Gather' mangled-name='_ZN22vtkSurfaceLICComposite6GatherEPviiRP16vtkTextureObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'void*' -->
<parameter type-id='type-id-14'/>
<!-- parameter of type 'int' -->
@@ -12019,7 +12031,7 @@
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- parameter of type 'vtkTextureObject*&' -->
- <parameter type-id='type-id-482'/>
+ <parameter type-id='type-id-483'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -12028,7 +12040,7 @@
<!-- int vtkSurfaceLICComposite::Scatter(void*, int, int, vtkTextureObject*&) -->
<function-decl name='Scatter' mangled-name='_ZN22vtkSurfaceLICComposite7ScatterEPviiRP16vtkTextureObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.h' line='177' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481' is-artificial='yes'/>
+ <parameter type-id='type-id-482' is-artificial='yes'/>
<!-- parameter of type 'void*' -->
<parameter type-id='type-id-14'/>
<!-- parameter of type 'int' -->
@@ -12036,7 +12048,7 @@
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- parameter of type 'vtkTextureObject*&' -->
- <parameter type-id='type-id-482'/>
+ <parameter type-id='type-id-483'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -12047,9 +12059,9 @@
<!-- ptrdiff_t __gnu_cxx::operator-<float*, std::vector<float, std::allocator<float> > >(const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >&, const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >&) -->
<function-decl name='operator-<float*, std::vector<float, std::allocator<float> > >' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_iterator.h' line='856' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >&' -->
- <parameter type-id='type-id-471'/>
+ <parameter type-id='type-id-472'/>
<!-- parameter of type 'const __gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >&' -->
- <parameter type-id='type-id-471'/>
+ <parameter type-id='type-id-472'/>
<!-- typedef ptrdiff_t -->
<return type-id='type-id-105'/>
</function-decl>
@@ -12057,7 +12069,7 @@
</abi-instr>
<abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
<!-- class vtkTimeStamp -->
- <class-decl name='vtkTimeStamp' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='30' column='1' id='type-id-493'>
+ <class-decl name='vtkTimeStamp' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='30' column='1' id='type-id-494'>
<data-member access='private' layout-offset-in-bits='0'>
<!-- unsigned long int vtkTimeStamp::ModifiedTime -->
<var-decl name='ModifiedTime' type-id='type-id-4' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='63' column='1'/>
@@ -12066,7 +12078,7 @@
<!-- vtkTimeStamp::vtkTimeStamp() -->
<function-decl name='vtkTimeStamp' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkTimeStamp*' -->
- <parameter type-id='type-id-494' is-artificial='yes'/>
+ <parameter type-id='type-id-495' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12075,27 +12087,27 @@
<!-- bool vtkTimeStamp::operator<(vtkTimeStamp&) -->
<function-decl name='operator<' mangled-name='_ZN12vtkTimeStampltERS_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkTimeStamp.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkTimeStamp*' -->
- <parameter type-id='type-id-494' is-artificial='yes'/>
+ <parameter type-id='type-id-495' is-artificial='yes'/>
<!-- parameter of type 'vtkTimeStamp&' -->
- <parameter type-id='type-id-495'/>
+ <parameter type-id='type-id-496'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSurfaceLICDefaultPainter -->
- <class-decl name='vtkSurfaceLICDefaultPainter' size-in-bits='1728' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='37' column='1' id='type-id-496'>
+ <class-decl name='vtkSurfaceLICDefaultPainter' size-in-bits='1728' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='37' column='1' id='type-id-497'>
<!-- class vtkDefaultPainter -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-497'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-498'/>
<data-member access='protected' layout-offset-in-bits='1664'>
<!-- vtkSurfaceLICPainter* vtkSurfaceLICDefaultPainter::SurfaceLICPainter -->
- <var-decl name='SurfaceLICPainter' type-id='type-id-498' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='66' column='1'/>
+ <var-decl name='SurfaceLICPainter' type-id='type-id-499' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='66' column='1'/>
</data-member>
<member-function access='protected' constructor='yes'>
<!-- vtkSurfaceLICDefaultPainter::vtkSurfaceLICDefaultPainter() -->
<function-decl name='vtkSurfaceLICDefaultPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainterC2Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainterC2Ev'>
<!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
- <parameter type-id='type-id-499' is-artificial='yes'/>
+ <parameter type-id='type-id-500' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12104,9 +12116,9 @@
<!-- vtkSurfaceLICDefaultPainter::vtkSurfaceLICDefaultPainter(const vtkSurfaceLICDefaultPainter&) -->
<function-decl name='vtkSurfaceLICDefaultPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
- <parameter type-id='type-id-499' is-artificial='yes'/>
+ <parameter type-id='type-id-500' is-artificial='yes'/>
<!-- parameter of type 'const vtkSurfaceLICDefaultPainter&' -->
- <parameter type-id='type-id-500'/>
+ <parameter type-id='type-id-501'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12124,9 +12136,9 @@
<!-- void vtkSurfaceLICDefaultPainter::SetSurfaceLICPainter(vtkSurfaceLICPainter*) -->
<function-decl name='SetSurfaceLICPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='29' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter'>
<!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
- <parameter type-id='type-id-499' is-artificial='yes'/>
+ <parameter type-id='type-id-500' is-artificial='yes'/>
<!-- parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498'/>
+ <parameter type-id='type-id-499'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12135,14 +12147,14 @@
<!-- vtkSurfaceLICDefaultPainter* vtkSurfaceLICDefaultPainter::New() -->
<function-decl name='New' mangled-name='_ZN27vtkSurfaceLICDefaultPainter3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='26' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter3NewEv'>
<!-- vtkSurfaceLICDefaultPainter* -->
- <return type-id='type-id-499'/>
+ <return type-id='type-id-500'/>
</function-decl>
</member-function>
<member-function access='protected' destructor='yes' vtable-offset='-1'>
<!-- vtkSurfaceLICDefaultPainter::~vtkSurfaceLICDefaultPainter(int) -->
<function-decl name='~vtkSurfaceLICDefaultPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainterD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainterD1Ev'>
<!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
- <parameter type-id='type-id-499' is-artificial='yes'/>
+ <parameter type-id='type-id-500' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -12153,7 +12165,7 @@
<!-- const char* vtkSurfaceLICDefaultPainter::GetClassNameInternal() -->
<function-decl name='GetClassNameInternal' mangled-name='_ZNK27vtkSurfaceLICDefaultPainter20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSurfaceLICDefaultPainter*' -->
- <parameter type-id='type-id-501' is-artificial='yes'/>
+ <parameter type-id='type-id-502' is-artificial='yes'/>
<!-- const char* -->
<return type-id='type-id-64'/>
</function-decl>
@@ -12162,7 +12174,7 @@
<!-- int vtkSurfaceLICDefaultPainter::IsA(const char*) -->
<function-decl name='IsA' mangled-name='_ZN27vtkSurfaceLICDefaultPainter3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
- <parameter type-id='type-id-499' is-artificial='yes'/>
+ <parameter type-id='type-id-500' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- int -->
@@ -12173,7 +12185,7 @@
<!-- void vtkSurfaceLICDefaultPainter::PrintSelf(std::ostream&, vtkIndent) -->
<function-decl name='PrintSelf' mangled-name='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent'>
<!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
- <parameter type-id='type-id-499' is-artificial='yes'/>
+ <parameter type-id='type-id-500' is-artificial='yes'/>
<!-- parameter of type 'std::ostream&' -->
<parameter type-id='type-id-67'/>
<!-- parameter of type 'class vtkIndent' -->
@@ -12186,9 +12198,9 @@
<!-- void vtkSurfaceLICDefaultPainter::ReportReferences(vtkGarbageCollector*) -->
<function-decl name='ReportReferences' mangled-name='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='70' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector'>
<!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
- <parameter type-id='type-id-499' is-artificial='yes'/>
+ <parameter type-id='type-id-500' is-artificial='yes'/>
<!-- parameter of type 'vtkGarbageCollector*' -->
- <parameter type-id='type-id-502'/>
+ <parameter type-id='type-id-503'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12197,7 +12209,7 @@
<!-- vtkObjectBase* vtkSurfaceLICDefaultPainter::NewInstanceInternal() -->
<function-decl name='NewInstanceInternal' mangled-name='_ZNK27vtkSurfaceLICDefaultPainter19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSurfaceLICDefaultPainter*' -->
- <parameter type-id='type-id-501' is-artificial='yes'/>
+ <parameter type-id='type-id-502' is-artificial='yes'/>
<!-- vtkObjectBase* -->
<return type-id='type-id-41'/>
</function-decl>
@@ -12206,7 +12218,7 @@
<!-- void vtkSurfaceLICDefaultPainter::UpdateBounds(double*) -->
<function-decl name='UpdateBounds' mangled-name='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='81' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd'>
<!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
- <parameter type-id='type-id-499' is-artificial='yes'/>
+ <parameter type-id='type-id-500' is-artificial='yes'/>
<!-- parameter of type 'double*' -->
<parameter type-id='type-id-186'/>
<!-- void -->
@@ -12217,7 +12229,7 @@
<!-- void vtkSurfaceLICDefaultPainter::BuildPainterChain() -->
<function-decl name='BuildPainterChain' mangled-name='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' line='47' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv'>
<!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
- <parameter type-id='type-id-499' is-artificial='yes'/>
+ <parameter type-id='type-id-500' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12226,34 +12238,34 @@
<!-- vtkSurfaceLICPainter* vtkSurfaceLICDefaultPainter::GetSurfaceLICPainter() -->
<function-decl name='GetSurfaceLICPainter' mangled-name='_ZN27vtkSurfaceLICDefaultPainter20GetSurfaceLICPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICDefaultPainter*' -->
- <parameter type-id='type-id-499' is-artificial='yes'/>
+ <parameter type-id='type-id-500' is-artificial='yes'/>
<!-- vtkSurfaceLICPainter* -->
- <return type-id='type-id-498'/>
+ <return type-id='type-id-499'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSurfaceLICPainter -->
- <class-decl name='vtkSurfaceLICPainter' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='67' column='1' id='type-id-503'>
+ <class-decl name='vtkSurfaceLICPainter' size-in-bits='2880' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='67' column='1' id='type-id-504'>
<!-- class vtkPainter -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-504'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-505'/>
<member-type access='protected'>
<!-- class vtkSurfaceLICPainter::vtkInternals -->
- <class-decl name='vtkInternals' size-in-bits='3392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='824' column='1' id='type-id-505'>
+ <class-decl name='vtkInternals' size-in-bits='3392' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='824' column='1' id='type-id-506'>
<data-member access='private' layout-offset-in-bits='0'>
<!-- vtkSmartPointer<vtkOpenGLLightMonitor> vtkSurfaceLICPainter::vtkInternals::LightMonitor[8] -->
- <var-decl name='LightMonitor' type-id='type-id-506' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='826' column='1'/>
+ <var-decl name='LightMonitor' type-id='type-id-507' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='826' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='512'>
<!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> vtkSurfaceLICPainter::vtkInternals::ViewMonitor -->
- <var-decl name='ViewMonitor' type-id='type-id-507' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='827' column='1'/>
+ <var-decl name='ViewMonitor' type-id='type-id-508' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='827' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='576'>
<!-- vtkSmartPointer<vtkBackgroundColorMonitor> vtkSurfaceLICPainter::vtkInternals::BGMonitor -->
- <var-decl name='BGMonitor' type-id='type-id-508' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='828' column='1'/>
+ <var-decl name='BGMonitor' type-id='type-id-509' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='828' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='640'>
<!-- vtkWeakPointer<vtkOpenGLRenderWindow> vtkSurfaceLICPainter::vtkInternals::Context -->
- <var-decl name='Context' type-id='type-id-509' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='830' column='1'/>
+ <var-decl name='Context' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='830' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='704'>
<!-- bool vtkSurfaceLICPainter::vtkInternals::GLSupport -->
@@ -12261,7 +12273,7 @@
</data-member>
<data-member access='private' layout-offset-in-bits='736'>
<!-- int vtkSurfaceLICPainter::vtkInternals::Viewsize[2] -->
- <var-decl name='Viewsize' type-id='type-id-310' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='832' column='1'/>
+ <var-decl name='Viewsize' type-id='type-id-311' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='832' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='832'>
<!-- long long int vtkSurfaceLICPainter::vtkInternals::LastInputDataSetMTime -->
@@ -12313,87 +12325,87 @@
</data-member>
<data-member access='private' layout-offset-in-bits='1856'>
<!-- vtkPainterCommunicator* vtkSurfaceLICPainter::vtkInternals::Communicator -->
- <var-decl name='Communicator' type-id='type-id-320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='848' column='1'/>
+ <var-decl name='Communicator' type-id='type-id-321' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='848' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='1920'>
<!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::DepthImage -->
- <var-decl name='DepthImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='851' column='1'/>
+ <var-decl name='DepthImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='851' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='1984'>
<!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::GeometryImage -->
- <var-decl name='GeometryImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='855' column='1'/>
+ <var-decl name='GeometryImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='855' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2048'>
<!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::VectorImage -->
- <var-decl name='VectorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='856' column='1'/>
+ <var-decl name='VectorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='856' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2112'>
<!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::CompositeVectorImage -->
- <var-decl name='CompositeVectorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='857' column='1'/>
+ <var-decl name='CompositeVectorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='857' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2176'>
<!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::MaskVectorImage -->
- <var-decl name='MaskVectorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='858' column='1'/>
+ <var-decl name='MaskVectorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='858' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2240'>
<!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::CompositeMaskVectorImage -->
- <var-decl name='CompositeMaskVectorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='859' column='1'/>
+ <var-decl name='CompositeMaskVectorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='859' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2304'>
<!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::NoiseImage -->
- <var-decl name='NoiseImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='860' column='1'/>
+ <var-decl name='NoiseImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='860' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2368'>
<!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::LICImage -->
- <var-decl name='LICImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='861' column='1'/>
+ <var-decl name='LICImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='861' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2432'>
<!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::RGBColorImage -->
- <var-decl name='RGBColorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='862' column='1'/>
+ <var-decl name='RGBColorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='862' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2496'>
<!-- vtkSmartPointer<vtkTextureObject> vtkSurfaceLICPainter::vtkInternals::HSLColorImage -->
- <var-decl name='HSLColorImage' type-id='type-id-510' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='863' column='1'/>
+ <var-decl name='HSLColorImage' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='863' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2560'>
<!-- vtkSmartPointer<vtkImageData> vtkSurfaceLICPainter::vtkInternals::Noise -->
- <var-decl name='Noise' type-id='type-id-511' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='864' column='1'/>
+ <var-decl name='Noise' type-id='type-id-512' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='864' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2624'>
<!-- vtkSmartPointer<vtkFrameBufferObject2> vtkSurfaceLICPainter::vtkInternals::FBO -->
- <var-decl name='FBO' type-id='type-id-512' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='866' column='1'/>
+ <var-decl name='FBO' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='866' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2688'>
<!-- vtkSmartPointer<vtkShaderProgram2> vtkSurfaceLICPainter::vtkInternals::RenderGeometryPass -->
- <var-decl name='RenderGeometryPass' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='868' column='1'/>
+ <var-decl name='RenderGeometryPass' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='868' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2752'>
<!-- vtkSmartPointer<vtkShaderProgram2> vtkSurfaceLICPainter::vtkInternals::ColorPass -->
- <var-decl name='ColorPass' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='869' column='1'/>
+ <var-decl name='ColorPass' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='869' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2816'>
<!-- vtkSmartPointer<vtkShaderProgram2> vtkSurfaceLICPainter::vtkInternals::ColorEnhancePass -->
- <var-decl name='ColorEnhancePass' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='870' column='1'/>
+ <var-decl name='ColorEnhancePass' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='870' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2880'>
<!-- vtkSmartPointer<vtkShaderProgram2> vtkSurfaceLICPainter::vtkInternals::CopyPass -->
- <var-decl name='CopyPass' type-id='type-id-513' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='871' column='1'/>
+ <var-decl name='CopyPass' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='871' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='2944'>
<!-- vtkSmartPointer<vtkLightingHelper> vtkSurfaceLICPainter::vtkInternals::LightingHelper -->
- <var-decl name='LightingHelper' type-id='type-id-514' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='872' column='1'/>
+ <var-decl name='LightingHelper' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='872' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='3008'>
<!-- vtkSmartPointer<vtkColorMaterialHelper> vtkSurfaceLICPainter::vtkInternals::ColorMaterialHelper -->
- <var-decl name='ColorMaterialHelper' type-id='type-id-515' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='873' column='1'/>
+ <var-decl name='ColorMaterialHelper' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='873' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='3072'>
<!-- vtkSmartPointer<vtkSurfaceLICComposite> vtkSurfaceLICPainter::vtkInternals::Compositor -->
- <var-decl name='Compositor' type-id='type-id-516' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='875' column='1'/>
+ <var-decl name='Compositor' type-id='type-id-517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='875' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='3136'>
<!-- vtkSmartPointer<vtkLineIntegralConvolution2D> vtkSurfaceLICPainter::vtkInternals::LICer -->
- <var-decl name='LICer' type-id='type-id-517' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='876' column='1'/>
+ <var-decl name='LICer' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='876' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='3200'>
<!-- int vtkSurfaceLICPainter::vtkInternals::FieldAssociation -->
@@ -12405,7 +12417,7 @@
</data-member>
<data-member access='private' layout-offset-in-bits='3264'>
<!-- std::string vtkSurfaceLICPainter::vtkInternals::FieldName -->
- <var-decl name='FieldName' type-id='type-id-431' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='880' column='1'/>
+ <var-decl name='FieldName' type-id='type-id-432' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='880' column='1'/>
</data-member>
<data-member access='private' layout-offset-in-bits='3328'>
<!-- bool vtkSurfaceLICPainter::vtkInternals::FieldNameSet -->
@@ -12419,7 +12431,7 @@
<!-- vtkSurfaceLICPainter::vtkInternals::vtkInternals() -->
<function-decl name='vtkInternals' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='888' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12428,7 +12440,7 @@
<!-- vtkSurfaceLICPainter::vtkInternals::~vtkInternals(int) -->
<function-decl name='~vtkInternals' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='927' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -12439,7 +12451,7 @@
<!-- void vtkSurfaceLICPainter::vtkInternals::UpdateAll() -->
<function-decl name='UpdateAll' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals9UpdateAllEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1116' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12448,7 +12460,7 @@
<!-- void vtkSurfaceLICPainter::vtkInternals::GetPixelBounds(float*, int, vtkPixelExtent&) -->
<function-decl name='GetPixelBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14GetPixelBoundsEPfiR14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1474' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- parameter of type 'int' -->
@@ -12463,7 +12475,7 @@
<!-- void vtkSurfaceLICPainter::vtkInternals::ViewportQuadTextureCoords(const vtkPixelExtent&, const vtkPixelExtent&, GLfloat*) -->
<function-decl name='ViewportQuadTextureCoords' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals25ViewportQuadTextureCoordsERK14vtkPixelExtentS3_Pf' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1146' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- parameter of type 'const vtkPixelExtent&' -->
<parameter type-id='type-id-45'/>
<!-- parameter of type 'const vtkPixelExtent&' -->
@@ -12478,7 +12490,7 @@
<!-- int vtkSurfaceLICPainter::vtkInternals::idx(int, int) -->
<function-decl name='idx' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals3idxEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1252' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- parameter of type 'int' -->
@@ -12491,7 +12503,7 @@
<!-- bool vtkSurfaceLICPainter::vtkInternals::VisibilityTest(double*) -->
<function-decl name='VisibilityTest' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14VisibilityTestEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1263' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- parameter of type 'double*' -->
<parameter type-id='type-id-186'/>
<!-- bool -->
@@ -12502,13 +12514,13 @@
<!-- void vtkSurfaceLICPainter::vtkInternals::AllocateDepthTexture(vtkRenderWindow*, int*, vtkSmartPointer<vtkTextureObject>&) -->
<function-decl name='AllocateDepthTexture' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals20AllocateDepthTextureEP15vtkRenderWindowPiR15vtkSmartPointerI16vtkTextureObjectE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1068' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderWindow*' -->
<parameter type-id='type-id-35'/>
<!-- parameter of type 'int*' -->
<parameter type-id='type-id-47'/>
<!-- parameter of type 'vtkSmartPointer<vtkTextureObject>&' -->
- <parameter type-id='type-id-519'/>
+ <parameter type-id='type-id-520'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12517,7 +12529,7 @@
<!-- void vtkSurfaceLICPainter::vtkInternals::AllocateTextures(vtkRenderWindow*, int*) -->
<function-decl name='AllocateTextures' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals16AllocateTexturesEP15vtkRenderWindowPi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1024' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderWindow*' -->
<parameter type-id='type-id-35'/>
<!-- parameter of type 'int*' -->
@@ -12530,7 +12542,7 @@
<!-- bool vtkSurfaceLICPainter::vtkInternals::ViewChanged() -->
<function-decl name='ViewChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals11ViewChangedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1236' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -12539,7 +12551,7 @@
<!-- bool vtkSurfaceLICPainter::vtkInternals::LightingChanged() -->
<function-decl name='LightingChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals15LightingChangedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1219' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -12548,9 +12560,9 @@
<!-- bool vtkSurfaceLICPainter::vtkInternals::BackgroundChanged(vtkRenderer*) -->
<function-decl name='BackgroundChanged' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals17BackgroundChangedEP11vtkRenderer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1244' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderer*' -->
- <parameter type-id='type-id-520'/>
+ <parameter type-id='type-id-521'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -12559,7 +12571,7 @@
<!-- void vtkSurfaceLICPainter::vtkInternals::GetPixelBounds(float*, int, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&) -->
<function-decl name='GetPixelBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals14GetPixelBoundsEPfiRSt5dequeI14vtkPixelExtentSaIS3_EE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1496' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- parameter of type 'float*' -->
<parameter type-id='type-id-55'/>
<!-- parameter of type 'int' -->
@@ -12574,7 +12586,7 @@
<!-- void vtkSurfaceLICPainter::vtkInternals::Updated() -->
<function-decl name='Updated' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals7UpdatedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1102' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12592,7 +12604,7 @@
<!-- void vtkSurfaceLICPainter::vtkInternals::ClearGraphicsResources() -->
<function-decl name='ClearGraphicsResources' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals22ClearGraphicsResourcesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='989' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12601,7 +12613,7 @@
<!-- void vtkSurfaceLICPainter::vtkInternals::ClearTextures() -->
<function-decl name='ClearTextures' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ClearTexturesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1008' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12610,13 +12622,13 @@
<!-- void vtkSurfaceLICPainter::vtkInternals::AllocateTexture(vtkRenderWindow*, int*, vtkSmartPointer<vtkTextureObject>&, int) -->
<function-decl name='AllocateTexture' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals15AllocateTextureEP15vtkRenderWindowPiR15vtkSmartPointerI16vtkTextureObjectEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1041' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderWindow*' -->
<parameter type-id='type-id-35'/>
<!-- parameter of type 'int*' -->
<parameter type-id='type-id-47'/>
<!-- parameter of type 'vtkSmartPointer<vtkTextureObject>&' -->
- <parameter type-id='type-id-519'/>
+ <parameter type-id='type-id-520'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -12627,7 +12639,7 @@
<!-- bool vtkSurfaceLICPainter::vtkInternals::ProjectBounds(double*, int*, double*, vtkPixelExtent&) -->
<function-decl name='ProjectBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ProjectBoundsEPdPiS1_R14vtkPixelExtent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1299' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- parameter of type 'double*' -->
<parameter type-id='type-id-186'/>
<!-- parameter of type 'int*' -->
@@ -12644,7 +12656,7 @@
<!-- int vtkSurfaceLICPainter::vtkInternals::ProjectBounds(vtkDataObject*, int*, vtkPixelExtent&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&) -->
<function-decl name='ProjectBounds' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals13ProjectBoundsEP13vtkDataObjectPiR14vtkPixelExtentRSt5dequeIS4_SaIS4_EE' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1390' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- parameter of type 'vtkDataObject*' -->
<parameter type-id='type-id-229'/>
<!-- parameter of type 'int*' -->
@@ -12661,7 +12673,7 @@
<!-- void vtkSurfaceLICPainter::vtkInternals::RenderQuad(const vtkPixelExtent&, const vtkPixelExtent&, int) -->
<function-decl name='RenderQuad' mangled-name='_ZN20vtkSurfaceLICPainter12vtkInternals10RenderQuadERK14vtkPixelExtentS3_i' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1185' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter::vtkInternals*' -->
- <parameter type-id='type-id-518' is-artificial='yes'/>
+ <parameter type-id='type-id-519' is-artificial='yes'/>
<!-- parameter of type 'const vtkPixelExtent&' -->
<parameter type-id='type-id-45'/>
<!-- parameter of type 'const vtkPixelExtent&' -->
@@ -12676,7 +12688,7 @@
</member-type>
<member-type access='private'>
<!-- enum vtkSurfaceLICPainter::__anonymous_enum__ -->
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='210' column='1' id='type-id-521'>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='210' column='1' id='type-id-522'>
<underlying-type type-id='type-id-24'/>
<enumerator name='ENHANCE_CONTRAST_OFF' value='0'/>
<enumerator name='ENHANCE_CONTRAST_LIC' value='1'/>
@@ -12686,7 +12698,7 @@
</member-type>
<member-type access='private'>
<!-- enum vtkSurfaceLICPainter::__anonymous_enum__1 -->
- <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='374' column='1' id='type-id-522'>
+ <enum-decl name='__anonymous_enum__1' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='374' column='1' id='type-id-523'>
<underlying-type type-id='type-id-24'/>
<enumerator name='COMPOSITE_INPLACE' value='0'/>
<enumerator name='COMPOSITE_INPLACE_DISJOINT' value='1'/>
@@ -12748,7 +12760,7 @@
</data-member>
<data-member access='protected' layout-offset-in-bits='1792'>
<!-- double vtkSurfaceLICPainter::MaskColor[3] -->
- <var-decl name='MaskColor' type-id='type-id-523' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='502' column='1'/>
+ <var-decl name='MaskColor' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='502' column='1'/>
</data-member>
<data-member access='protected' layout-offset-in-bits='1984'>
<!-- int vtkSurfaceLICPainter::ColorMode -->
@@ -12820,13 +12832,13 @@
</data-member>
<data-member access='protected' layout-offset-in-bits='2816'>
<!-- vtkSurfaceLICPainter::vtkInternals* vtkSurfaceLICPainter::Internals -->
- <var-decl name='Internals' type-id='type-id-518' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='525' column='1'/>
+ <var-decl name='Internals' type-id='type-id-519' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='525' column='1'/>
</data-member>
<member-function access='protected' constructor='yes'>
<!-- vtkSurfaceLICPainter::vtkSurfaceLICPainter() -->
<function-decl name='vtkSurfaceLICPainter' mangled-name='_ZN20vtkSurfaceLICPainterC1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1517' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainterC1Ev'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12835,9 +12847,9 @@
<!-- vtkSurfaceLICPainter::vtkSurfaceLICPainter(const vtkSurfaceLICPainter&) -->
<function-decl name='vtkSurfaceLICPainter' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='528' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'const vtkSurfaceLICPainter&' -->
- <parameter type-id='type-id-524'/>
+ <parameter type-id='type-id-525'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -12855,7 +12867,7 @@
<!-- void vtkSurfaceLICPainter::SetInputArrayToProcess(int, int) -->
<function-decl name='SetInputArrayToProcess' mangled-name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1602' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- parameter of type 'int' -->
@@ -12868,7 +12880,7 @@
<!-- void vtkSurfaceLICPainter::SetEnable(int) -->
<function-decl name='SetEnable' mangled-name='_ZN20vtkSurfaceLICPainter9SetEnableEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1645' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9SetEnableEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -12879,7 +12891,7 @@
<!-- void vtkSurfaceLICPainter::SetCompositeStrategy(int) -->
<function-decl name='SetCompositeStrategy' mangled-name='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1729' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -12890,7 +12902,7 @@
<!-- void vtkSurfaceLICPainter::SetNumberOfSteps(int) -->
<function-decl name='SetNumberOfSteps' mangled-name='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1735' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -12901,7 +12913,7 @@
<!-- void vtkSurfaceLICPainter::SetStepSize(double) -->
<function-decl name='SetStepSize' mangled-name='_ZN20vtkSurfaceLICPainter11SetStepSizeEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1741' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter11SetStepSizeEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -12912,7 +12924,7 @@
<!-- void vtkSurfaceLICPainter::SetNormalizeVectors(int) -->
<function-decl name='SetNormalizeVectors' mangled-name='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1747' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -12923,7 +12935,7 @@
<!-- void vtkSurfaceLICPainter::SetMaskThreshold(double) -->
<function-decl name='SetMaskThreshold' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1755' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -12934,7 +12946,7 @@
<!-- void vtkSurfaceLICPainter::SetEnhancedLIC(int) -->
<function-decl name='SetEnhancedLIC' mangled-name='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1760' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -12945,7 +12957,7 @@
<!-- void vtkSurfaceLICPainter::SetLowLICContrastEnhancementFactor(double) -->
<function-decl name='SetLowLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1767' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -12956,7 +12968,7 @@
<!-- void vtkSurfaceLICPainter::SetHighLICContrastEnhancementFactor(double) -->
<function-decl name='SetHighLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1774' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -12967,7 +12979,7 @@
<!-- void vtkSurfaceLICPainter::SetAntiAlias(int) -->
<function-decl name='SetAntiAlias' mangled-name='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -12978,7 +12990,7 @@
<!-- void vtkSurfaceLICPainter::SetMaskOnSurface(int) -->
<function-decl name='SetMaskOnSurface' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -12989,7 +13001,7 @@
<!-- void vtkSurfaceLICPainter::SetColorMode(int) -->
<function-decl name='SetColorMode' mangled-name='_ZN20vtkSurfaceLICPainter12SetColorModeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1797' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetColorModeEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -13000,7 +13012,7 @@
<!-- void vtkSurfaceLICPainter::SetLICIntensity(double) -->
<function-decl name='SetLICIntensity' mangled-name='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1802' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -13011,7 +13023,7 @@
<!-- void vtkSurfaceLICPainter::SetMaskIntensity(double) -->
<function-decl name='SetMaskIntensity' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1809' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -13022,7 +13034,7 @@
<!-- void vtkSurfaceLICPainter::SetMapModeBias(double) -->
<function-decl name='SetMapModeBias' mangled-name='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1816' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -13033,7 +13045,7 @@
<!-- void vtkSurfaceLICPainter::SetLowColorContrastEnhancementFactor(double) -->
<function-decl name='SetLowColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1823' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -13044,7 +13056,7 @@
<!-- void vtkSurfaceLICPainter::SetHighColorContrastEnhancementFactor(double) -->
<function-decl name='SetHighColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1830' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -13055,7 +13067,7 @@
<!-- void vtkSurfaceLICPainter::SetMaskColor(double*) -->
<function-decl name='SetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1838' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double*' -->
<parameter type-id='type-id-186'/>
<!-- void -->
@@ -13066,7 +13078,7 @@
<!-- void vtkSurfaceLICPainter::SetEnhanceContrast(int) -->
<function-decl name='SetEnhanceContrast' mangled-name='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1862' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -13077,7 +13089,7 @@
<!-- bool vtkSurfaceLICPainter::NeedToColorLIC() -->
<function-decl name='NeedToColorLIC' mangled-name='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2267' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -13086,7 +13098,7 @@
<!-- bool vtkSurfaceLICPainter::NeedToComputeLIC() -->
<function-decl name='NeedToComputeLIC' mangled-name='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2290' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -13095,7 +13107,7 @@
<!-- bool vtkSurfaceLICPainter::NeedToGatherVectors() -->
<function-decl name='NeedToGatherVectors' mangled-name='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2312' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -13104,7 +13116,7 @@
<!-- bool vtkSurfaceLICPainter::NeedToUpdateOutputData() -->
<function-decl name='NeedToUpdateOutputData' mangled-name='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2404' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -13113,7 +13125,7 @@
<!-- void vtkSurfaceLICPainter::SetUpdateAll() -->
<function-decl name='SetUpdateAll' mangled-name='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13122,7 +13134,7 @@
<!-- void vtkSurfaceLICPainter::ClearTCoords(vtkDataSet*) -->
<function-decl name='ClearTCoords' mangled-name='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3363' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkDataSet*' -->
<parameter type-id='type-id-231'/>
<!-- void -->
@@ -13133,7 +13145,7 @@
<!-- bool vtkSurfaceLICPainter::VectorsToTCoords(vtkDataSet*) -->
<function-decl name='VectorsToTCoords' mangled-name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkDataSet*' -->
<parameter type-id='type-id-231'/>
<!-- bool -->
@@ -13144,7 +13156,7 @@
<!-- void vtkSurfaceLICPainter::SetNoiseDataSet(vtkImageData*) -->
<function-decl name='SetNoiseDataSet' mangled-name='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1932' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkImageData*' -->
<parameter type-id='type-id-233'/>
<!-- void -->
@@ -13155,7 +13167,7 @@
<!-- void vtkSurfaceLICPainter::SetNoiseGeneratorSeed(int) -->
<function-decl name='SetNoiseGeneratorSeed' mangled-name='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1721' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -13166,7 +13178,7 @@
<!-- void vtkSurfaceLICPainter::SetImpulseNoiseBackgroundValue(double) -->
<function-decl name='SetImpulseNoiseBackgroundValue' mangled-name='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1712' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -13177,7 +13189,7 @@
<!-- void vtkSurfaceLICPainter::SetImpulseNoiseProbability(double) -->
<function-decl name='SetImpulseNoiseProbability' mangled-name='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1703' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -13188,7 +13200,7 @@
<!-- void vtkSurfaceLICPainter::SetNumberOfNoiseLevels(int) -->
<function-decl name='SetNumberOfNoiseLevels' mangled-name='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1696' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -13199,7 +13211,7 @@
<!-- void vtkSurfaceLICPainter::SetMaxNoiseValue(double) -->
<function-decl name='SetMaxNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -13210,7 +13222,7 @@
<!-- void vtkSurfaceLICPainter::SetMinNoiseValue(double) -->
<function-decl name='SetMinNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1678' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -13221,7 +13233,7 @@
<!-- void vtkSurfaceLICPainter::SetNoiseGrainSize(int) -->
<function-decl name='SetNoiseGrainSize' mangled-name='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1671' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -13232,7 +13244,7 @@
<!-- void vtkSurfaceLICPainter::SetNoiseTextureSize(int) -->
<function-decl name='SetNoiseTextureSize' mangled-name='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1664' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -13243,7 +13255,7 @@
<!-- void vtkSurfaceLICPainter::SetNoiseType(int) -->
<function-decl name='SetNoiseType' mangled-name='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1657' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -13254,7 +13266,7 @@
<!-- void vtkSurfaceLICPainter::SetGenerateNoiseTexture(int) -->
<function-decl name='SetGenerateNoiseTexture' mangled-name='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1650' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -13265,11 +13277,11 @@
<!-- bool vtkSurfaceLICPainter::NeedToRenderGeometry(vtkRenderer*, vtkActor*) -->
<function-decl name='NeedToRenderGeometry' mangled-name='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderer*' -->
- <parameter type-id='type-id-520'/>
+ <parameter type-id='type-id-521'/>
<!-- parameter of type 'vtkActor*' -->
- <parameter type-id='type-id-525'/>
+ <parameter type-id='type-id-526'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -13287,9 +13299,9 @@
<!-- bool vtkSurfaceLICPainter::CanRenderSurfaceLIC(vtkActor*, int) -->
<function-decl name='CanRenderSurfaceLIC' mangled-name='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2066' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkActor*' -->
- <parameter type-id='type-id-525'/>
+ <parameter type-id='type-id-526'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- bool -->
@@ -13300,7 +13312,7 @@
<!-- void vtkSurfaceLICPainter::SetInputArrayToProcess(int, const char*) -->
<function-decl name='SetInputArrayToProcess' mangled-name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1584' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- parameter of type 'const char*' -->
@@ -13313,7 +13325,7 @@
<!-- bool vtkSurfaceLICPainter::VectorsToTCoords(vtkDataObject*) -->
<function-decl name='VectorsToTCoords' mangled-name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkDataObject*' -->
<parameter type-id='type-id-229'/>
<!-- bool -->
@@ -13324,7 +13336,7 @@
<!-- bool vtkSurfaceLICPainter::PrepareOutput() -->
<function-decl name='PrepareOutput' mangled-name='_ZN20vtkSurfaceLICPainter13PrepareOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3232' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter13PrepareOutputEv'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
@@ -13333,7 +13345,7 @@
<!-- void vtkSurfaceLICPainter::GetBounds(vtkDataObject*, double*) -->
<function-decl name='GetBounds' mangled-name='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkDataObject*' -->
<parameter type-id='type-id-229'/>
<!-- parameter of type 'double*' -->
@@ -13346,14 +13358,14 @@
<!-- vtkSurfaceLICPainter* vtkSurfaceLICPainter::New() -->
<function-decl name='New' mangled-name='_ZN20vtkSurfaceLICPainter3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1514' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter3NewEv'>
<!-- vtkSurfaceLICPainter* -->
- <return type-id='type-id-498'/>
+ <return type-id='type-id-499'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkImageData* vtkSurfaceLICPainter::GetNoiseDataSet() -->
<function-decl name='GetNoiseDataSet' mangled-name='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- vtkImageData* -->
<return type-id='type-id-233'/>
</function-decl>
@@ -13362,7 +13374,7 @@
<!-- void vtkSurfaceLICPainter::UpdateNoiseImage(vtkRenderWindow*) -->
<function-decl name='UpdateNoiseImage' mangled-name='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2020' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderWindow*' -->
<parameter type-id='type-id-35'/>
<!-- void -->
@@ -13373,7 +13385,7 @@
<!-- void vtkSurfaceLICPainter::InitializeResources() -->
<function-decl name='InitializeResources' mangled-name='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13382,9 +13394,9 @@
<!-- void vtkSurfaceLICPainter::ValidateContext(vtkRenderer*) -->
<function-decl name='ValidateContext' mangled-name='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2426' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderer*' -->
- <parameter type-id='type-id-520'/>
+ <parameter type-id='type-id-521'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13393,7 +13405,7 @@
<!-- void vtkSurfaceLICPainter::CreateCommunicator() -->
<function-decl name='CreateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2487' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13402,7 +13414,7 @@
<!-- vtkSurfaceLICPainter::~vtkSurfaceLICPainter(int) -->
<function-decl name='~vtkSurfaceLICPainter' mangled-name='_ZN20vtkSurfaceLICPainterD1Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1567' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainterD1Ev'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- void -->
@@ -13413,7 +13425,7 @@
<!-- const char* vtkSurfaceLICPainter::GetClassNameInternal() -->
<function-decl name='GetClassNameInternal' mangled-name='_ZNK20vtkSurfaceLICPainter20GetClassNameInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-526' is-artificial='yes'/>
+ <parameter type-id='type-id-527' is-artificial='yes'/>
<!-- const char* -->
<return type-id='type-id-64'/>
</function-decl>
@@ -13422,7 +13434,7 @@
<!-- int vtkSurfaceLICPainter::IsA(const char*) -->
<function-decl name='IsA' mangled-name='_ZN20vtkSurfaceLICPainter3IsAEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- int -->
@@ -13433,7 +13445,7 @@
<!-- void vtkSurfaceLICPainter::PrintSelf(std::ostream&, vtkIndent) -->
<function-decl name='PrintSelf' mangled-name='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3408' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'std::ostream&' -->
<parameter type-id='type-id-67'/>
<!-- parameter of type 'class vtkIndent' -->
@@ -13446,9 +13458,9 @@
<!-- void vtkSurfaceLICPainter::ReportReferences(vtkGarbageCollector*) -->
<function-decl name='ReportReferences' mangled-name='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3210' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkGarbageCollector*' -->
- <parameter type-id='type-id-502'/>
+ <parameter type-id='type-id-503'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13457,7 +13469,7 @@
<!-- vtkObjectBase* vtkSurfaceLICPainter::NewInstanceInternal() -->
<function-decl name='NewInstanceInternal' mangled-name='_ZNK20vtkSurfaceLICPainter19NewInstanceInternalEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-526' is-artificial='yes'/>
+ <parameter type-id='type-id-527' is-artificial='yes'/>
<!-- vtkObjectBase* -->
<return type-id='type-id-41'/>
</function-decl>
@@ -13466,9 +13478,9 @@
<!-- void vtkSurfaceLICPainter::ReleaseGraphicsResources(vtkWindow*) -->
<function-decl name='ReleaseGraphicsResources' mangled-name='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='1620' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkWindow*' -->
- <parameter type-id='type-id-527'/>
+ <parameter type-id='type-id-528'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13477,7 +13489,7 @@
<!-- vtkDataObject* vtkSurfaceLICPainter::GetOutput() -->
<function-decl name='GetOutput' mangled-name='_ZN20vtkSurfaceLICPainter9GetOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='3218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter9GetOutputEv'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- vtkDataObject* -->
<return type-id='type-id-229'/>
</function-decl>
@@ -13486,11 +13498,11 @@
<!-- void vtkSurfaceLICPainter::RenderInternal(vtkRenderer*, vtkActor*, unsigned long int, bool) -->
<function-decl name='RenderInternal' mangled-name='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderer*' -->
- <parameter type-id='type-id-520'/>
+ <parameter type-id='type-id-521'/>
<!-- parameter of type 'vtkActor*' -->
- <parameter type-id='type-id-525'/>
+ <parameter type-id='type-id-526'/>
<!-- parameter of type 'unsigned long int' -->
<parameter type-id='type-id-4'/>
<!-- parameter of type 'bool' -->
@@ -13503,7 +13515,7 @@
<!-- void vtkSurfaceLICPainter::ProcessInformation(vtkInformation*) -->
<function-decl name='ProcessInformation' mangled-name='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkInformation*' -->
<parameter type-id='type-id-237'/>
<!-- void -->
@@ -13514,7 +13526,7 @@
<!-- int vtkSurfaceLICPainter::GetEnable() -->
<function-decl name='GetEnable' mangled-name='_ZN20vtkSurfaceLICPainter9GetEnableEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13523,7 +13535,7 @@
<!-- int vtkSurfaceLICPainter::GetNumberOfSteps() -->
<function-decl name='GetNumberOfSteps' mangled-name='_ZN20vtkSurfaceLICPainter16GetNumberOfStepsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13532,7 +13544,7 @@
<!-- double vtkSurfaceLICPainter::GetStepSize() -->
<function-decl name='GetStepSize' mangled-name='_ZN20vtkSurfaceLICPainter11GetStepSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13541,7 +13553,7 @@
<!-- void vtkSurfaceLICPainter::NormalizeVectorsOn() -->
<function-decl name='NormalizeVectorsOn' mangled-name='_ZN20vtkSurfaceLICPainter18NormalizeVectorsOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13550,7 +13562,7 @@
<!-- void vtkSurfaceLICPainter::NormalizeVectorsOff() -->
<function-decl name='NormalizeVectorsOff' mangled-name='_ZN20vtkSurfaceLICPainter19NormalizeVectorsOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13559,7 +13571,7 @@
<!-- int vtkSurfaceLICPainter::GetNormalizeVectors() -->
<function-decl name='GetNormalizeVectors' mangled-name='_ZN20vtkSurfaceLICPainter19GetNormalizeVectorsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13568,7 +13580,7 @@
<!-- void vtkSurfaceLICPainter::MaskOnSurfaceOn() -->
<function-decl name='MaskOnSurfaceOn' mangled-name='_ZN20vtkSurfaceLICPainter15MaskOnSurfaceOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13577,7 +13589,7 @@
<!-- void vtkSurfaceLICPainter::MaskOnSurfaceOff() -->
<function-decl name='MaskOnSurfaceOff' mangled-name='_ZN20vtkSurfaceLICPainter16MaskOnSurfaceOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13586,7 +13598,7 @@
<!-- int vtkSurfaceLICPainter::GetMaskOnSurface() -->
<function-decl name='GetMaskOnSurface' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskOnSurfaceEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13595,7 +13607,7 @@
<!-- double vtkSurfaceLICPainter::GetMaskThreshold() -->
<function-decl name='GetMaskThreshold' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskThresholdEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13604,7 +13616,7 @@
<!-- double* vtkSurfaceLICPainter::GetMaskColor() -->
<function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double* -->
<return type-id='type-id-186'/>
</function-decl>
@@ -13613,13 +13625,13 @@
<!-- void vtkSurfaceLICPainter::GetMaskColor(double&, double&, double&) -->
<function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorERdS0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double&' -->
- <parameter type-id='type-id-528'/>
+ <parameter type-id='type-id-529'/>
<!-- parameter of type 'double&' -->
- <parameter type-id='type-id-528'/>
+ <parameter type-id='type-id-529'/>
<!-- parameter of type 'double&' -->
- <parameter type-id='type-id-528'/>
+ <parameter type-id='type-id-529'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13628,7 +13640,7 @@
<!-- void vtkSurfaceLICPainter::GetMaskColor(double*) -->
<function-decl name='GetMaskColor' mangled-name='_ZN20vtkSurfaceLICPainter12GetMaskColorEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'double*' -->
<parameter type-id='type-id-186'/>
<!-- void -->
@@ -13639,7 +13651,7 @@
<!-- double vtkSurfaceLICPainter::GetMaskIntensity() -->
<function-decl name='GetMaskIntensity' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaskIntensityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13648,7 +13660,7 @@
<!-- int vtkSurfaceLICPainter::GetEnhancedLIC() -->
<function-decl name='GetEnhancedLIC' mangled-name='_ZN20vtkSurfaceLICPainter14GetEnhancedLICEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13657,7 +13669,7 @@
<!-- void vtkSurfaceLICPainter::EnhancedLICOn() -->
<function-decl name='EnhancedLICOn' mangled-name='_ZN20vtkSurfaceLICPainter13EnhancedLICOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13666,7 +13678,7 @@
<!-- void vtkSurfaceLICPainter::EnhancedLICOff() -->
<function-decl name='EnhancedLICOff' mangled-name='_ZN20vtkSurfaceLICPainter14EnhancedLICOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13675,7 +13687,7 @@
<!-- int vtkSurfaceLICPainter::GetEnhanceContrast() -->
<function-decl name='GetEnhanceContrast' mangled-name='_ZN20vtkSurfaceLICPainter18GetEnhanceContrastEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13684,7 +13696,7 @@
<!-- double vtkSurfaceLICPainter::GetLowLICContrastEnhancementFactor() -->
<function-decl name='GetLowLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter34GetLowLICContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='234' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13693,7 +13705,7 @@
<!-- double vtkSurfaceLICPainter::GetHighLICContrastEnhancementFactor() -->
<function-decl name='GetHighLICContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter35GetHighLICContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13702,7 +13714,7 @@
<!-- double vtkSurfaceLICPainter::GetLowColorContrastEnhancementFactor() -->
<function-decl name='GetLowColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter36GetLowColorContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='239' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13711,7 +13723,7 @@
<!-- double vtkSurfaceLICPainter::GetHighColorContrastEnhancementFactor() -->
<function-decl name='GetHighColorContrastEnhancementFactor' mangled-name='_ZN20vtkSurfaceLICPainter37GetHighColorContrastEnhancementFactorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13720,7 +13732,7 @@
<!-- void vtkSurfaceLICPainter::AntiAliasOn() -->
<function-decl name='AntiAliasOn' mangled-name='_ZN20vtkSurfaceLICPainter11AntiAliasOnEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13729,7 +13741,7 @@
<!-- void vtkSurfaceLICPainter::AntiAliasOff() -->
<function-decl name='AntiAliasOff' mangled-name='_ZN20vtkSurfaceLICPainter12AntiAliasOffEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13738,7 +13750,7 @@
<!-- int vtkSurfaceLICPainter::GetAntiAlias() -->
<function-decl name='GetAntiAlias' mangled-name='_ZN20vtkSurfaceLICPainter12GetAntiAliasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13747,7 +13759,7 @@
<!-- int vtkSurfaceLICPainter::GetColorMode() -->
<function-decl name='GetColorMode' mangled-name='_ZN20vtkSurfaceLICPainter12GetColorModeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13756,7 +13768,7 @@
<!-- double vtkSurfaceLICPainter::GetLICIntensity() -->
<function-decl name='GetLICIntensity' mangled-name='_ZN20vtkSurfaceLICPainter15GetLICIntensityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13765,7 +13777,7 @@
<!-- double vtkSurfaceLICPainter::GetMapModeBias() -->
<function-decl name='GetMapModeBias' mangled-name='_ZN20vtkSurfaceLICPainter14GetMapModeBiasEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13774,7 +13786,7 @@
<!-- int vtkSurfaceLICPainter::GetGenerateNoiseTexture() -->
<function-decl name='GetGenerateNoiseTexture' mangled-name='_ZN20vtkSurfaceLICPainter23GetGenerateNoiseTextureEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13783,7 +13795,7 @@
<!-- int vtkSurfaceLICPainter::GetNoiseType() -->
<function-decl name='GetNoiseType' mangled-name='_ZN20vtkSurfaceLICPainter12GetNoiseTypeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='326' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13792,7 +13804,7 @@
<!-- int vtkSurfaceLICPainter::GetNoiseTextureSize() -->
<function-decl name='GetNoiseTextureSize' mangled-name='_ZN20vtkSurfaceLICPainter19GetNoiseTextureSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13801,7 +13813,7 @@
<!-- int vtkSurfaceLICPainter::GetNoiseGrainSize() -->
<function-decl name='GetNoiseGrainSize' mangled-name='_ZN20vtkSurfaceLICPainter17GetNoiseGrainSizeEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13810,7 +13822,7 @@
<!-- double vtkSurfaceLICPainter::GetMinNoiseValue() -->
<function-decl name='GetMinNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16GetMinNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13819,7 +13831,7 @@
<!-- double vtkSurfaceLICPainter::GetMaxNoiseValue() -->
<function-decl name='GetMaxNoiseValue' mangled-name='_ZN20vtkSurfaceLICPainter16GetMaxNoiseValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='348' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13828,7 +13840,7 @@
<!-- int vtkSurfaceLICPainter::GetNumberOfNoiseLevels() -->
<function-decl name='GetNumberOfNoiseLevels' mangled-name='_ZN20vtkSurfaceLICPainter22GetNumberOfNoiseLevelsEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='354' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13837,7 +13849,7 @@
<!-- double vtkSurfaceLICPainter::GetImpulseNoiseProbability() -->
<function-decl name='GetImpulseNoiseProbability' mangled-name='_ZN20vtkSurfaceLICPainter26GetImpulseNoiseProbabilityEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='360' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13846,7 +13858,7 @@
<!-- double vtkSurfaceLICPainter::GetImpulseNoiseBackgroundValue() -->
<function-decl name='GetImpulseNoiseBackgroundValue' mangled-name='_ZN20vtkSurfaceLICPainter30GetImpulseNoiseBackgroundValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='365' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -13855,7 +13867,7 @@
<!-- int vtkSurfaceLICPainter::GetNoiseGeneratorSeed() -->
<function-decl name='GetNoiseGeneratorSeed' mangled-name='_ZN20vtkSurfaceLICPainter21GetNoiseGeneratorSeedEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='370' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13864,7 +13876,7 @@
<!-- int vtkSurfaceLICPainter::GetCompositeStrategy() -->
<function-decl name='GetCompositeStrategy' mangled-name='_ZN20vtkSurfaceLICPainter20GetCompositeStrategyEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='381' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
@@ -13873,7 +13885,7 @@
<!-- void vtkSurfaceLICPainter::WriteTimerLog(const char*) -->
<function-decl name='WriteTimerLog' mangled-name='_ZN20vtkSurfaceLICPainter13WriteTimerLogEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='393' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- void -->
@@ -13884,13 +13896,13 @@
<!-- void vtkSurfaceLICPainter::GetGlobalMinMax(vtkPainterCommunicator*, float&, float&) -->
<function-decl name='GetGlobalMinMax' mangled-name='_ZN20vtkSurfaceLICPainter15GetGlobalMinMaxEP22vtkPainterCommunicatorRfS2_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='409' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'vtkPainterCommunicator*' -->
- <parameter type-id='type-id-320'/>
+ <parameter type-id='type-id-321'/>
<!-- parameter of type 'float&' -->
- <parameter type-id='type-id-386'/>
+ <parameter type-id='type-id-387'/>
<!-- parameter of type 'float&' -->
- <parameter type-id='type-id-386'/>
+ <parameter type-id='type-id-387'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -13899,7 +13911,7 @@
<!-- void vtkSurfaceLICPainter::StartTimerEvent(const char*) -->
<function-decl name='StartTimerEvent' mangled-name='_ZN20vtkSurfaceLICPainter15StartTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='416' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- void -->
@@ -13910,7 +13922,7 @@
<!-- void vtkSurfaceLICPainter::EndTimerEvent(const char*) -->
<function-decl name='EndTimerEvent' mangled-name='_ZN20vtkSurfaceLICPainter13EndTimerEventEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.h' line='417' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'const char*' -->
<parameter type-id='type-id-64'/>
<!-- void -->
@@ -13921,75 +13933,75 @@
<!-- vtkPainterCommunicator* vtkSurfaceLICPainter::CreateCommunicator(int) -->
<function-decl name='CreateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2481' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- parameter of type 'int' -->
<parameter type-id='type-id-17'/>
<!-- vtkPainterCommunicator* -->
- <return type-id='type-id-320'/>
+ <return type-id='type-id-321'/>
</function-decl>
</member-function>
<member-function access='protected' vtable-offset='84'>
<!-- bool vtkSurfaceLICPainter::NeedToUpdateCommunicator() -->
<function-decl name='NeedToUpdateCommunicator' mangled-name='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='2380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv'>
<!-- implicit parameter of type 'vtkSurfaceLICPainter*' -->
- <parameter type-id='type-id-498' is-artificial='yes'/>
+ <parameter type-id='type-id-499' is-artificial='yes'/>
<!-- bool -->
<return type-id='type-id-1'/>
</function-decl>
</member-function>
</class-decl>
<!-- const vtkSurfaceLICDefaultPainter -->
- <qualified-type-def type-id='type-id-496' const='yes' id='type-id-529'/>
+ <qualified-type-def type-id='type-id-497' const='yes' id='type-id-530'/>
<!-- const vtkSurfaceLICDefaultPainter& -->
- <reference-type-def kind='lvalue' type-id='type-id-529' size-in-bits='64' id='type-id-500'/>
+ <reference-type-def kind='lvalue' type-id='type-id-530' size-in-bits='64' id='type-id-501'/>
<!-- const vtkSurfaceLICDefaultPainter* -->
- <pointer-type-def type-id='type-id-529' size-in-bits='64' id='type-id-501'/>
+ <pointer-type-def type-id='type-id-530' size-in-bits='64' id='type-id-502'/>
<!-- const vtkTimeStamp -->
- <qualified-type-def type-id='type-id-493' const='yes' id='type-id-530'/>
+ <qualified-type-def type-id='type-id-494' const='yes' id='type-id-531'/>
<!-- const vtkTimeStamp* -->
- <pointer-type-def type-id='type-id-530' size-in-bits='64' id='type-id-531'/>
+ <pointer-type-def type-id='type-id-531' size-in-bits='64' id='type-id-532'/>
<!-- vtkActor* -->
- <pointer-type-def type-id='type-id-532' size-in-bits='64' id='type-id-525'/>
+ <pointer-type-def type-id='type-id-533' size-in-bits='64' id='type-id-526'/>
<!-- vtkClipPlanesPainter* -->
- <pointer-type-def type-id='type-id-533' size-in-bits='64' id='type-id-534'/>
+ <pointer-type-def type-id='type-id-534' size-in-bits='64' id='type-id-535'/>
<!-- vtkCoincidentTopologyResolutionPainter* -->
- <pointer-type-def type-id='type-id-535' size-in-bits='64' id='type-id-536'/>
+ <pointer-type-def type-id='type-id-536' size-in-bits='64' id='type-id-537'/>
<!-- vtkCompositePainter* -->
- <pointer-type-def type-id='type-id-537' size-in-bits='64' id='type-id-538'/>
+ <pointer-type-def type-id='type-id-538' size-in-bits='64' id='type-id-539'/>
<!-- vtkDefaultPainter* -->
- <pointer-type-def type-id='type-id-497' size-in-bits='64' id='type-id-539'/>
+ <pointer-type-def type-id='type-id-498' size-in-bits='64' id='type-id-540'/>
<!-- vtkDisplayListPainter* -->
- <pointer-type-def type-id='type-id-540' size-in-bits='64' id='type-id-541'/>
+ <pointer-type-def type-id='type-id-541' size-in-bits='64' id='type-id-542'/>
<!-- vtkGarbageCollector* -->
- <pointer-type-def type-id='type-id-542' size-in-bits='64' id='type-id-502'/>
+ <pointer-type-def type-id='type-id-543' size-in-bits='64' id='type-id-503'/>
<!-- vtkLightingPainter* -->
- <pointer-type-def type-id='type-id-543' size-in-bits='64' id='type-id-544'/>
+ <pointer-type-def type-id='type-id-544' size-in-bits='64' id='type-id-545'/>
<!-- vtkPainter* -->
- <pointer-type-def type-id='type-id-504' size-in-bits='64' id='type-id-545'/>
+ <pointer-type-def type-id='type-id-505' size-in-bits='64' id='type-id-546'/>
<!-- vtkRenderer* -->
- <pointer-type-def type-id='type-id-546' size-in-bits='64' id='type-id-520'/>
+ <pointer-type-def type-id='type-id-547' size-in-bits='64' id='type-id-521'/>
<!-- vtkRepresentationPainter* -->
- <pointer-type-def type-id='type-id-547' size-in-bits='64' id='type-id-548'/>
+ <pointer-type-def type-id='type-id-548' size-in-bits='64' id='type-id-549'/>
<!-- vtkScalarsToColorsPainter* -->
- <pointer-type-def type-id='type-id-549' size-in-bits='64' id='type-id-550'/>
+ <pointer-type-def type-id='type-id-550' size-in-bits='64' id='type-id-551'/>
<!-- vtkSurfaceLICDefaultPainter* -->
- <pointer-type-def type-id='type-id-496' size-in-bits='64' id='type-id-499'/>
+ <pointer-type-def type-id='type-id-497' size-in-bits='64' id='type-id-500'/>
<!-- vtkSurfaceLICPainter* -->
- <pointer-type-def type-id='type-id-503' size-in-bits='64' id='type-id-498'/>
+ <pointer-type-def type-id='type-id-504' size-in-bits='64' id='type-id-499'/>
<!-- vtkTimeStamp& -->
- <reference-type-def kind='lvalue' type-id='type-id-493' size-in-bits='64' id='type-id-495'/>
+ <reference-type-def kind='lvalue' type-id='type-id-494' size-in-bits='64' id='type-id-496'/>
<!-- vtkTimeStamp* -->
- <pointer-type-def type-id='type-id-493' size-in-bits='64' id='type-id-494'/>
+ <pointer-type-def type-id='type-id-494' size-in-bits='64' id='type-id-495'/>
<!-- struct vtkActor -->
- <class-decl name='vtkActor' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-532'/>
+ <class-decl name='vtkActor' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-533'/>
<!-- class vtkClipPlanesPainter -->
- <class-decl name='vtkClipPlanesPainter' visibility='default' is-declaration-only='yes' id='type-id-533'/>
+ <class-decl name='vtkClipPlanesPainter' visibility='default' is-declaration-only='yes' id='type-id-534'/>
<!-- class vtkCoincidentTopologyResolutionPainter -->
- <class-decl name='vtkCoincidentTopologyResolutionPainter' visibility='default' is-declaration-only='yes' id='type-id-535'/>
+ <class-decl name='vtkCoincidentTopologyResolutionPainter' visibility='default' is-declaration-only='yes' id='type-id-536'/>
<!-- struct vtkCompositePainter -->
- <class-decl name='vtkCompositePainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-537'/>
+ <class-decl name='vtkCompositePainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-538'/>
<!-- class vtkDefaultPainter -->
- <class-decl name='vtkDefaultPainter' visibility='default' is-declaration-only='yes' id='type-id-497'>
+ <class-decl name='vtkDefaultPainter' visibility='default' is-declaration-only='yes' id='type-id-498'>
<member-function access='private' static='yes'>
<!-- int vtkDefaultPainter::IsTypeOf() -->
<function-decl name='IsTypeOf' mangled-name='_ZN17vtkDefaultPainter8IsTypeOfEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
@@ -14003,86 +14015,86 @@
<!-- vtkPainter* vtkDefaultPainter::GetDelegatePainter() -->
<function-decl name='GetDelegatePainter' mangled-name='_ZN17vtkDefaultPainter18GetDelegatePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkDefaultPainter*' -->
- <parameter type-id='type-id-539' is-artificial='yes'/>
+ <parameter type-id='type-id-540' is-artificial='yes'/>
<!-- vtkPainter* -->
- <return type-id='type-id-545'/>
+ <return type-id='type-id-546'/>
</function-decl>
</member-function>
<member-function access='private' vtable-offset='40'>
<!-- vtkScalarsToColorsPainter* vtkDefaultPainter::GetScalarsToColorsPainter() -->
<function-decl name='GetScalarsToColorsPainter' mangled-name='_ZN17vtkDefaultPainter25GetScalarsToColorsPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkDefaultPainter*' -->
- <parameter type-id='type-id-539' is-artificial='yes'/>
+ <parameter type-id='type-id-540' is-artificial='yes'/>
<!-- vtkScalarsToColorsPainter* -->
- <return type-id='type-id-550'/>
+ <return type-id='type-id-551'/>
</function-decl>
</member-function>
<member-function access='private' vtable-offset='41'>
<!-- vtkClipPlanesPainter* vtkDefaultPainter::GetClipPlanesPainter() -->
<function-decl name='GetClipPlanesPainter' mangled-name='_ZN17vtkDefaultPainter20GetClipPlanesPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkDefaultPainter*' -->
- <parameter type-id='type-id-539' is-artificial='yes'/>
+ <parameter type-id='type-id-540' is-artificial='yes'/>
<!-- vtkClipPlanesPainter* -->
- <return type-id='type-id-534'/>
+ <return type-id='type-id-535'/>
</function-decl>
</member-function>
<member-function access='private' vtable-offset='42'>
<!-- vtkDisplayListPainter* vtkDefaultPainter::GetDisplayListPainter() -->
<function-decl name='GetDisplayListPainter' mangled-name='_ZN17vtkDefaultPainter21GetDisplayListPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkDefaultPainter*' -->
- <parameter type-id='type-id-539' is-artificial='yes'/>
+ <parameter type-id='type-id-540' is-artificial='yes'/>
<!-- vtkDisplayListPainter* -->
- <return type-id='type-id-541'/>
+ <return type-id='type-id-542'/>
</function-decl>
</member-function>
<member-function access='private' vtable-offset='43'>
<!-- vtkCompositePainter* vtkDefaultPainter::GetCompositePainter() -->
<function-decl name='GetCompositePainter' mangled-name='_ZN17vtkDefaultPainter19GetCompositePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkDefaultPainter*' -->
- <parameter type-id='type-id-539' is-artificial='yes'/>
+ <parameter type-id='type-id-540' is-artificial='yes'/>
<!-- vtkCompositePainter* -->
- <return type-id='type-id-538'/>
+ <return type-id='type-id-539'/>
</function-decl>
</member-function>
<member-function access='private' vtable-offset='44'>
<!-- vtkCoincidentTopologyResolutionPainter* vtkDefaultPainter::GetCoincidentTopologyResolutionPainter() -->
<function-decl name='GetCoincidentTopologyResolutionPainter' mangled-name='_ZN17vtkDefaultPainter38GetCoincidentTopologyResolutionPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkDefaultPainter*' -->
- <parameter type-id='type-id-539' is-artificial='yes'/>
+ <parameter type-id='type-id-540' is-artificial='yes'/>
<!-- vtkCoincidentTopologyResolutionPainter* -->
- <return type-id='type-id-536'/>
+ <return type-id='type-id-537'/>
</function-decl>
</member-function>
<member-function access='private' vtable-offset='45'>
<!-- vtkLightingPainter* vtkDefaultPainter::GetLightingPainter() -->
<function-decl name='GetLightingPainter' mangled-name='_ZN17vtkDefaultPainter18GetLightingPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkDefaultPainter*' -->
- <parameter type-id='type-id-539' is-artificial='yes'/>
+ <parameter type-id='type-id-540' is-artificial='yes'/>
<!-- vtkLightingPainter* -->
- <return type-id='type-id-544'/>
+ <return type-id='type-id-545'/>
</function-decl>
</member-function>
<member-function access='private' vtable-offset='46'>
<!-- vtkRepresentationPainter* vtkDefaultPainter::GetRepresentationPainter() -->
<function-decl name='GetRepresentationPainter' mangled-name='_ZN17vtkDefaultPainter24GetRepresentationPainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkDefaultPainter.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkDefaultPainter*' -->
- <parameter type-id='type-id-539' is-artificial='yes'/>
+ <parameter type-id='type-id-540' is-artificial='yes'/>
<!-- vtkRepresentationPainter* -->
- <return type-id='type-id-548'/>
+ <return type-id='type-id-549'/>
</function-decl>
</member-function>
</class-decl>
<!-- struct vtkDisplayListPainter -->
- <class-decl name='vtkDisplayListPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-540'/>
+ <class-decl name='vtkDisplayListPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-541'/>
<!-- class vtkGarbageCollector -->
- <class-decl name='vtkGarbageCollector' visibility='default' is-declaration-only='yes' id='type-id-542'/>
+ <class-decl name='vtkGarbageCollector' visibility='default' is-declaration-only='yes' id='type-id-543'/>
<!-- struct vtkLightingPainter -->
- <class-decl name='vtkLightingPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-543'/>
+ <class-decl name='vtkLightingPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-544'/>
<!-- class vtkPainter -->
- <class-decl name='vtkPainter' visibility='default' is-declaration-only='yes' id='type-id-504'>
+ <class-decl name='vtkPainter' visibility='default' is-declaration-only='yes' id='type-id-505'>
<member-type access='private'>
<!-- enum vtkPainter::__anonymous_enum__ -->
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='100' column='1' id='type-id-551'>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='100' column='1' id='type-id-552'>
<underlying-type type-id='type-id-24'/>
<enumerator name='VERTS' value='1'/>
<enumerator name='LINES' value='2'/>
@@ -14103,7 +14115,7 @@
<!-- vtkInformation* vtkPainter::GetInformation() -->
<function-decl name='GetInformation' mangled-name='_ZN10vtkPainter14GetInformationEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainter*' -->
- <parameter type-id='type-id-545' is-artificial='yes'/>
+ <parameter type-id='type-id-546' is-artificial='yes'/>
<!-- vtkInformation* -->
<return type-id='type-id-237'/>
</function-decl>
@@ -14112,16 +14124,16 @@
<!-- vtkPainter* vtkPainter::GetDelegatePainter() -->
<function-decl name='GetDelegatePainter' mangled-name='_ZN10vtkPainter18GetDelegatePainterEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainter*' -->
- <parameter type-id='type-id-545' is-artificial='yes'/>
+ <parameter type-id='type-id-546' is-artificial='yes'/>
<!-- vtkPainter* -->
- <return type-id='type-id-545'/>
+ <return type-id='type-id-546'/>
</function-decl>
</member-function>
<member-function access='private' vtable-offset='26'>
<!-- void vtkPainter::SetProgress(double) -->
<function-decl name='SetProgress' mangled-name='_ZN10vtkPainter11SetProgressEd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainter*' -->
- <parameter type-id='type-id-545' is-artificial='yes'/>
+ <parameter type-id='type-id-546' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- void -->
@@ -14132,7 +14144,7 @@
<!-- double vtkPainter::GetProgressMinValue() -->
<function-decl name='GetProgressMinValue' mangled-name='_ZN10vtkPainter19GetProgressMinValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainter*' -->
- <parameter type-id='type-id-545' is-artificial='yes'/>
+ <parameter type-id='type-id-546' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -14141,7 +14153,7 @@
<!-- double vtkPainter::GetProgressMaxValue() -->
<function-decl name='GetProgressMaxValue' mangled-name='_ZN10vtkPainter19GetProgressMaxValueEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainter*' -->
- <parameter type-id='type-id-545' is-artificial='yes'/>
+ <parameter type-id='type-id-546' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -14150,7 +14162,7 @@
<!-- double vtkPainter::GetProgress() -->
<function-decl name='GetProgress' mangled-name='_ZN10vtkPainter11GetProgressEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainter*' -->
- <parameter type-id='type-id-545' is-artificial='yes'/>
+ <parameter type-id='type-id-546' is-artificial='yes'/>
<!-- double -->
<return type-id='type-id-15'/>
</function-decl>
@@ -14159,7 +14171,7 @@
<!-- vtkDataObject* vtkPainter::GetInput() -->
<function-decl name='GetInput' mangled-name='_ZN10vtkPainter8GetInputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainter*' -->
- <parameter type-id='type-id-545' is-artificial='yes'/>
+ <parameter type-id='type-id-546' is-artificial='yes'/>
<!-- vtkDataObject* -->
<return type-id='type-id-229'/>
</function-decl>
@@ -14168,7 +14180,7 @@
<!-- vtkDataObject* vtkPainter::GetOutput() -->
<function-decl name='GetOutput' mangled-name='_ZN10vtkPainter9GetOutputEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainter*' -->
- <parameter type-id='type-id-545' is-artificial='yes'/>
+ <parameter type-id='type-id-546' is-artificial='yes'/>
<!-- vtkDataObject* -->
<return type-id='type-id-229'/>
</function-decl>
@@ -14177,11 +14189,11 @@
<!-- void vtkPainter::PrepareForRendering(vtkRenderer*, vtkActor*) -->
<function-decl name='PrepareForRendering' mangled-name='_ZN10vtkPainter19PrepareForRenderingEP11vtkRendererP8vtkActor' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainter*' -->
- <parameter type-id='type-id-545' is-artificial='yes'/>
+ <parameter type-id='type-id-546' is-artificial='yes'/>
<!-- parameter of type 'vtkRenderer*' -->
- <parameter type-id='type-id-520'/>
+ <parameter type-id='type-id-521'/>
<!-- parameter of type 'vtkActor*' -->
- <parameter type-id='type-id-525'/>
+ <parameter type-id='type-id-526'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14190,7 +14202,7 @@
<!-- void vtkPainter::ProcessInformation(vtkInformation*) -->
<function-decl name='ProcessInformation' mangled-name='_ZN10vtkPainter18ProcessInformationEP14vtkInformation' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkPainter.h' line='203' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkPainter*' -->
- <parameter type-id='type-id-545' is-artificial='yes'/>
+ <parameter type-id='type-id-546' is-artificial='yes'/>
<!-- parameter of type 'vtkInformation*' -->
<parameter type-id='type-id-237'/>
<!-- void -->
@@ -14199,46 +14211,46 @@
</member-function>
</class-decl>
<!-- struct vtkRenderer -->
- <class-decl name='vtkRenderer' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-546'>
+ <class-decl name='vtkRenderer' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-547'>
<member-function access='public'>
<!-- vtkRenderWindow* vtkRenderer::GetRenderWindow() -->
<function-decl name='GetRenderWindow' mangled-name='_ZN11vtkRenderer15GetRenderWindowEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/Core/vtkRenderer.h' line='319' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkRenderer*' -->
- <parameter type-id='type-id-520' is-artificial='yes'/>
+ <parameter type-id='type-id-521' is-artificial='yes'/>
<!-- vtkRenderWindow* -->
<return type-id='type-id-35'/>
</function-decl>
</member-function>
</class-decl>
<!-- struct vtkRepresentationPainter -->
- <class-decl name='vtkRepresentationPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-547'/>
+ <class-decl name='vtkRepresentationPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-548'/>
<!-- struct vtkScalarsToColorsPainter -->
- <class-decl name='vtkScalarsToColorsPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-549'/>
+ <class-decl name='vtkScalarsToColorsPainter' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-550'/>
</abi-instr>
<abi-instr address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' comp-dir-path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/LIC' language='LANG_C_plus_plus'>
<!-- double[3] -->
- <array-type-def dimensions='1' type-id='type-id-15' size-in-bits='192' id='type-id-523'>
+ <array-type-def dimensions='1' type-id='type-id-15' size-in-bits='192' id='type-id-524'>
<!-- <anonymous range>[3] -->
- <subrange length='3' type-id='type-id-4' id='type-id-552'/>
+ <subrange length='3' type-id='type-id-4' id='type-id-553'/>
</array-type-def>
<!-- unsigned char -->
- <type-decl name='unsigned char' size-in-bits='8' id='type-id-553'/>
+ <type-decl name='unsigned char' size-in-bits='8' id='type-id-554'/>
<!-- vtkSmartPointer<vtkOpenGLLightMonitor>[8] -->
- <array-type-def dimensions='1' type-id='type-id-554' size-in-bits='512' id='type-id-506'>
+ <array-type-def dimensions='1' type-id='type-id-555' size-in-bits='512' id='type-id-507'>
<!-- <anonymous range>[8] -->
- <subrange length='8' type-id='type-id-4' id='type-id-555'/>
+ <subrange length='8' type-id='type-id-4' id='type-id-556'/>
</array-type-def>
<!-- typedef float GLfloat -->
- <typedef-decl name='GLfloat' type-id='type-id-16' filepath='/collab/usr/global/tools/order/spack/opt/chaos_5_x86_64_ib/gcc@4.4.7/mesa@8.0.5-22dd4c4b/include/GL/gl.h' line='160' column='1' id='type-id-556'/>
+ <typedef-decl name='GLfloat' type-id='type-id-16' filepath='/collab/usr/global/tools/order/spack/opt/chaos_5_x86_64_ib/gcc@4.4.7/mesa@8.0.5-22dd4c4b/include/GL/gl.h' line='160' column='1' id='type-id-557'/>
<!-- class vtkSmartPointer<vtkBackgroundColorMonitor> -->
- <class-decl name='vtkSmartPointer<vtkBackgroundColorMonitor>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-508'>
+ <class-decl name='vtkSmartPointer<vtkBackgroundColorMonitor>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-509'>
<!-- class vtkSmartPointerBase -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkBackgroundColorMonitor>::vtkSmartPointer() -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
- <parameter type-id='type-id-558' is-artificial='yes'/>
+ <parameter type-id='type-id-559' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14247,9 +14259,9 @@
<!-- void vtkSmartPointer<vtkBackgroundColorMonitor>::vtkSmartPointer(vtkBackgroundColorMonitor*) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
- <parameter type-id='type-id-558' is-artificial='yes'/>
+ <parameter type-id='type-id-559' is-artificial='yes'/>
<!-- parameter of type 'vtkBackgroundColorMonitor*' -->
- <parameter type-id='type-id-559'/>
+ <parameter type-id='type-id-560'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14258,11 +14270,11 @@
<!-- void vtkSmartPointer<vtkBackgroundColorMonitor>::vtkSmartPointer(vtkBackgroundColorMonitor*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
- <parameter type-id='type-id-558' is-artificial='yes'/>
+ <parameter type-id='type-id-559' is-artificial='yes'/>
<!-- parameter of type 'vtkBackgroundColorMonitor*' -->
- <parameter type-id='type-id-559'/>
- <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
<parameter type-id='type-id-560'/>
+ <!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14271,39 +14283,39 @@
<!-- vtkBackgroundColorMonitor* vtkSmartPointer<vtkBackgroundColorMonitor>::operator->() -->
<function-decl name='operator->' mangled-name='_ZNK15vtkSmartPointerI25vtkBackgroundColorMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
- <parameter type-id='type-id-561' is-artificial='yes'/>
+ <parameter type-id='type-id-562' is-artificial='yes'/>
<!-- vtkBackgroundColorMonitor* -->
- <return type-id='type-id-559'/>
+ <return type-id='type-id-560'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkSmartPointer<vtkBackgroundColorMonitor>& vtkSmartPointer<vtkBackgroundColorMonitor>::operator=(vtkBackgroundColorMonitor*) -->
<function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkBackgroundColorMonitor>*' -->
- <parameter type-id='type-id-558' is-artificial='yes'/>
+ <parameter type-id='type-id-559' is-artificial='yes'/>
<!-- parameter of type 'vtkBackgroundColorMonitor*' -->
- <parameter type-id='type-id-559'/>
+ <parameter type-id='type-id-560'/>
<!-- vtkSmartPointer<vtkBackgroundColorMonitor>& -->
- <return type-id='type-id-562'/>
+ <return type-id='type-id-563'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<!-- vtkSmartPointer<vtkBackgroundColorMonitor> vtkSmartPointer<vtkBackgroundColorMonitor>::New() -->
<function-decl name='New' mangled-name='_ZN15vtkSmartPointerI25vtkBackgroundColorMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- class vtkSmartPointer<vtkBackgroundColorMonitor> -->
- <return type-id='type-id-508'/>
+ <return type-id='type-id-509'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSmartPointer<vtkColorMaterialHelper> -->
- <class-decl name='vtkSmartPointer<vtkColorMaterialHelper>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-515'>
+ <class-decl name='vtkSmartPointer<vtkColorMaterialHelper>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-516'>
<!-- class vtkSmartPointerBase -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkColorMaterialHelper>::vtkSmartPointer() -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
- <parameter type-id='type-id-563' is-artificial='yes'/>
+ <parameter type-id='type-id-564' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14312,9 +14324,9 @@
<!-- void vtkSmartPointer<vtkColorMaterialHelper>::vtkSmartPointer(vtkColorMaterialHelper*) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
- <parameter type-id='type-id-563' is-artificial='yes'/>
+ <parameter type-id='type-id-564' is-artificial='yes'/>
<!-- parameter of type 'vtkColorMaterialHelper*' -->
- <parameter type-id='type-id-564'/>
+ <parameter type-id='type-id-565'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14323,11 +14335,11 @@
<!-- void vtkSmartPointer<vtkColorMaterialHelper>::vtkSmartPointer(vtkColorMaterialHelper*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
- <parameter type-id='type-id-563' is-artificial='yes'/>
+ <parameter type-id='type-id-564' is-artificial='yes'/>
<!-- parameter of type 'vtkColorMaterialHelper*' -->
- <parameter type-id='type-id-564'/>
+ <parameter type-id='type-id-565'/>
<!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
- <parameter type-id='type-id-560'/>
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14336,39 +14348,39 @@
<!-- vtkColorMaterialHelper* vtkSmartPointer<vtkColorMaterialHelper>::operator->() -->
<function-decl name='operator->' mangled-name='_ZNK15vtkSmartPointerI22vtkColorMaterialHelperEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkColorMaterialHelper>*' -->
- <parameter type-id='type-id-565' is-artificial='yes'/>
+ <parameter type-id='type-id-566' is-artificial='yes'/>
<!-- vtkColorMaterialHelper* -->
- <return type-id='type-id-564'/>
+ <return type-id='type-id-565'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkSmartPointer<vtkColorMaterialHelper>& vtkSmartPointer<vtkColorMaterialHelper>::operator=(vtkColorMaterialHelper*) -->
<function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkColorMaterialHelper>*' -->
- <parameter type-id='type-id-563' is-artificial='yes'/>
+ <parameter type-id='type-id-564' is-artificial='yes'/>
<!-- parameter of type 'vtkColorMaterialHelper*' -->
- <parameter type-id='type-id-564'/>
+ <parameter type-id='type-id-565'/>
<!-- vtkSmartPointer<vtkColorMaterialHelper>& -->
- <return type-id='type-id-566'/>
+ <return type-id='type-id-567'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<!-- vtkSmartPointer<vtkColorMaterialHelper> vtkSmartPointer<vtkColorMaterialHelper>::New() -->
<function-decl name='New' mangled-name='_ZN15vtkSmartPointerI22vtkColorMaterialHelperE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- class vtkSmartPointer<vtkColorMaterialHelper> -->
- <return type-id='type-id-515'/>
+ <return type-id='type-id-516'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSmartPointer<vtkFrameBufferObject2> -->
- <class-decl name='vtkSmartPointer<vtkFrameBufferObject2>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-512'>
+ <class-decl name='vtkSmartPointer<vtkFrameBufferObject2>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-513'>
<!-- class vtkSmartPointerBase -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkFrameBufferObject2>::vtkSmartPointer() -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
- <parameter type-id='type-id-567' is-artificial='yes'/>
+ <parameter type-id='type-id-568' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14377,9 +14389,9 @@
<!-- void vtkSmartPointer<vtkFrameBufferObject2>::vtkSmartPointer(vtkFrameBufferObject2*) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
- <parameter type-id='type-id-567' is-artificial='yes'/>
+ <parameter type-id='type-id-568' is-artificial='yes'/>
<!-- parameter of type 'vtkFrameBufferObject2*' -->
- <parameter type-id='type-id-318'/>
+ <parameter type-id='type-id-319'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14388,11 +14400,11 @@
<!-- void vtkSmartPointer<vtkFrameBufferObject2>::vtkSmartPointer(vtkFrameBufferObject2*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
- <parameter type-id='type-id-567' is-artificial='yes'/>
+ <parameter type-id='type-id-568' is-artificial='yes'/>
<!-- parameter of type 'vtkFrameBufferObject2*' -->
- <parameter type-id='type-id-318'/>
+ <parameter type-id='type-id-319'/>
<!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
- <parameter type-id='type-id-560'/>
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14401,32 +14413,32 @@
<!-- vtkSmartPointer<vtkFrameBufferObject2>& vtkSmartPointer<vtkFrameBufferObject2>::operator=(vtkFrameBufferObject2*) -->
<function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI21vtkFrameBufferObject2EaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkFrameBufferObject2>*' -->
- <parameter type-id='type-id-567' is-artificial='yes'/>
+ <parameter type-id='type-id-568' is-artificial='yes'/>
<!-- parameter of type 'vtkFrameBufferObject2*' -->
- <parameter type-id='type-id-318'/>
+ <parameter type-id='type-id-319'/>
<!-- vtkSmartPointer<vtkFrameBufferObject2>& -->
- <return type-id='type-id-568'/>
+ <return type-id='type-id-569'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkFrameBufferObject2* vtkSmartPointer<vtkFrameBufferObject2>::operator vtkFrameBufferObject2*() -->
<function-decl name='operator vtkFrameBufferObject2*' mangled-name='_ZNK15vtkSmartPointerI21vtkFrameBufferObject2EcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkFrameBufferObject2>*' -->
- <parameter type-id='type-id-569' is-artificial='yes'/>
+ <parameter type-id='type-id-570' is-artificial='yes'/>
<!-- vtkFrameBufferObject2* -->
- <return type-id='type-id-318'/>
+ <return type-id='type-id-319'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSmartPointer<vtkImageData> -->
- <class-decl name='vtkSmartPointer<vtkImageData>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-511'>
+ <class-decl name='vtkSmartPointer<vtkImageData>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-512'>
<!-- class vtkSmartPointerBase -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkImageData>::vtkSmartPointer() -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
- <parameter type-id='type-id-570' is-artificial='yes'/>
+ <parameter type-id='type-id-571' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14435,7 +14447,7 @@
<!-- void vtkSmartPointer<vtkImageData>::vtkSmartPointer(vtkImageData*) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
- <parameter type-id='type-id-570' is-artificial='yes'/>
+ <parameter type-id='type-id-571' is-artificial='yes'/>
<!-- parameter of type 'vtkImageData*' -->
<parameter type-id='type-id-233'/>
<!-- void -->
@@ -14446,11 +14458,11 @@
<!-- void vtkSmartPointer<vtkImageData>::vtkSmartPointer(vtkImageData*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
- <parameter type-id='type-id-570' is-artificial='yes'/>
+ <parameter type-id='type-id-571' is-artificial='yes'/>
<!-- parameter of type 'vtkImageData*' -->
<parameter type-id='type-id-233'/>
<!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
- <parameter type-id='type-id-560'/>
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14459,7 +14471,7 @@
<!-- vtkImageData* vtkSmartPointer<vtkImageData>::GetPointer() -->
<function-decl name='GetPointer' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkImageData>*' -->
- <parameter type-id='type-id-571' is-artificial='yes'/>
+ <parameter type-id='type-id-572' is-artificial='yes'/>
<!-- vtkImageData* -->
<return type-id='type-id-233'/>
</function-decl>
@@ -14468,32 +14480,32 @@
<!-- vtkSmartPointer<vtkImageData>& vtkSmartPointer<vtkImageData>::operator=(vtkImageData*) -->
<function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI12vtkImageDataEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkImageData>*' -->
- <parameter type-id='type-id-570' is-artificial='yes'/>
+ <parameter type-id='type-id-571' is-artificial='yes'/>
<!-- parameter of type 'vtkImageData*' -->
<parameter type-id='type-id-233'/>
<!-- vtkSmartPointer<vtkImageData>& -->
- <return type-id='type-id-572'/>
+ <return type-id='type-id-573'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkImageData* vtkSmartPointer<vtkImageData>::operator vtkImageData*() -->
<function-decl name='operator vtkImageData*' mangled-name='_ZNK15vtkSmartPointerI12vtkImageDataEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkImageData>*' -->
- <parameter type-id='type-id-571' is-artificial='yes'/>
+ <parameter type-id='type-id-572' is-artificial='yes'/>
<!-- vtkImageData* -->
<return type-id='type-id-233'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSmartPointer<vtkLightingHelper> -->
- <class-decl name='vtkSmartPointer<vtkLightingHelper>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-514'>
+ <class-decl name='vtkSmartPointer<vtkLightingHelper>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-515'>
<!-- class vtkSmartPointerBase -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkLightingHelper>::vtkSmartPointer() -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
- <parameter type-id='type-id-573' is-artificial='yes'/>
+ <parameter type-id='type-id-574' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14502,9 +14514,9 @@
<!-- void vtkSmartPointer<vtkLightingHelper>::vtkSmartPointer(vtkLightingHelper*) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
- <parameter type-id='type-id-573' is-artificial='yes'/>
+ <parameter type-id='type-id-574' is-artificial='yes'/>
<!-- parameter of type 'vtkLightingHelper*' -->
- <parameter type-id='type-id-574'/>
+ <parameter type-id='type-id-575'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14513,11 +14525,11 @@
<!-- void vtkSmartPointer<vtkLightingHelper>::vtkSmartPointer(vtkLightingHelper*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
- <parameter type-id='type-id-573' is-artificial='yes'/>
+ <parameter type-id='type-id-574' is-artificial='yes'/>
<!-- parameter of type 'vtkLightingHelper*' -->
- <parameter type-id='type-id-574'/>
+ <parameter type-id='type-id-575'/>
<!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
- <parameter type-id='type-id-560'/>
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14526,39 +14538,39 @@
<!-- vtkLightingHelper* vtkSmartPointer<vtkLightingHelper>::operator->() -->
<function-decl name='operator->' mangled-name='_ZNK15vtkSmartPointerI17vtkLightingHelperEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkLightingHelper>*' -->
- <parameter type-id='type-id-575' is-artificial='yes'/>
+ <parameter type-id='type-id-576' is-artificial='yes'/>
<!-- vtkLightingHelper* -->
- <return type-id='type-id-574'/>
+ <return type-id='type-id-575'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkSmartPointer<vtkLightingHelper>& vtkSmartPointer<vtkLightingHelper>::operator=(vtkLightingHelper*) -->
<function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkLightingHelper>*' -->
- <parameter type-id='type-id-573' is-artificial='yes'/>
+ <parameter type-id='type-id-574' is-artificial='yes'/>
<!-- parameter of type 'vtkLightingHelper*' -->
- <parameter type-id='type-id-574'/>
+ <parameter type-id='type-id-575'/>
<!-- vtkSmartPointer<vtkLightingHelper>& -->
- <return type-id='type-id-576'/>
+ <return type-id='type-id-577'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<!-- vtkSmartPointer<vtkLightingHelper> vtkSmartPointer<vtkLightingHelper>::New() -->
<function-decl name='New' mangled-name='_ZN15vtkSmartPointerI17vtkLightingHelperE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- class vtkSmartPointer<vtkLightingHelper> -->
- <return type-id='type-id-514'/>
+ <return type-id='type-id-515'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSmartPointer<vtkLineIntegralConvolution2D> -->
- <class-decl name='vtkSmartPointer<vtkLineIntegralConvolution2D>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-517'>
+ <class-decl name='vtkSmartPointer<vtkLineIntegralConvolution2D>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-518'>
<!-- class vtkSmartPointerBase -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkLineIntegralConvolution2D>::vtkSmartPointer() -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
- <parameter type-id='type-id-577' is-artificial='yes'/>
+ <parameter type-id='type-id-578' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14567,9 +14579,9 @@
<!-- void vtkSmartPointer<vtkLineIntegralConvolution2D>::vtkSmartPointer(vtkLineIntegralConvolution2D*) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
- <parameter type-id='type-id-577' is-artificial='yes'/>
+ <parameter type-id='type-id-578' is-artificial='yes'/>
<!-- parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413'/>
+ <parameter type-id='type-id-414'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14578,11 +14590,11 @@
<!-- void vtkSmartPointer<vtkLineIntegralConvolution2D>::vtkSmartPointer(vtkLineIntegralConvolution2D*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
- <parameter type-id='type-id-577' is-artificial='yes'/>
+ <parameter type-id='type-id-578' is-artificial='yes'/>
<!-- parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413'/>
+ <parameter type-id='type-id-414'/>
<!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
- <parameter type-id='type-id-560'/>
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14591,32 +14603,32 @@
<!-- vtkSmartPointer<vtkLineIntegralConvolution2D>& vtkSmartPointer<vtkLineIntegralConvolution2D>::operator=(vtkLineIntegralConvolution2D*) -->
<function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI28vtkLineIntegralConvolution2DEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
- <parameter type-id='type-id-577' is-artificial='yes'/>
+ <parameter type-id='type-id-578' is-artificial='yes'/>
<!-- parameter of type 'vtkLineIntegralConvolution2D*' -->
- <parameter type-id='type-id-413'/>
+ <parameter type-id='type-id-414'/>
<!-- vtkSmartPointer<vtkLineIntegralConvolution2D>& -->
- <return type-id='type-id-578'/>
+ <return type-id='type-id-579'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkLineIntegralConvolution2D* vtkSmartPointer<vtkLineIntegralConvolution2D>::operator vtkLineIntegralConvolution2D*() -->
<function-decl name='operator vtkLineIntegralConvolution2D*' mangled-name='_ZNK15vtkSmartPointerI28vtkLineIntegralConvolution2DEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkLineIntegralConvolution2D>*' -->
- <parameter type-id='type-id-579' is-artificial='yes'/>
+ <parameter type-id='type-id-580' is-artificial='yes'/>
<!-- vtkLineIntegralConvolution2D* -->
- <return type-id='type-id-413'/>
+ <return type-id='type-id-414'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSmartPointer<vtkOpenGLLightMonitor> -->
- <class-decl name='vtkSmartPointer<vtkOpenGLLightMonitor>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-554'>
+ <class-decl name='vtkSmartPointer<vtkOpenGLLightMonitor>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-555'>
<!-- class vtkSmartPointerBase -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkOpenGLLightMonitor>::vtkSmartPointer() -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
- <parameter type-id='type-id-580' is-artificial='yes'/>
+ <parameter type-id='type-id-581' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14625,9 +14637,9 @@
<!-- void vtkSmartPointer<vtkOpenGLLightMonitor>::vtkSmartPointer(vtkOpenGLLightMonitor*) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
- <parameter type-id='type-id-580' is-artificial='yes'/>
+ <parameter type-id='type-id-581' is-artificial='yes'/>
<!-- parameter of type 'vtkOpenGLLightMonitor*' -->
- <parameter type-id='type-id-581'/>
+ <parameter type-id='type-id-582'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14636,11 +14648,11 @@
<!-- void vtkSmartPointer<vtkOpenGLLightMonitor>::vtkSmartPointer(vtkOpenGLLightMonitor*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
- <parameter type-id='type-id-580' is-artificial='yes'/>
+ <parameter type-id='type-id-581' is-artificial='yes'/>
<!-- parameter of type 'vtkOpenGLLightMonitor*' -->
- <parameter type-id='type-id-581'/>
+ <parameter type-id='type-id-582'/>
<!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
- <parameter type-id='type-id-560'/>
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14649,39 +14661,39 @@
<!-- vtkOpenGLLightMonitor* vtkSmartPointer<vtkOpenGLLightMonitor>::operator->() -->
<function-decl name='operator->' mangled-name='_ZNK15vtkSmartPointerI21vtkOpenGLLightMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
- <parameter type-id='type-id-582' is-artificial='yes'/>
+ <parameter type-id='type-id-583' is-artificial='yes'/>
<!-- vtkOpenGLLightMonitor* -->
- <return type-id='type-id-581'/>
+ <return type-id='type-id-582'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkSmartPointer<vtkOpenGLLightMonitor>& vtkSmartPointer<vtkOpenGLLightMonitor>::operator=(vtkOpenGLLightMonitor*) -->
<function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLLightMonitor>*' -->
- <parameter type-id='type-id-580' is-artificial='yes'/>
+ <parameter type-id='type-id-581' is-artificial='yes'/>
<!-- parameter of type 'vtkOpenGLLightMonitor*' -->
- <parameter type-id='type-id-581'/>
+ <parameter type-id='type-id-582'/>
<!-- vtkSmartPointer<vtkOpenGLLightMonitor>& -->
- <return type-id='type-id-583'/>
+ <return type-id='type-id-584'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<!-- vtkSmartPointer<vtkOpenGLLightMonitor> vtkSmartPointer<vtkOpenGLLightMonitor>::New() -->
<function-decl name='New' mangled-name='_ZN15vtkSmartPointerI21vtkOpenGLLightMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- class vtkSmartPointer<vtkOpenGLLightMonitor> -->
- <return type-id='type-id-554'/>
+ <return type-id='type-id-555'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> -->
- <class-decl name='vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-507'>
+ <class-decl name='vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-508'>
<!-- class vtkSmartPointerBase -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::vtkSmartPointer() -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
- <parameter type-id='type-id-584' is-artificial='yes'/>
+ <parameter type-id='type-id-585' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14690,9 +14702,9 @@
<!-- void vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::vtkSmartPointer(vtkOpenGLModelViewProjectionMonitor*) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
- <parameter type-id='type-id-584' is-artificial='yes'/>
+ <parameter type-id='type-id-585' is-artificial='yes'/>
<!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
- <parameter type-id='type-id-585'/>
+ <parameter type-id='type-id-586'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14701,11 +14713,11 @@
<!-- void vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::vtkSmartPointer(vtkOpenGLModelViewProjectionMonitor*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
- <parameter type-id='type-id-584' is-artificial='yes'/>
+ <parameter type-id='type-id-585' is-artificial='yes'/>
<!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
- <parameter type-id='type-id-585'/>
+ <parameter type-id='type-id-586'/>
<!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
- <parameter type-id='type-id-560'/>
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14714,39 +14726,39 @@
<!-- vtkOpenGLModelViewProjectionMonitor* vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::operator->() -->
<function-decl name='operator->' mangled-name='_ZNK15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
- <parameter type-id='type-id-586' is-artificial='yes'/>
+ <parameter type-id='type-id-587' is-artificial='yes'/>
<!-- vtkOpenGLModelViewProjectionMonitor* -->
- <return type-id='type-id-585'/>
+ <return type-id='type-id-586'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>& vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::operator=(vtkOpenGLModelViewProjectionMonitor*) -->
<function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>*' -->
- <parameter type-id='type-id-584' is-artificial='yes'/>
+ <parameter type-id='type-id-585' is-artificial='yes'/>
<!-- parameter of type 'vtkOpenGLModelViewProjectionMonitor*' -->
- <parameter type-id='type-id-585'/>
+ <parameter type-id='type-id-586'/>
<!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>& -->
- <return type-id='type-id-587'/>
+ <return type-id='type-id-588'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<!-- vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>::New() -->
<function-decl name='New' mangled-name='_ZN15vtkSmartPointerI35vtkOpenGLModelViewProjectionMonitorE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- class vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> -->
- <return type-id='type-id-507'/>
+ <return type-id='type-id-508'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSmartPointer<vtkShaderProgram2> -->
- <class-decl name='vtkSmartPointer<vtkShaderProgram2>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-513'>
+ <class-decl name='vtkSmartPointer<vtkShaderProgram2>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-514'>
<!-- class vtkSmartPointerBase -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkShaderProgram2>::vtkSmartPointer() -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
- <parameter type-id='type-id-588' is-artificial='yes'/>
+ <parameter type-id='type-id-589' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14755,7 +14767,7 @@
<!-- void vtkSmartPointer<vtkShaderProgram2>::vtkSmartPointer(vtkShaderProgram2*) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
- <parameter type-id='type-id-588' is-artificial='yes'/>
+ <parameter type-id='type-id-589' is-artificial='yes'/>
<!-- parameter of type 'vtkShaderProgram2*' -->
<parameter type-id='type-id-258'/>
<!-- void -->
@@ -14766,11 +14778,11 @@
<!-- void vtkSmartPointer<vtkShaderProgram2>::vtkSmartPointer(vtkShaderProgram2*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
- <parameter type-id='type-id-588' is-artificial='yes'/>
+ <parameter type-id='type-id-589' is-artificial='yes'/>
<!-- parameter of type 'vtkShaderProgram2*' -->
<parameter type-id='type-id-258'/>
<!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
- <parameter type-id='type-id-560'/>
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14779,32 +14791,32 @@
<!-- vtkSmartPointer<vtkShaderProgram2>& vtkSmartPointer<vtkShaderProgram2>::operator=(vtkShaderProgram2*) -->
<function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI17vtkShaderProgram2EaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkShaderProgram2>*' -->
- <parameter type-id='type-id-588' is-artificial='yes'/>
+ <parameter type-id='type-id-589' is-artificial='yes'/>
<!-- parameter of type 'vtkShaderProgram2*' -->
<parameter type-id='type-id-258'/>
<!-- vtkSmartPointer<vtkShaderProgram2>& -->
- <return type-id='type-id-589'/>
+ <return type-id='type-id-590'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkShaderProgram2* vtkSmartPointer<vtkShaderProgram2>::operator vtkShaderProgram2*() -->
<function-decl name='operator vtkShaderProgram2*' mangled-name='_ZNK15vtkSmartPointerI17vtkShaderProgram2EcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkShaderProgram2>*' -->
- <parameter type-id='type-id-590' is-artificial='yes'/>
+ <parameter type-id='type-id-591' is-artificial='yes'/>
<!-- vtkShaderProgram2* -->
<return type-id='type-id-258'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSmartPointer<vtkSurfaceLICComposite> -->
- <class-decl name='vtkSmartPointer<vtkSurfaceLICComposite>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-516'>
+ <class-decl name='vtkSmartPointer<vtkSurfaceLICComposite>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-517'>
<!-- class vtkSmartPointerBase -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkSurfaceLICComposite>::vtkSmartPointer() -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
- <parameter type-id='type-id-591' is-artificial='yes'/>
+ <parameter type-id='type-id-592' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14813,9 +14825,9 @@
<!-- void vtkSmartPointer<vtkSurfaceLICComposite>::vtkSmartPointer(vtkSurfaceLICComposite*) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
- <parameter type-id='type-id-591' is-artificial='yes'/>
+ <parameter type-id='type-id-592' is-artificial='yes'/>
<!-- parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481'/>
+ <parameter type-id='type-id-482'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14824,11 +14836,11 @@
<!-- void vtkSmartPointer<vtkSurfaceLICComposite>::vtkSmartPointer(vtkSurfaceLICComposite*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
- <parameter type-id='type-id-591' is-artificial='yes'/>
+ <parameter type-id='type-id-592' is-artificial='yes'/>
<!-- parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481'/>
+ <parameter type-id='type-id-482'/>
<!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
- <parameter type-id='type-id-560'/>
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14837,41 +14849,41 @@
<!-- vtkSmartPointer<vtkSurfaceLICComposite>& vtkSmartPointer<vtkSurfaceLICComposite>::operator=(vtkSurfaceLICComposite*) -->
<function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI22vtkSurfaceLICCompositeEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkSurfaceLICComposite>*' -->
- <parameter type-id='type-id-591' is-artificial='yes'/>
+ <parameter type-id='type-id-592' is-artificial='yes'/>
<!-- parameter of type 'vtkSurfaceLICComposite*' -->
- <parameter type-id='type-id-481'/>
+ <parameter type-id='type-id-482'/>
<!-- vtkSmartPointer<vtkSurfaceLICComposite>& -->
- <return type-id='type-id-592'/>
+ <return type-id='type-id-593'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkSurfaceLICComposite* vtkSmartPointer<vtkSurfaceLICComposite>::operator vtkSurfaceLICComposite*() -->
<function-decl name='operator vtkSurfaceLICComposite*' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkSurfaceLICComposite>*' -->
- <parameter type-id='type-id-593' is-artificial='yes'/>
+ <parameter type-id='type-id-594' is-artificial='yes'/>
<!-- vtkSurfaceLICComposite* -->
- <return type-id='type-id-481'/>
+ <return type-id='type-id-482'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkSurfaceLICComposite* vtkSmartPointer<vtkSurfaceLICComposite>::operator->() -->
<function-decl name='operator->' mangled-name='_ZNK15vtkSmartPointerI22vtkSurfaceLICCompositeEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkSurfaceLICComposite>*' -->
- <parameter type-id='type-id-593' is-artificial='yes'/>
+ <parameter type-id='type-id-594' is-artificial='yes'/>
<!-- vtkSurfaceLICComposite* -->
- <return type-id='type-id-481'/>
+ <return type-id='type-id-482'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSmartPointer<vtkTextureObject> -->
- <class-decl name='vtkSmartPointer<vtkTextureObject>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-510'>
+ <class-decl name='vtkSmartPointer<vtkTextureObject>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-511'>
<!-- class vtkSmartPointerBase -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkTextureObject>::vtkSmartPointer() -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
- <parameter type-id='type-id-594' is-artificial='yes'/>
+ <parameter type-id='type-id-595' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14880,9 +14892,9 @@
<!-- void vtkSmartPointer<vtkTextureObject>::vtkSmartPointer(vtkTextureObject*) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
- <parameter type-id='type-id-594' is-artificial='yes'/>
+ <parameter type-id='type-id-595' is-artificial='yes'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14891,11 +14903,11 @@
<!-- void vtkSmartPointer<vtkTextureObject>::vtkSmartPointer(vtkTextureObject*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
- <parameter type-id='type-id-594' is-artificial='yes'/>
+ <parameter type-id='type-id-595' is-artificial='yes'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
- <parameter type-id='type-id-560'/>
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14904,52 +14916,52 @@
<!-- vtkSmartPointer<vtkTextureObject>& vtkSmartPointer<vtkTextureObject>::operator=(vtkTextureObject*) -->
<function-decl name='operator=' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
- <parameter type-id='type-id-594' is-artificial='yes'/>
+ <parameter type-id='type-id-595' is-artificial='yes'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- vtkSmartPointer<vtkTextureObject>& -->
- <return type-id='type-id-519'/>
+ <return type-id='type-id-520'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkTextureObject* vtkSmartPointer<vtkTextureObject>::operator vtkTextureObject*() -->
<function-decl name='operator vtkTextureObject*' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkTextureObject>*' -->
- <parameter type-id='type-id-595' is-artificial='yes'/>
+ <parameter type-id='type-id-596' is-artificial='yes'/>
<!-- vtkTextureObject* -->
- <return type-id='type-id-316'/>
+ <return type-id='type-id-317'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkTextureObject* vtkSmartPointer<vtkTextureObject>::operator->() -->
<function-decl name='operator->' mangled-name='_ZNK15vtkSmartPointerI16vtkTextureObjectEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkTextureObject>*' -->
- <parameter type-id='type-id-595' is-artificial='yes'/>
+ <parameter type-id='type-id-596' is-artificial='yes'/>
<!-- vtkTextureObject* -->
- <return type-id='type-id-316'/>
+ <return type-id='type-id-317'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkTextureObject>::TakeReference(vtkTextureObject*) -->
<function-decl name='TakeReference' mangled-name='_ZN15vtkSmartPointerI16vtkTextureObjectE13TakeReferenceEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkTextureObject>*' -->
- <parameter type-id='type-id-594' is-artificial='yes'/>
+ <parameter type-id='type-id-595' is-artificial='yes'/>
<!-- parameter of type 'vtkTextureObject*' -->
- <parameter type-id='type-id-316'/>
+ <parameter type-id='type-id-317'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSmartPointer<vtkTimerLog> -->
- <class-decl name='vtkSmartPointer<vtkTimerLog>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-596'>
+ <class-decl name='vtkSmartPointer<vtkTimerLog>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='27' column='1' id='type-id-597'>
<!-- class vtkSmartPointerBase -->
- <base-class access='public' layout-offset-in-bits='0' type-id='type-id-557'/>
+ <base-class access='public' layout-offset-in-bits='0' type-id='type-id-558'/>
<member-function access='private'>
<!-- void vtkSmartPointer<vtkTimerLog>::vtkSmartPointer() -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkTimerLog>*' -->
- <parameter type-id='type-id-597' is-artificial='yes'/>
+ <parameter type-id='type-id-598' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14958,9 +14970,9 @@
<!-- void vtkSmartPointer<vtkTimerLog>::vtkSmartPointer(vtkTimerLog*) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkTimerLog>*' -->
- <parameter type-id='type-id-597' is-artificial='yes'/>
+ <parameter type-id='type-id-598' is-artificial='yes'/>
<!-- parameter of type 'vtkTimerLog*' -->
- <parameter type-id='type-id-598'/>
+ <parameter type-id='type-id-599'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14969,11 +14981,11 @@
<!-- void vtkSmartPointer<vtkTimerLog>::vtkSmartPointer(vtkTimerLog*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointer<vtkTimerLog>*' -->
- <parameter type-id='type-id-597' is-artificial='yes'/>
+ <parameter type-id='type-id-598' is-artificial='yes'/>
<!-- parameter of type 'vtkTimerLog*' -->
- <parameter type-id='type-id-598'/>
+ <parameter type-id='type-id-599'/>
<!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
- <parameter type-id='type-id-560'/>
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -14982,24 +14994,24 @@
<!-- vtkSmartPointer<vtkTimerLog> vtkSmartPointer<vtkTimerLog>::New() -->
<function-decl name='New' mangled-name='_ZN15vtkSmartPointerI11vtkTimerLogE3NewEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- class vtkSmartPointer<vtkTimerLog> -->
- <return type-id='type-id-596'/>
+ <return type-id='type-id-597'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- vtkTimerLog* vtkSmartPointer<vtkTimerLog>::operator->() -->
<function-decl name='operator->' mangled-name='_ZNK15vtkSmartPointerI11vtkTimerLogEptEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointer.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointer<vtkTimerLog>*' -->
- <parameter type-id='type-id-599' is-artificial='yes'/>
+ <parameter type-id='type-id-600' is-artificial='yes'/>
<!-- vtkTimerLog* -->
- <return type-id='type-id-598'/>
+ <return type-id='type-id-599'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkSmartPointerBase -->
- <class-decl name='vtkSmartPointerBase' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='30' column='1' id='type-id-557'>
+ <class-decl name='vtkSmartPointerBase' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='30' column='1' id='type-id-558'>
<member-type access='protected'>
<!-- class vtkSmartPointerBase::NoReference -->
- <class-decl name='NoReference' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='73' column='1' id='type-id-600'/>
+ <class-decl name='NoReference' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='73' column='1' id='type-id-601'/>
</member-type>
<data-member access='protected' layout-offset-in-bits='0'>
<!-- vtkObjectBase* vtkSmartPointerBase::Object -->
@@ -15009,7 +15021,7 @@
<!-- vtkSmartPointerBase::vtkSmartPointerBase() -->
<function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointerBase*' -->
- <parameter type-id='type-id-601' is-artificial='yes'/>
+ <parameter type-id='type-id-602' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -15018,7 +15030,7 @@
<!-- vtkSmartPointerBase::vtkSmartPointerBase(vtkObjectBase*) -->
<function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointerBase*' -->
- <parameter type-id='type-id-601' is-artificial='yes'/>
+ <parameter type-id='type-id-602' is-artificial='yes'/>
<!-- parameter of type 'vtkObjectBase*' -->
<parameter type-id='type-id-41'/>
<!-- void -->
@@ -15029,9 +15041,9 @@
<!-- vtkSmartPointerBase::vtkSmartPointerBase(const vtkSmartPointerBase&) -->
<function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointerBase*' -->
- <parameter type-id='type-id-601' is-artificial='yes'/>
+ <parameter type-id='type-id-602' is-artificial='yes'/>
<!-- parameter of type 'const vtkSmartPointerBase&' -->
- <parameter type-id='type-id-602'/>
+ <parameter type-id='type-id-603'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -15040,7 +15052,7 @@
<!-- vtkSmartPointerBase::~vtkSmartPointerBase(int) -->
<function-decl name='~vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointerBase*' -->
- <parameter type-id='type-id-601' is-artificial='yes'/>
+ <parameter type-id='type-id-602' is-artificial='yes'/>
<!-- artificial parameter of type 'int' -->
<parameter type-id='type-id-17' is-artificial='yes'/>
<!-- void -->
@@ -15051,11 +15063,11 @@
<!-- vtkSmartPointerBase::vtkSmartPointerBase(vtkObjectBase*, const vtkSmartPointerBase::NoReference&) -->
<function-decl name='vtkSmartPointerBase' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkSmartPointerBase*' -->
- <parameter type-id='type-id-601' is-artificial='yes'/>
+ <parameter type-id='type-id-602' is-artificial='yes'/>
<!-- parameter of type 'vtkObjectBase*' -->
<parameter type-id='type-id-41'/>
<!-- parameter of type 'const vtkSmartPointerBase::NoReference&' -->
- <parameter type-id='type-id-560'/>
+ <parameter type-id='type-id-561'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -15064,21 +15076,21 @@
<!-- vtkObjectBase* vtkSmartPointerBase::GetPointer() -->
<function-decl name='GetPointer' mangled-name='_ZNK19vtkSmartPointerBase10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkSmartPointerBase.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkSmartPointerBase*' -->
- <parameter type-id='type-id-603' is-artificial='yes'/>
+ <parameter type-id='type-id-604' is-artificial='yes'/>
<!-- vtkObjectBase* -->
<return type-id='type-id-41'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkWeakPointer<vtkOpenGLRenderWindow> -->
- <class-decl name='vtkWeakPointer<vtkOpenGLRenderWindow>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-509'>
+ <class-decl name='vtkWeakPointer<vtkOpenGLRenderWindow>' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='47' column='1' id='type-id-510'>
<!-- class vtkWeakPointerBase -->
<base-class access='public' layout-offset-in-bits='0' type-id='type-id-33'/>
<member-function access='private'>
<!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::vtkWeakPointer() -->
<function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
- <parameter type-id='type-id-604' is-artificial='yes'/>
+ <parameter type-id='type-id-605' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -15087,7 +15099,7 @@
<!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::vtkWeakPointer(vtkOpenGLRenderWindow*) -->
<function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
- <parameter type-id='type-id-604' is-artificial='yes'/>
+ <parameter type-id='type-id-605' is-artificial='yes'/>
<!-- parameter of type 'vtkOpenGLRenderWindow*' -->
<parameter type-id='type-id-243'/>
<!-- void -->
@@ -15098,7 +15110,7 @@
<!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::vtkWeakPointer(const vtkWeakPointerBase&) -->
<function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
- <parameter type-id='type-id-604' is-artificial='yes'/>
+ <parameter type-id='type-id-605' is-artificial='yes'/>
<!-- parameter of type 'const vtkWeakPointerBase&' -->
<parameter type-id='type-id-36'/>
<!-- void -->
@@ -15109,7 +15121,7 @@
<!-- void vtkWeakPointer<vtkOpenGLRenderWindow>::vtkWeakPointer(vtkOpenGLRenderWindow*, const vtkWeakPointerBase::NoReference&) -->
<function-decl name='vtkWeakPointer' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
- <parameter type-id='type-id-604' is-artificial='yes'/>
+ <parameter type-id='type-id-605' is-artificial='yes'/>
<!-- parameter of type 'vtkOpenGLRenderWindow*' -->
<parameter type-id='type-id-243'/>
<!-- parameter of type 'const vtkWeakPointerBase::NoReference&' -->
@@ -15122,7 +15134,7 @@
<!-- vtkOpenGLRenderWindow* vtkWeakPointer<vtkOpenGLRenderWindow>::GetPointer() -->
<function-decl name='GetPointer' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowE10GetPointerEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
- <parameter type-id='type-id-605' is-artificial='yes'/>
+ <parameter type-id='type-id-606' is-artificial='yes'/>
<!-- vtkOpenGLRenderWindow* -->
<return type-id='type-id-243'/>
</function-decl>
@@ -15131,7 +15143,7 @@
<!-- vtkOpenGLRenderWindow* vtkWeakPointer<vtkOpenGLRenderWindow>::operator vtkOpenGLRenderWindow*() -->
<function-decl name='operator vtkOpenGLRenderWindow*' mangled-name='_ZNK14vtkWeakPointerI21vtkOpenGLRenderWindowEcvPS0_Ev' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
- <parameter type-id='type-id-605' is-artificial='yes'/>
+ <parameter type-id='type-id-606' is-artificial='yes'/>
<!-- vtkOpenGLRenderWindow* -->
<return type-id='type-id-243'/>
</function-decl>
@@ -15140,29 +15152,29 @@
<!-- vtkWeakPointer<vtkOpenGLRenderWindow>& vtkWeakPointer<vtkOpenGLRenderWindow>::operator=(vtkOpenGLRenderWindow*) -->
<function-decl name='operator=' mangled-name='_ZN14vtkWeakPointerI21vtkOpenGLRenderWindowEaSEPS0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkWeakPointer.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkWeakPointer<vtkOpenGLRenderWindow>*' -->
- <parameter type-id='type-id-604' is-artificial='yes'/>
+ <parameter type-id='type-id-605' is-artificial='yes'/>
<!-- parameter of type 'vtkOpenGLRenderWindow*' -->
<parameter type-id='type-id-243'/>
<!-- vtkWeakPointer<vtkOpenGLRenderWindow>& -->
- <return type-id='type-id-606'/>
+ <return type-id='type-id-607'/>
</function-decl>
</member-function>
</class-decl>
<!-- class vtkBoundingBox -->
- <class-decl name='vtkBoundingBox' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='30' column='1' id='type-id-607'>
+ <class-decl name='vtkBoundingBox' size-in-bits='384' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='30' column='1' id='type-id-608'>
<data-member access='protected' layout-offset-in-bits='0'>
<!-- double vtkBoundingBox::MinPnt[3] -->
- <var-decl name='MinPnt' type-id='type-id-523' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
+ <var-decl name='MinPnt' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
</data-member>
<data-member access='protected' layout-offset-in-bits='192'>
<!-- double vtkBoundingBox::MaxPnt[3] -->
- <var-decl name='MaxPnt' type-id='type-id-523' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
+ <var-decl name='MaxPnt' type-id='type-id-524' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='185' column='1'/>
</data-member>
<member-function access='private' constructor='yes'>
<!-- vtkBoundingBox::vtkBoundingBox() -->
<function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkBoundingBox*' -->
- <parameter type-id='type-id-608' is-artificial='yes'/>
+ <parameter type-id='type-id-609' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -15171,9 +15183,9 @@
<!-- vtkBoundingBox::vtkBoundingBox(const double*) -->
<function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkBoundingBox*' -->
- <parameter type-id='type-id-608' is-artificial='yes'/>
+ <parameter type-id='type-id-609' is-artificial='yes'/>
<!-- parameter of type 'const double*' -->
- <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-610'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -15182,7 +15194,7 @@
<!-- vtkBoundingBox::vtkBoundingBox(double, double, double, double, double, double) -->
<function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkBoundingBox*' -->
- <parameter type-id='type-id-608' is-artificial='yes'/>
+ <parameter type-id='type-id-609' is-artificial='yes'/>
<!-- parameter of type 'double' -->
<parameter type-id='type-id-15'/>
<!-- parameter of type 'double' -->
@@ -15203,9 +15215,9 @@
<!-- vtkBoundingBox::vtkBoundingBox(const vtkBoundingBox&) -->
<function-decl name='vtkBoundingBox' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkBoundingBox*' -->
- <parameter type-id='type-id-608' is-artificial='yes'/>
+ <parameter type-id='type-id-609' is-artificial='yes'/>
<!-- parameter of type 'const vtkBoundingBox&' -->
- <parameter type-id='type-id-610'/>
+ <parameter type-id='type-id-611'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -15214,19 +15226,19 @@
<!-- void vtkBoundingBox::GetBounds(double&, double&, double&, double&, double&, double&) -->
<function-decl name='GetBounds' mangled-name='_ZNK14vtkBoundingBox9GetBoundsERdS0_S0_S0_S0_S0_' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkBoundingBox*' -->
- <parameter type-id='type-id-611' is-artificial='yes'/>
+ <parameter type-id='type-id-612' is-artificial='yes'/>
<!-- parameter of type 'double&' -->
- <parameter type-id='type-id-528'/>
+ <parameter type-id='type-id-529'/>
<!-- parameter of type 'double&' -->
- <parameter type-id='type-id-528'/>
+ <parameter type-id='type-id-529'/>
<!-- parameter of type 'double&' -->
- <parameter type-id='type-id-528'/>
+ <parameter type-id='type-id-529'/>
<!-- parameter of type 'double&' -->
- <parameter type-id='type-id-528'/>
+ <parameter type-id='type-id-529'/>
<!-- parameter of type 'double&' -->
- <parameter type-id='type-id-528'/>
+ <parameter type-id='type-id-529'/>
<!-- parameter of type 'double&' -->
- <parameter type-id='type-id-528'/>
+ <parameter type-id='type-id-529'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -15235,7 +15247,7 @@
<!-- void vtkBoundingBox::Reset() -->
<function-decl name='Reset' mangled-name='_ZN14vtkBoundingBox5ResetEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'vtkBoundingBox*' -->
- <parameter type-id='type-id-608' is-artificial='yes'/>
+ <parameter type-id='type-id-609' is-artificial='yes'/>
<!-- void -->
<return type-id='type-id-30'/>
</function-decl>
@@ -15244,7 +15256,7 @@
<!-- void vtkBoundingBox::GetBounds(double*) -->
<function-decl name='GetBounds' mangled-name='_ZNK14vtkBoundingBox9GetBoundsEPd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkBoundingBox*' -->
- <parameter type-id='type-id-611' is-artificial='yes'/>
+ <parameter type-id='type-id-612' is-artificial='yes'/>
<!-- parameter of type 'double*' -->
<parameter type-id='type-id-186'/>
<!-- void -->
@@ -15255,304 +15267,311 @@
<!-- const double* vtkBoundingBox::GetMinPoint() -->
<function-decl name='GetMinPoint' mangled-name='_ZNK14vtkBoundingBox11GetMinPointEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkBoundingBox*' -->
- <parameter type-id='type-id-611' is-artificial='yes'/>
+ <parameter type-id='type-id-612' is-artificial='yes'/>
<!-- const double* -->
- <return type-id='type-id-609'/>
+ <return type-id='type-id-610'/>
</function-decl>
</member-function>
<member-function access='private'>
<!-- const double* vtkBoundingBox::GetMaxPoint() -->
<function-decl name='GetMaxPoint' mangled-name='_ZNK14vtkBoundingBox11GetMaxPointEv' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- implicit parameter of type 'const vtkBoundingBox*' -->
- <parameter type-id='type-id-611' is-artificial='yes'/>
+ <parameter type-id='type-id-612' is-artificial='yes'/>
<!-- const double* -->
- <return type-id='type-id-609'/>
+ <return type-id='type-id-610'/>
</function-decl>
</member-function>
<member-function access='private' static='yes'>
<!-- int vtkBoundingBox::IsValid() -->
<function-decl name='IsValid' mangled-name='_ZN14vtkBoundingBox7IsValidEPKd' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/DataModel/vtkBoundingBox.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
<!-- parameter of type 'const double*' -->
- <parameter type-id='type-id-609'/>
+ <parameter type-id='type-id-610'/>
<!-- int -->
<return type-id='type-id-17'/>
</function-decl>
</member-function>
</class-decl>
<!-- GLfloat* -->
- <pointer-type-def type-id='type-id-556' size-in-bits='64' id='type-id-56'/>
+ <pointer-type-def type-id='type-id-557' size-in-bits='64' id='type-id-56'/>
<!-- const double -->
- <qualified-type-def type-id='type-id-15' const='yes' id='type-id-612'/>
+ <qualified-type-def type-id='type-id-15' const='yes' id='type-id-613'/>
<!-- const double& -->
- <reference-type-def kind='lvalue' type-id='type-id-612' size-in-bits='64' id='type-id-613'/>
+ <reference-type-def kind='lvalue' type-id='type-id-613' size-in-bits='64' id='type-id-614'/>
<!-- const double* -->
- <pointer-type-def type-id='type-id-612' size-in-bits='64' id='type-id-609'/>
+ <pointer-type-def type-id='type-id-613' size-in-bits='64' id='type-id-610'/>
<!-- const std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> > -->
- <qualified-type-def type-id='type-id-614' const='yes' id='type-id-615'/>
+ <qualified-type-def type-id='type-id-615' const='yes' id='type-id-616'/>
<!-- const std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >* -->
- <pointer-type-def type-id='type-id-615' size-in-bits='64' id='type-id-616'/>
+ <pointer-type-def type-id='type-id-616' size-in-bits='64' id='type-id-617'/>
<!-- const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> > -->
- <qualified-type-def type-id='type-id-617' const='yes' id='type-id-618'/>
+ <qualified-type-def type-id='type-id-618' const='yes' id='type-id-619'/>
<!-- const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >& -->
- <reference-type-def kind='lvalue' type-id='type-id-618' size-in-bits='64' id='type-id-619'/>
+ <reference-type-def kind='lvalue' type-id='type-id-619' size-in-bits='64' id='type-id-620'/>
<!-- const std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >* -->
- <pointer-type-def type-id='type-id-618' size-in-bits='64' id='type-id-620'/>
+ <pointer-type-def type-id='type-id-619' size-in-bits='64' id='type-id-621'/>
<!-- const vtkBoundingBox -->
- <qualified-type-def type-id='type-id-607' const='yes' id='type-id-621'/>
+ <qualified-type-def type-id='type-id-608' const='yes' id='type-id-622'/>
<!-- const vtkBoundingBox& -->
- <reference-type-def kind='lvalue' type-id='type-id-621' size-in-bits='64' id='type-id-610'/>
+ <reference-type-def kind='lvalue' type-id='type-id-622' size-in-bits='64' id='type-id-611'/>
<!-- const vtkBoundingBox* -->
- <pointer-type-def type-id='type-id-621' size-in-bits='64' id='type-id-611'/>
+ <pointer-type-def type-id='type-id-622' size-in-bits='64' id='type-id-612'/>
<!-- const vtkDataObject -->
- <qualified-type-def type-id='type-id-228' const='yes' id='type-id-622'/>
+ <qualified-type-def type-id='type-id-228' const='yes' id='type-id-623'/>
<!-- const vtkDataObject* -->
- <pointer-type-def type-id='type-id-622' size-in-bits='64' id='type-id-264'/>
+ <pointer-type-def type-id='type-id-623' size-in-bits='64' id='type-id-264'/>
<!-- const vtkSmartPointer<vtkBackgroundColorMonitor> -->
- <qualified-type-def type-id='type-id-508' const='yes' id='type-id-623'/>
+ <qualified-type-def type-id='type-id-509' const='yes' id='type-id-624'/>
<!-- const vtkSmartPointer<vtkBackgroundColorMonitor>* -->
- <pointer-type-def type-id='type-id-623' size-in-bits='64' id='type-id-561'/>
+ <pointer-type-def type-id='type-id-624' size-in-bits='64' id='type-id-562'/>
<!-- const vtkSmartPointer<vtkColorMaterialHelper> -->
- <qualified-type-def type-id='type-id-515' const='yes' id='type-id-624'/>
+ <qualified-type-def type-id='type-id-516' const='yes' id='type-id-625'/>
<!-- const vtkSmartPointer<vtkColorMaterialHelper>* -->
- <pointer-type-def type-id='type-id-624' size-in-bits='64' id='type-id-565'/>
+ <pointer-type-def type-id='type-id-625' size-in-bits='64' id='type-id-566'/>
<!-- const vtkSmartPointer<vtkFrameBufferObject2> -->
- <qualified-type-def type-id='type-id-512' const='yes' id='type-id-625'/>
+ <qualified-type-def type-id='type-id-513' const='yes' id='type-id-626'/>
<!-- const vtkSmartPointer<vtkFrameBufferObject2>* -->
- <pointer-type-def type-id='type-id-625' size-in-bits='64' id='type-id-569'/>
+ <pointer-type-def type-id='type-id-626' size-in-bits='64' id='type-id-570'/>
<!-- const vtkSmartPointer<vtkImageData> -->
- <qualified-type-def type-id='type-id-511' const='yes' id='type-id-626'/>
+ <qualified-type-def type-id='type-id-512' const='yes' id='type-id-627'/>
<!-- const vtkSmartPointer<vtkImageData>* -->
- <pointer-type-def type-id='type-id-626' size-in-bits='64' id='type-id-571'/>
+ <pointer-type-def type-id='type-id-627' size-in-bits='64' id='type-id-572'/>
<!-- const vtkSmartPointer<vtkLightingHelper> -->
- <qualified-type-def type-id='type-id-514' const='yes' id='type-id-627'/>
+ <qualified-type-def type-id='type-id-515' const='yes' id='type-id-628'/>
<!-- const vtkSmartPointer<vtkLightingHelper>* -->
- <pointer-type-def type-id='type-id-627' size-in-bits='64' id='type-id-575'/>
+ <pointer-type-def type-id='type-id-628' size-in-bits='64' id='type-id-576'/>
<!-- const vtkSmartPointer<vtkLineIntegralConvolution2D> -->
- <qualified-type-def type-id='type-id-517' const='yes' id='type-id-628'/>
+ <qualified-type-def type-id='type-id-518' const='yes' id='type-id-629'/>
<!-- const vtkSmartPointer<vtkLineIntegralConvolution2D>* -->
- <pointer-type-def type-id='type-id-628' size-in-bits='64' id='type-id-579'/>
+ <pointer-type-def type-id='type-id-629' size-in-bits='64' id='type-id-580'/>
<!-- const vtkSmartPointer<vtkOpenGLLightMonitor> -->
- <qualified-type-def type-id='type-id-554' const='yes' id='type-id-629'/>
+ <qualified-type-def type-id='type-id-555' const='yes' id='type-id-630'/>
<!-- const vtkSmartPointer<vtkOpenGLLightMonitor>* -->
- <pointer-type-def type-id='type-id-629' size-in-bits='64' id='type-id-582'/>
+ <pointer-type-def type-id='type-id-630' size-in-bits='64' id='type-id-583'/>
<!-- const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor> -->
- <qualified-type-def type-id='type-id-507' const='yes' id='type-id-630'/>
+ <qualified-type-def type-id='type-id-508' const='yes' id='type-id-631'/>
<!-- const vtkSmartPointer<vtkOpenGLModelViewProjectionMonitor>* -->
- <pointer-type-def type-id='type-id-630' size-in-bits='64' id='type-id-586'/>
+ <pointer-type-def type-id='type-id-631' size-in-bits='64' id='type-id-587'/>
<!-- const vtkSmartPointer<vtkShaderProgram2> -->
- <qualified-type-def type-id='type-id-513' const='yes' id='type-id-631'/>
+ <qualified-type-def type-id='type-id-514' const='yes' id='type-id-632'/>
<!-- const vtkSmartPointer<vtkShaderProgram2>* -->
- <pointer-type-def type-id='type-id-631' size-in-bits='64' id='type-id-590'/>
+ <pointer-type-def type-id='type-id-632' size-in-bits='64' id='type-id-591'/>
<!-- const vtkSmartPointer<vtkSurfaceLICComposite> -->
- <qualified-type-def type-id='type-id-516' const='yes' id='type-id-632'/>
+ <qualified-type-def type-id='type-id-517' const='yes' id='type-id-633'/>
<!-- const vtkSmartPointer<vtkSurfaceLICComposite>* -->
- <pointer-type-def type-id='type-id-632' size-in-bits='64' id='type-id-593'/>
+ <pointer-type-def type-id='type-id-633' size-in-bits='64' id='type-id-594'/>
<!-- const vtkSmartPointer<vtkTextureObject> -->
- <qualified-type-def type-id='type-id-510' const='yes' id='type-id-633'/>
+ <qualified-type-def type-id='type-id-511' const='yes' id='type-id-634'/>
<!-- const vtkSmartPointer<vtkTextureObject>* -->
- <pointer-type-def type-id='type-id-633' size-in-bits='64' id='type-id-595'/>
+ <pointer-type-def type-id='type-id-634' size-in-bits='64' id='type-id-596'/>
<!-- const vtkSmartPointer<vtkTimerLog> -->
- <qualified-type-def type-id='type-id-596' const='yes' id='type-id-634'/>
+ <qualified-type-def type-id='type-id-597' const='yes' id='type-id-635'/>
<!-- const vtkSmartPointer<vtkTimerLog>* -->
- <pointer-type-def type-id='type-id-634' size-in-bits='64' id='type-id-599'/>
+ <pointer-type-def type-id='type-id-635' size-in-bits='64' id='type-id-600'/>
<!-- const vtkSmartPointerBase -->
- <qualified-type-def type-id='type-id-557' const='yes' id='type-id-635'/>
+ <qualified-type-def type-id='type-id-558' const='yes' id='type-id-636'/>
<!-- const vtkSmartPointerBase& -->
- <reference-type-def kind='lvalue' type-id='type-id-635' size-in-bits='64' id='type-id-602'/>
+ <reference-type-def kind='lvalue' type-id='type-id-636' size-in-bits='64' id='type-id-603'/>
<!-- const vtkSmartPointerBase* -->
- <pointer-type-def type-id='type-id-635' size-in-bits='64' id='type-id-603'/>
+ <pointer-type-def type-id='type-id-636' size-in-bits='64' id='type-id-604'/>
<!-- const vtkSmartPointerBase::NoReference -->
- <qualified-type-def type-id='type-id-600' const='yes' id='type-id-636'/>
+ <qualified-type-def type-id='type-id-601' const='yes' id='type-id-637'/>
<!-- const vtkSmartPointerBase::NoReference& -->
- <reference-type-def kind='lvalue' type-id='type-id-636' size-in-bits='64' id='type-id-560'/>
+ <reference-type-def kind='lvalue' type-id='type-id-637' size-in-bits='64' id='type-id-561'/>
<!-- const vtkSurfaceLICPainter -->
- <qualified-type-def type-id='type-id-503' const='yes' id='type-id-637'/>
+ <qualified-type-def type-id='type-id-504' const='yes' id='type-id-638'/>
<!-- const vtkSurfaceLICPainter& -->
- <reference-type-def kind='lvalue' type-id='type-id-637' size-in-bits='64' id='type-id-524'/>
+ <reference-type-def kind='lvalue' type-id='type-id-638' size-in-bits='64' id='type-id-525'/>
<!-- const vtkSurfaceLICPainter* -->
- <pointer-type-def type-id='type-id-637' size-in-bits='64' id='type-id-526'/>
+ <pointer-type-def type-id='type-id-638' size-in-bits='64' id='type-id-527'/>
<!-- const vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface -->
- <qualified-type-def type-id='type-id-638' const='yes' id='type-id-639'/>
+ <qualified-type-def type-id='type-id-639' const='yes' id='type-id-640'/>
<!-- const vtkSurfaceLICPainterUtil::RandomNumberGeneratorInterface& -->
- <reference-type-def kind='lvalue' type-id='type-id-639' size-in-bits='64' id='type-id-640'/>
+ <reference-type-def kind='lvalue' type-id='type-id-640' size-in-bits='64' id='type-id-641'/>
<!-- const vtkWeakPointer<vtkOpenGLRenderWindow> -->
- <qualified-type-def type-id='type-id-509' const='yes' id='type-id-641'/>
+ <qualified-type-def type-id='type-id-510' const='yes' id='type-id-642'/>
<!-- const vtkWeakPointer<vtkOpenGLRenderWindow>* -->
- <pointer-type-def type-id='type-id-641' size-in-bits='64' id='type-id-605'/>
+ <pointer-type-def type-id='type-id-642' size-in-bits='64' id='type-id-606'/>
<!-- double& -->
- <reference-type-def kind='lvalue' type-id='type-id-15' size-in-bits='64' id='type-id-528'/>
+ <reference-type-def kind='lvalue' type-id='type-id-15' size-in-bits='64' id='type-id-529'/>
<!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >* -->
- <pointer-type-def type-id='type-id-614' size-in-bits='64' id='type-id-642'/>
+ <pointer-type-def type-id='type-id-615' size-in-bits='64' id='type-id-643'/>
<!-- std::_Vector_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_Vector_impl* -->
- <pointer-type-def type-id='type-id-643' size-in-bits='64' id='type-id-644'/>
+ <pointer-type-def type-id='type-id-644' size-in-bits='64' id='type-id-645'/>
<!-- std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >& -->
- <reference-type-def kind='lvalue' type-id='type-id-617' size-in-bits='64' id='type-id-645'/>
+ <reference-type-def kind='lvalue' type-id='type-id-618' size-in-bits='64' id='type-id-646'/>
<!-- std::vector<vtkPixelExtent, std::allocator<vtkPixelExtent> >* -->
- <pointer-type-def type-id='type-id-617' size-in-bits='64' id='type-id-646'/>
+ <pointer-type-def type-id='type-id-618' size-in-bits='64' id='type-id-647'/>
<!-- unsigned char* -->
- <pointer-type-def type-id='type-id-553' size-in-bits='64' id='type-id-647'/>
+ <pointer-type-def type-id='type-id-554' size-in-bits='64' id='type-id-648'/>
<!-- vtkBackgroundColorMonitor& -->
- <reference-type-def kind='lvalue' type-id='type-id-648' size-in-bits='64' id='type-id-649'/>
+ <reference-type-def kind='lvalue' type-id='type-id-649' size-in-bits='64' id='type-id-650'/>
<!-- vtkBackgroundColorMonitor* -->
- <pointer-type-def type-id='type-id-648' size-in-bits='64' id='type-id-559'/>
+ <pointer-type-def type-id='type-id-649' size-in-bits='64' id='type-id-560'/>
<!-- vtkBoundingBox& -->
- <reference-type-def kind='lvalue' type-id='type-id-607' size-in-bits='64' id='type-id-650'/>
+ <reference-type-def kind='lvalue' type-id='type-id-608' size-in-bits='64' id='type-id-651'/>
<!-- vtkBoundingBox* -->
- <pointer-type-def type-id='type-id-607' size-in-bits='64' id='type-id-608'/>
+ <pointer-type-def type-id='type-id-608' size-in-bits='64' id='type-id-609'/>
<!-- vtkCellData* -->
- <pointer-type-def type-id='type-id-651' size-in-bits='64' id='type-id-265'/>
+ <pointer-type-def type-id='type-id-652' size-in-bits='64' id='type-id-265'/>
<!-- vtkColorMaterialHelper& -->
- <reference-type-def kind='lvalue' type-id='type-id-652' size-in-bits='64' id='type-id-653'/>
+ <reference-type-def kind='lvalue' type-id='type-id-653' size-in-bits='64' id='type-id-654'/>
<!-- vtkColorMaterialHelper* -->
- <pointer-type-def type-id='type-id-652' size-in-bits='64' id='type-id-564'/>
+ <pointer-type-def type-id='type-id-653' size-in-bits='64' id='type-id-565'/>
<!-- vtkCompositeDataSet* -->
- <pointer-type-def type-id='type-id-654' size-in-bits='64' id='type-id-655'/>
+ <pointer-type-def type-id='type-id-655' size-in-bits='64' id='type-id-656'/>
<!-- vtkFieldData* -->
- <pointer-type-def type-id='type-id-656' size-in-bits='64' id='type-id-657'/>
+ <pointer-type-def type-id='type-id-657' size-in-bits='64' id='type-id-658'/>
<!-- vtkFrameBufferObject2& -->
- <reference-type-def kind='lvalue' type-id='type-id-412' size-in-bits='64' id='type-id-658'/>
+ <reference-type-def kind='lvalue' type-id='type-id-413' size-in-bits='64' id='type-id-659'/>
<!-- vtkImageData& -->
- <reference-type-def kind='lvalue' type-id='type-id-232' size-in-bits='64' id='type-id-659'/>
+ <reference-type-def kind='lvalue' type-id='type-id-232' size-in-bits='64' id='type-id-660'/>
<!-- vtkLightingHelper& -->
- <reference-type-def kind='lvalue' type-id='type-id-660' size-in-bits='64' id='type-id-661'/>
+ <reference-type-def kind='lvalue' type-id='type-id-661' size-in-bits='64' id='type-id-662'/>
<!-- vtkLightingHelper* -->
- <pointer-type-def type-id='type-id-660' size-in-bits='64' id='type-id-574'/>
+ <pointer-type-def type-id='type-id-661' size-in-bits='64' id='type-id-575'/>
<!-- vtkLineIntegralConvolution2D& -->
- <reference-type-def kind='lvalue' type-id='type-id-381' size-in-bits='64' id='type-id-662'/>
+ <reference-type-def kind='lvalue' type-id='type-id-382' size-in-bits='64' id='type-id-663'/>
<!-- vtkMinimalStandardRandomSequence* -->
- <pointer-type-def type-id='type-id-663' size-in-bits='64' id='type-id-664'/>
+ <pointer-type-def type-id='type-id-664' size-in-bits='64' id='type-id-665'/>
<!-- vtkOpenGLLightMonitor& -->
- <reference-type-def kind='lvalue' type-id='type-id-665' size-in-bits='64' id='type-id-666'/>
+ <reference-type-def kind='lvalue' type-id='type-id-666' size-in-bits='64' id='type-id-667'/>
<!-- vtkOpenGLLightMonitor* -->
- <pointer-type-def type-id='type-id-665' size-in-bits='64' id='type-id-581'/>
+ <pointer-type-def type-id='type-id-666' size-in-bits='64' id='type-id-582'/>
<!-- vtkOpenGLModelViewProjectionMonitor& -->
- <reference-type-def kind='lvalue' type-id='type-id-667' size-in-bits='64' id='type-id-668'/>
+ <reference-type-def kind='lvalue' type-id='type-id-668' size-in-bits='64' id='type-id-669'/>
<!-- vtkOpenGLModelViewProjectionMonitor* -->
- <pointer-type-def type-id='type-id-667' size-in-bits='64' id='type-id-585'/>
+ <pointer-type-def type-id='type-id-668' size-in-bits='64' id='type-id-586'/>
<!-- vtkOpenGLRenderWindow& -->
- <reference-type-def kind='lvalue' type-id='type-id-242' size-in-bits='64' id='type-id-669'/>
+ <reference-type-def kind='lvalue' type-id='type-id-242' size-in-bits='64' id='type-id-670'/>
<!-- vtkScalarsToColors* -->
- <pointer-type-def type-id='type-id-670' size-in-bits='64' id='type-id-671'/>
+ <pointer-type-def type-id='type-id-671' size-in-bits='64' id='type-id-672'/>
<!-- vtkShaderProgram2& -->
- <reference-type-def kind='lvalue' type-id='type-id-257' size-in-bits='64' id='type-id-672'/>
+ <reference-type-def kind='lvalue' type-id='type-id-257' size-in-bits='64' id='type-id-673'/>
<!-- vtkSmartPointer<vtkBackgroundColorMonitor>& -->
- <reference-type-def kind='lvalue' type-id='type-id-508' size-in-bits='64' id='type-id-562'/>
+ <reference-type-def kind='lvalue' type-id='type-id-509' size-in-bits='64' id='type-id-563'/>
<!-- vtkSmartPointer<vtkBackgroundColorMonitor>* -->
- <pointer-type-def type-id='type-id-508' size-