Home
last modified time | relevance | path

Searched refs:equality (Results 1 – 25 of 107) sorted by relevance

12345

/external/guice/core/test/com/google/inject/
DDuplicateBindingsTest.java290 a.equality = "test"; in testHashcodeNeverCalledOnInstance()
294 b.equality = "test"; in testHashcodeNeverCalledOnInstance()
308 a.equality = "test"; in testHashcodeNeverCalledOnProviderInstance()
312 b.equality = "test"; in testHashcodeNeverCalledOnProviderInstance()
539 private String equality; field in DuplicateBindingsTest.HashEqualsTester
552 if(equality == null && o.equality == null) { in equals()
555 return Objects.equal(equality, o.equality); in equals()
/external/guice/core/test/com/google/inject/util/
DOverrideModuleTest.java599 a.equality = "test"; in testHashcodeNeverCalledOnInstance()
603 b.equality = "test"; in testHashcodeNeverCalledOnInstance()
617 a.equality = "test"; in testHashcodeNeverCalledOnProviderInstance()
621 b.equality = "test"; in testHashcodeNeverCalledOnProviderInstance()
633 private String equality; field in OverrideModuleTest.HashEqualsTester
646 if(equality == null && o.equality == null) { in equals()
649 return Objects.equal(equality, o.equality); in equals()
/external/guice/extensions/multibindings/src/com/google/inject/multibindings/
DOptionalBinder.java683 private final Object equality; field in OptionalBinder.RealOptionalBinder.RealOptionalBinderProviderWithDependencies
685 public RealOptionalBinderProviderWithDependencies(Object equality) { in RealOptionalBinderProviderWithDependencies() argument
686 this.equality = equality; in RealOptionalBinderProviderWithDependencies()
691 && equality.equals(((RealOptionalBinderProviderWithDependencies<?>) obj).equality); in equals()
695 return equality.hashCode(); in hashCode()
DMapBinder.java816 public RealMapWithExtensionProvider(Object equality) { in RealMapWithExtensionProvider() argument
817 super(equality); in RealMapWithExtensionProvider()
826 private final Object equality; field in MapBinder.RealMapBinder.RealMapBinderProviderWithDependencies
828 public RealMapBinderProviderWithDependencies(Object equality) { in RealMapBinderProviderWithDependencies() argument
829 this.equality = equality; in RealMapBinderProviderWithDependencies()
835 equality.equals(((RealMapBinderProviderWithDependencies<?>)obj).equality); in equals()
840 return equality.hashCode(); in hashCode()
/external/llvm/test/CodeGen/SystemZ/
Dint-cmp-34.ll92 ; Check equality comparisons with 0.
105 ; Check equality comparisons with 1.
118 ; Check equality comparisons with the high end of the signed 16-bit range.
142 ; Check equality comparisons with -1.
155 ; Check equality comparisons with the low end of the 16-bit signed range.
Dint-cmp-32.ll92 ; Check equality comparisons with 0.
105 ; Check equality comparisons with 1.
118 ; Check equality comparisons with the high end of the signed 16-bit range.
142 ; Check equality comparisons with -1.
155 ; Check equality comparisons with the low end of the 16-bit signed range.
Dint-cmp-15.ll77 ; Check equality comparisons at the low end of the signed 8-bit range.
89 ; Check equality comparisons at the low end of the unsigned 8-bit range.
101 ; Check equality comparisons at the high end of the signed 8-bit range.
113 ; Check equality comparisons at the high end of the unsigned 8-bit range.
Dint-cmp-46.ll102 ; an equality comparison with zero.
257 ; Check that we can use TMLL for equality comparisons with the mask.
335 ; to equality comparisons with the mask.
373 ; Check that we can use TMLL for equality comparisons for the low bit
413 ; Check that we can use TMLL for equality comparisons for the high bit
Dint-cmp-33.ll43 ; Check equality comparisons with 32768, the lowest value for which
57 ; Check equality comparisons with the high end of the unsigned 16-bit range.
Dint-cmp-35.ll43 ; Check equality comparisons with 32768, the lowest value for which
57 ; Check equality comparisons with the high end of the unsigned 16-bit range.
Dint-cmp-24.ll1 ; Test 16-bit equality comparisons between memory and a constant.
Dstrcmp-01.ll23 ; Check a case where the result is tested for equality.
Dstrcmp-02.ll24 ; Check a case where the result is tested for equality.
Dint-cmp-43.ll45 ; Check equality, which can use CRL or CLRL.
Dint-cmp-36.ll46 ; Check equality.
Dint-cmp-41.ll46 ; Check equality.
Dint-cmp-39.ll46 ; Check equality.
Dint-cmp-42.ll46 ; Check equality.
/external/llvm/test/Analysis/BasicAA/
D2003-04-25-GEPCrash.ll2 ; Test for a bug in BasicAA which caused a crash when querying equality of P1&P2
D2003-03-04-GEPCrash.ll2 ; Test for a bug in BasicAA which caused a crash when querying equality of P1&P2
/external/clang/test/SemaObjC/
Dself-assign.m10 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
Didiomatic-parentheses.m32 … // expected-note {{use '==' to turn this assignment into an equality comparison}}
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DKeyStore2Test.java371 boolean equality = Arrays.equals(retB, priB); in test_getKeyLjava_lang_String$C()
372 equality &= returnedKey.getAlgorithm() in test_getKeyLjava_lang_String$C()
374 equality &= returnedKey.getFormat().equals(privateKey.getFormat()); in test_getKeyLjava_lang_String$C()
376 + "key entry did not equal the original key", equality); in test_getKeyLjava_lang_String$C()
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
Djsilver.sablecc457 = {and} [left]:and_expression and [right]:equality // x.y && a.b
459 | {equality} [value]:equality // x.y
463 equality {->expression}
464 = {eq} [left]:equality eq [right]:comparison // x.y == a.b
466 | {ne} [left]:equality ne [right]:comparison // x.y != a.b
/external/libpcap/msdos/
Dpkt_rx1.s76 ; A test for equality is done by putting CX in _pktRxBuf [n].firstCount

12345