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

Declarations

tools/clang/include/clang/AST/Type.h
 2312   bool isFixedPointType() const;

References

tools/clang/include/clang/AST/Type.h
 6706   return isFixedPointType() || isIntegerType();
 6718   return isFixedPointType() && !isSaturatedFixedPointType();
 6736   return isFixedPointType() && !isSignedFixedPointType();
tools/clang/lib/AST/ASTContext.cpp
10568   assert(Ty->isFixedPointType());
10622   assert(Ty->isFixedPointType());
10668   assert(Ty->isFixedPointType());
10709   assert((Ty->isFixedPointType() || Ty->isIntegerType()) &&
10724   assert(Ty->isFixedPointType());
10729   assert(Ty->isFixedPointType());
tools/clang/lib/AST/Expr.cpp
  941   assert(type->isFixedPointType() && "Illegal type in FixedPointLiteral");
tools/clang/lib/AST/ExprConstant.cpp
 9809     assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
 9866   if (E->getType()->isFixedPointType()) {
 9888   } else if (E->getType()->isFixedPointType()) {
11470   if (LHSTy->isFixedPointType() || RHSTy->isFixedPointType()) {
11470   if (LHSTy->isFixedPointType() || RHSTy->isFixedPointType()) {
12301   assert(DestType->isFixedPointType() &&
13303   } else if (T->isFixedPointType()) {
13480   if (!E->getType()->isFixedPointType())
tools/clang/lib/AST/Type.cpp
 2059     if (BT->isFixedPointType()) return STK_FixedPoint;
tools/clang/lib/CodeGen/CGExprScalar.cpp
  139       return LHSType->isFixedPointType() || RHSType->isFixedPointType();
  139       return LHSType->isFixedPointType() || RHSType->isFixedPointType();
 1181   if (SrcType->isFixedPointType()) {
 1189     if (DstType->isFixedPointType() || DstType->isIntegerType())
 1194   } else if (DstType->isFixedPointType()) {
 2212     assert(E->getType()->isFixedPointType() &&
 2219     assert(E->getType()->isFixedPointType() &&
 2228     assert(DestTy->isFixedPointType() &&
tools/clang/lib/Sema/SemaChecking.cpp
11719   if (Source->isFixedPointType()) {
tools/clang/lib/Sema/SemaExpr.cpp
 1299   assert((LHSTy->isFixedPointType() || RHSTy->isFixedPointType()) &&
 1299   assert((LHSTy->isFixedPointType() || RHSTy->isFixedPointType()) &&
 1406   if (LHSType->isFixedPointType() || RHSType->isFixedPointType())
 1406   if (LHSType->isFixedPointType() || RHSType->isFixedPointType())