Searched refs:implies (Results 1 – 6 of 6) sorted by relevance
170 assertThat(Utils.implies(false, false)).isTrue(); in testImplies()171 assertThat(Utils.implies(false, true)).isTrue(); in testImplies()172 assertThat(Utils.implies(true, false)).isFalse(); in testImplies()173 assertThat(Utils.implies(true, true)).isTrue(); in testImplies()
63 --device-serial DEVICE_SERIAL device serial number, implies --device
212 // desktops) support at least sse4.2/popcount. This firstly implies that the ART213 // runtime binary itself may exploit these features. Secondly, this implies that
128 The randomness of fuzz testing implies that the size and scope of testing is no
231 public static boolean implies(boolean cond1, boolean cond2) { in implies() method in Utils
184 Utils.check(Utils.implies(needsToBeShared, canBePublic)); in dexopt()