Lines Matching defs:comps
10839 /// @param comps the resulting list of component to fill.
10842 list<string>& comps)
10851 comps.push_back(comp);
10862 /// @param comps the name components
10867 components_to_type_name(const list<string>& comps)
10870 for (list<string>::const_iterator c = comps.begin();
10871 c != comps.end();
10873 if (c == comps.begin())
11493 list<string> comps;
11494 fqn_to_components(fqn, comps);
11495 return lookup_type_in_scope(comps, skope);
11510 list<string> comps;
11511 fqn_to_components(fqn, comps);
11512 return lookup_var_decl_in_scope(comps, skope);
11647 /// @param comps the components of the fully qualified name of the
11654 lookup_type_in_scope(const list<string>& comps,
11656 {return is_type(lookup_node_in_scope<type_base>(comps, scope));}
11794 /// @param comps the components of the fully qualified name of the
11799 lookup_var_decl_in_scope(const std::list<string>& comps,
11801 {return is_var_decl(lookup_node_in_scope<var_decl>(comps, skope));}