Lines Matching refs:result

354     type_base_sptr result = i->second[0];
355 return result;
1935 bool result = false;
1938 result = build_needed(node, needed);
1943 return result;
2229 /// The result of the "handling" is to build the representation of the
2999 namespace_decl_sptr result = dynamic_pointer_cast<namespace_decl>(d);
3000 ABG_ASSERT(result);
3001 return result;
3690 type_decl_sptr result = dynamic_pointer_cast<type_decl>(d);
3691 ABG_ASSERT(result);
3692 return result;
3771 qualified_type_def_sptr result =
3773 ABG_ASSERT(result);
3774 return result;
3861 pointer_type_def_sptr result =
3863 ABG_ASSERT(result);
3864 return result;
3874 pointer_type_def_sptr result = is_pointer_type(t);
3875 ABG_ASSERT(result);
3876 return result;
3936 reference_type_def_sptr result =
3938 ABG_ASSERT(result);
3939 return result;
3999 /// @param add_to_current_scope if set to yes, the result of
4100 array_type_def::subrange_sptr result =
4102 ABG_ASSERT(result);
4103 return result;
4217 array_type_def_sptr result =
4219 ABG_ASSERT(result);
4220 return result;
4247 array_type_def_sptr result =
4249 ABG_ASSERT(result);
4250 return result;
4401 enum_type_decl_sptr result =
4403 ABG_ASSERT(result);
4404 return result;
4513 typedef_decl_sptr result = is_typedef(d);
4514 ABG_ASSERT(result);
4515 return result;
4525 typedef_decl_sptr result = is_typedef(t);
4526 ABG_ASSERT(result);
4527 return result;
4623 class_decl_sptr result = dynamic_pointer_cast<class_decl>(d);
4624 ABG_ASSERT(result);
4625 return result;
5051 union_decl_sptr result = dynamic_pointer_cast<union_decl>(d);
5052 ABG_ASSERT(result);
5053 return result;
5391 shared_ptr<function_tdecl> nil, result;
5457 shared_ptr<class_tdecl> nil, result;
5528 type_tparameter_sptr nil, result;
5543 && !(result = dynamic_pointer_cast<type_tparameter>
5554 result.reset(new type_tparameter(index, tdecl, name, loc));
5555 maybe_set_artificial_location(rdr, node, result);
5558 rdr.push_decl_to_current_scope(dynamic_pointer_cast<decl_base>(result),
5561 rdr.push_and_key_type_decl(result, id, /*add_to_current_scope=*/true);
5563 rdr.maybe_canonicalize_type(result, /*force_delay=*/false);
5565 return result;
5588 type_composition_sptr nil, result;
5594 result.reset(new type_composition(index, tdecl, composed_type));
5595 rdr.push_decl_to_current_scope(dynamic_pointer_cast<decl_base>(result),
5617 result->set_composed_type(composed_type);
5622 return result;
5721 template_tparameter_sptr result(new template_tparameter(index, tdecl,
5723 maybe_set_artificial_location(rdr, node, result);
5724 rdr.push_decl_to_current_scope(result, /*add_to_current_scope=*/true);
5732 build_template_parameter(rdr, n, parm_index, result))
5734 result->add_template_parameter(p);
5738 if (result)
5740 rdr.key_type_decl(result, id);
5741 rdr.maybe_canonicalize_type(result, /*force_delay=*/false);
5744 return result;
6116 reader_sptr result(new reader(xml::new_reader_from_file(path),
6118 corpus_sptr corp = result->corpus();
6122 env.set_self_comparison_debug_input(result->corpus());
6124 result->set_path(path);
6125 return result;
6139 reader_sptr result(new reader(xml::new_reader_from_istream(in),
6141 corpus_sptr corp = result->corpus();
6145 env.set_self_comparison_debug_input(result->corpus());
6147 return result;