Searched refs:type_tparameter (Results 1 - 6 of 6) sorted by relevance
/third_party/libabigail/src/ |
H A D | abg-hash.cc | 805 struct type_tparameter::hash 808 operator()(const type_tparameter& t) const in operator ()() 857 type_tparameter::hash hash_template_type_parm; in operator ()() 875 else if (const type_tparameter* p = in operator ()() 876 dynamic_cast<const type_tparameter*>(t)) in operator ()() 877 return type_tparameter::hash()(*p); in operator ()() 1002 if (const type_tparameter* d = in operator ()() 1003 dynamic_cast<const type_tparameter*>(t)) in operator ()() 1004 return type_tparameter::hash()(*d); in operator ()()
|
H A D | abg-ir.cc | 9798 return (decl && (dynamic_pointer_cast<type_tparameter>(decl) in is_template_parameter() 24948 /// The type of the private data of the @ref type_tparameter type. 24949 class type_tparameter::priv 24951 friend class type_tparameter; 24952 }; // end class type_tparameter::priv 24954 /// Constructor of the @ref type_tparameter type. 24964 type_tparameter::type_tparameter(unsigned index, in type_tparameter() function in abigail::ir::type_tparameter 24982 type_tparameter::operator==(const type_base& other) const in operator ==() 24989 const type_tparameter in operator ==() [all...] |
H A D | abg-writer.cc | 915 (const shared_ptr<type_tparameter>, write_context&, unsigned); 4159 /// Serialize an instance of type_tparameter. 4342 (dynamic_pointer_cast<type_tparameter>(decl), ctxt, indent)) in write_template_parameter()
|
H A D | abg-reader.cc | 5507 /// Build a type_tparameter from a 'template-type-parameter' 5521 /// type_tparameter, a null pointer otherwise. 5543 && !(result = dynamic_pointer_cast<type_tparameter> in build_type_tparameter() 5554 result.reset(new type_tparameter(index, tdecl, name, loc)); in build_type_tparameter()
|
/third_party/libabigail/include/ |
H A D | abg-ir.h | 3489 class type_tparameter : public template_parameter, public virtual type_decl class 3495 type_tparameter(); 3502 type_tparameter(unsigned index, 3514 operator==(const type_tparameter&) const; 3516 virtual ~type_tparameter(); 3517 };// end class type_tparameter. 3567 class template_tparameter : public type_tparameter, public template_decl
|
H A D | abg-fwd.h | 290 class type_tparameter; 297 /// Convenience typedef for a shared pointer to @ref type_tparameter. 298 typedef shared_ptr<type_tparameter> type_tparameter_sptr;
|
Completed in 51 milliseconds