reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Definitions

tools/clang/include/clang/Sema/Sema.h
 1640   static int getPrintable(int I) { return I; }
 1641   static unsigned getPrintable(unsigned I) { return I; }
 1642   static bool getPrintable(bool B) { return B; }
 1643   static const char * getPrintable(const char *S) { return S; }
 1645   static const std::string &getPrintable(const std::string &S) { return S; }
 1646   static const IdentifierInfo *getPrintable(const IdentifierInfo *II) {
 1649   static DeclarationName getPrintable(DeclarationName N) { return N; }
 1650   static QualType getPrintable(QualType T) { return T; }
 1651   static SourceRange getPrintable(SourceRange R) { return R; }
 1653   static SourceRange getPrintable(const Expr *E) { return E->getSourceRange(); }
 1654   static SourceRange getPrintable(TypeLoc TL) { return TL.getSourceRange();}