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

/external/llvm/unittests/IR/
H A DConstantRangeTest.cpp23 static ConstantRange Some; member in class:__anon26495::ConstantRangeTest
30 ConstantRange ConstantRangeTest::Some(APInt(16, 0xa), APInt(16, 0xaaa));
64 EXPECT_FALSE(Some.isFullSet());
65 EXPECT_FALSE(Some.isEmptySet());
66 EXPECT_FALSE(Some.isWrappedSet());
67 EXPECT_FALSE(Some.contains(APInt(16, 0x0)));
68 EXPECT_FALSE(Some.contains(APInt(16, 0x9)));
69 EXPECT_TRUE(Some.contains(APInt(16, 0xa)));
70 EXPECT_TRUE(Some.contains(APInt(16, 0xaa9)));
71 EXPECT_FALSE(Some
[all...]

Completed in 430 milliseconds