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

Declarations

tools/clang/include/clang/AST/ASTContext.h
 1988   FixedPointSemantics getFixedPointSemantics(QualType Ty) const;

References

tools/clang/lib/AST/ASTContext.cpp
10725   return APFixedPoint::getMax(getFixedPointSemantics(Ty));
10730   return APFixedPoint::getMin(getFixedPointSemantics(Ty));
tools/clang/lib/AST/ExprConstant.cpp
 9796         APFixedPoint(I, Info.Ctx.getFixedPointSemantics(E->getType())), E);
 9801         APFixedPoint(Value, Info.Ctx.getFixedPointSemantics(E->getType())), E);
 9882     auto FXSema = Info.Ctx.getFixedPointSemantics(E->getType());
11471     APFixedPoint LHSFX(Info.Ctx.getFixedPointSemantics(LHSTy));
11472     APFixedPoint RHSFX(Info.Ctx.getFixedPointSemantics(RHSTy));
12139     APFixedPoint Src(Info.Ctx.getFixedPointSemantics(SrcType));
12303   auto DestFXSema = Info.Ctx.getFixedPointSemantics(DestType);
12307     APFixedPoint Src(Info.Ctx.getFixedPointSemantics(SubExpr->getType()));
12323         Src, Info.Ctx.getFixedPointSemantics(DestType), &Overflowed);
12342       Info.Ctx.getFixedPointSemantics(E->getType());
12344   APFixedPoint LHSFX(Info.Ctx.getFixedPointSemantics(LHS->getType()));
12347   APFixedPoint RHSFX(Info.Ctx.getFixedPointSemantics(RHS->getType()));
tools/clang/lib/CodeGen/CGExprScalar.cpp
 1412       CGF.getContext().getFixedPointSemantics(SrcTy);
 1414       CGF.getContext().getFixedPointSemantics(DstTy);
 3398   auto LHSFixedSema = Ctx.getFixedPointSemantics(LHSTy);
 3399   auto RHSFixedSema = Ctx.getFixedPointSemantics(RHSTy);
 3400   auto ResultFixedSema = Ctx.getFixedPointSemantics(ResultTy);
tools/clang/lib/Sema/SemaChecking.cpp
11767             Value, S.Context.getFixedPointSemantics(T), &Overflowed);