HomeSort by: relevance | last modified time | path
    Searched defs:IntRange (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 54 struct IntRange {
62 bool IsInRanges(const IntRange &R, const std::vector<IntRange> &Ranges) {
69 Ranges, R, [](IntRange A, IntRange B) { return A.High < B.High; });
225 const std::vector<IntRange> &UnreachableRanges) {
269 IntRange Gap = { GapLow, GapHigh };
419 std::vector<IntRange> UnreachableRanges;
426 IntRange R = {std::numeric_limits<int64_t>::min(),
433 IntRange &LastRange = UnreachableRanges.back()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 10651 struct IntRange {
10661 IntRange(unsigned Width, bool NonNegative)
10670 static IntRange forBoolType() {
10671 return IntRange(1, true);
10675 static IntRange forValueOfType(ASTContext &C, QualType T) {
10681 static IntRange forValueOfCanonicalType(ASTContext &C, const Type *T) {
10701 return IntRange(C.getIntWidth(QualType(T, 0)),
10709 return IntRange(NumPositive, true/*NonNegative*/);
10711 return IntRange(std::max(NumPositive + 1, NumNegative),
10716 return IntRange(EIT->getNumBits(), EIT->isUnsigned())
    [all...]

Completed in 23 milliseconds