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

References

tools/clang/lib/Sema/SemaChecking.cpp
 1620     return Flags.isUnsigned() ? Context.UnsignedCharTy : Context.SignedCharTy;
 1620     return Flags.isUnsigned() ? Context.UnsignedCharTy : Context.SignedCharTy;
 1622     return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy;
 1622     return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy;
 1624     return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy;
 1624     return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy;
 1627       return Flags.isUnsigned() ? Context.UnsignedLongTy : Context.LongTy;
 1627       return Flags.isUnsigned() ? Context.UnsignedLongTy : Context.LongTy;
 1629       return Flags.isUnsigned() ? Context.UnsignedLongLongTy
 1630                                 : Context.LongLongTy;
 1632     return IsPolyUnsigned ? Context.UnsignedCharTy : Context.SignedCharTy;
 1632     return IsPolyUnsigned ? Context.UnsignedCharTy : Context.SignedCharTy;
 1634     return IsPolyUnsigned ? Context.UnsignedShortTy : Context.ShortTy;
 1634     return IsPolyUnsigned ? Context.UnsignedShortTy : Context.ShortTy;
 1637       return Context.UnsignedLongTy;
 1639       return Context.UnsignedLongLongTy;
 1643     return Context.HalfTy;
 1645     return Context.FloatTy;
 1647     return Context.DoubleTy;