HomeSort by relevance Sort by last modified time
    Searched refs:compareValues (Results 1 - 3 of 3) sorted by null

  /external/llvm/unittests/ADT/
APSIntTest.cpp 81 TEST(APSIntTest, compareValues) {
86 EXPECT_TRUE(APSInt::compareValues(S(7), S(8)) < 0);
87 EXPECT_TRUE(APSInt::compareValues(S(8), S(7)) > 0);
88 EXPECT_TRUE(APSInt::compareValues(S(7), S(7)) == 0);
89 EXPECT_TRUE(APSInt::compareValues(S(-7), S(8)) < 0);
90 EXPECT_TRUE(APSInt::compareValues(S(8), S(-7)) > 0);
91 EXPECT_TRUE(APSInt::compareValues(S(-7), S(-7)) == 0);
92 EXPECT_TRUE(APSInt::compareValues(S(-7), S(-8)) > 0);
93 EXPECT_TRUE(APSInt::compareValues(S(-8), S(-7)) < 0);
94 EXPECT_TRUE(APSInt::compareValues(S(-7), S(-7)) == 0)
    [all...]
  /external/llvm/include/llvm/ADT/
APSInt.h 147 return compareValues(*this, get(RHS)) == 0;
150 return compareValues(*this, get(RHS)) != 0;
153 return compareValues(*this, get(RHS)) <= 0;
156 return compareValues(*this, get(RHS)) >= 0;
159 return compareValues(*this, get(RHS)) < 0;
162 return compareValues(*this, get(RHS)) > 0;
282 return !compareValues(I1, I2);
286 static int compareValues(const APSInt &I1, const APSInt &I2) {
292 return compareValues(I1, I2.extend(I1.getBitWidth()));
294 return compareValues(I1.extend(I2.getBitWidth()), I2)
    [all...]
  /external/robolectric/lib/main/
h2-1.2.147.jar 

Completed in 368 milliseconds