Home
last modified time | relevance | path

Searched refs:GetValueRange (Results 1 – 1 of 1) sorted by relevance

/external/clang/lib/Sema/
DSemaChecking.cpp5675 static IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, in GetValueRange() function
5688 static IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty, in GetValueRange() function
5691 return GetValueRange(C, result.getInt(), MaxWidth); in GetValueRange()
5694 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth); in GetValueRange()
5696 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth); in GetValueRange()
5703 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth); in GetValueRange()
5704 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth); in GetValueRange()
5734 return GetValueRange(C, result.Val, GetExprType(E), MaxWidth); in GetExprRange()