Searched defs:GetValueRange (Results 1 - 1 of 1) sorted by relevance

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

Completed in 70 milliseconds