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

/external/clang/lib/Sema/
H A DSemaChecking.cpp3921 static IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, function in namespace:__anon176
3934 static IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty, function in namespace:__anon176
3937 return GetValueRange(C, result.getInt(), MaxWidth);
3940 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
3942 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
3949 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
3950 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
3973 return GetValueRange(C, result.Val, E->getType(), MaxWidth);

Completed in 120 milliseconds