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

/external/clang/lib/Sema/
H A DSemaChecking.cpp4375 static IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, function in namespace:__anon16261
4388 static IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty, function in namespace:__anon16261
4391 return GetValueRange(C, result.getInt(), MaxWidth);
4394 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
4396 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
4403 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
4404 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
4434 return GetValueRange(C, result.Val, GetExprType(E), MaxWidth);

Completed in 55 milliseconds