Home
last modified time | relevance | path

Searched refs:object1 (Results 1 – 25 of 59) sorted by relevance

123

/external/proguard/src/proguard/util/
DObjectUtil.java35 public static boolean equal(Object object1, Object object2) in equal() argument
37 return object1 == null ? in equal()
39 object1.equals(object2); in equal()
61 public static int compare(Comparable object1, Comparable object2) in compare() argument
63 return object1 == null ? in compare()
65 object2 == null ? 1 : object1.compareTo(object2); in compare()
/external/replicaisland/src/com/replica/replicaisland/
DChannelSystem.java87 public int compare(final Channel object1, final Channel object2) {
89 if (object1 == null && object2 != null) {
91 } else if (object1 != null && object2 == null) {
93 } else if (object1 != null && object2 != null) {
94 if (object1.name == null && object2.name != null) {
96 } else if (object1.name != null && object2.name == null) {
98 } else if (object1.name != null && object2.name != null) {
99 result = object1.name.compareTo(object2.name);
DPhasedObjectManager.java88 public int compare(BaseObject object1, BaseObject object2) { in compare() argument
90 if (object1 != null && object2 != null) { in compare()
91 result = ((PhasedObject) object1).phase - ((PhasedObject) object2).phase; in compare()
92 } else if (object1 == null && object2 != null) { in compare()
94 } else if (object2 == null && object1 != null) { in compare()
DGameObjectCollisionSystem.java321 public int compare(CollisionVolumeRecord object1, CollisionVolumeRecord object2) { in compare() argument
323 if (object1 == null && object2 != null) { in compare()
325 } else if (object1 != null && object2 == null) { in compare()
327 } else if (object1 != null && object2 != null) { in compare()
328 sCompareFlip.flipX = (object1.object.facingDirection.x < 0.0f); in compare()
329 sCompareFlip.flipY = (object1.object.facingDirection.y < 0.0f); in compare()
330 sCompareFlip.parentWidth = object1.object.width; in compare()
331 sCompareFlip.parentHeight = object1.object.height; in compare()
333 final float minX1 = object1.object.getPosition().x in compare()
334 + object1.boundingVolume.getMinXPosition(sCompareFlip); in compare()
DSoundSystem.java182 public int compare(final Sound object1, final Sound object2) { in compare() argument
184 if (object1 == null && object2 != null) { in compare()
186 } else if (object1 != null && object2 == null) { in compare()
188 } else if (object1 != null && object2 != null) { in compare()
189 result = object1.resource - object2.resource; in compare()
DGameObjectManager.java185 public int compare(BaseObject object1, BaseObject object2) { in compare() argument
187 if (object1 == null && object2 != null) { in compare()
189 } else if (object1 != null && object2 == null) { in compare()
191 } else if (object1 != null && object2 != null) { in compare()
192 float delta = ((GameObject) object1).getPosition().x in compare()
DBackgroundCollisionComponent.java408 public int compare(HitPoint object1, HitPoint object2) { in compare() argument
410 if (object1 != null && object2 != null) { in compare()
411 final float obj1Distance = object1.hitPoint.distance2(mOrigin); in compare()
415 } else if (object1 == null && object2 != null) { in compare()
417 } else if (object2 == null && object1 != null) { in compare()
DLevelSelectActivity.java344 public int compare(final LevelMetaData object1, final LevelMetaData object2) { in compare() argument
346 if (object1 == null && object2 != null) { in compare()
348 } else if (object1 != null && object2 == null) { in compare()
350 } else if (object1 != null && object2 != null) { in compare()
351 result = object1.level.timeStamp.compareTo(object2.level.timeStamp); in compare()
/external/llvm/test/CodeGen/X86/
D2012-11-28-merge-store-alias.ll12 %object1 = alloca [10 x i32]
14 %ret0 = call i32 @foo([10 x i32]* %object1) nounwind
16 %O1_1 = getelementptr [10 x i32], [10 x i32]* %object1, i64 0, i32 1
17 %O1_2 = getelementptr [10 x i32], [10 x i32]* %object1, i64 0, i32 2
18 %O1_3 = getelementptr [10 x i32], [10 x i32]* %object1, i64 0, i32 3
19 %O1_4 = getelementptr [10 x i32], [10 x i32]* %object1, i64 0, i32 4
20 %ld_ptr = getelementptr [10 x i32], [10 x i32]* %object1, i64 0, i32 9
28 %ret1 = call i32 @foo([10 x i32]* %object1) nounwind
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
DCommonSuperclassTest.java263 String object1 = "[Ljava/lang/Object;"; in testGetCommonSuperclass_arrays() local
280 superclassTest(object1, object1, one1); in testGetCommonSuperclass_arrays()
283 superclassTest(object1, one1, two1); in testGetCommonSuperclass_arrays()
288 superclassTest(object1, one1, one2); in testGetCommonSuperclass_arrays()
289 superclassTest(object1, two1, one2); in testGetCommonSuperclass_arrays()
292 superclassTest(object1, five1, one2); in testGetCommonSuperclass_arrays()
297 superclassTest(object, object1, one); in testGetCommonSuperclass_arrays()
/external/llvm/test/Transforms/GlobalOpt/
Dinvariant-nodatalayout.ll6 @object1 = global { i32, i32 } zeroinitializer
7 ; CHECK: @object1 = global { i32, i32 } zeroinitializer
10 %ptr = bitcast {i32, i32}* @object1 to i8*
Dinvariant.ll13 @object1 = global i32 0
14 ; CHECK: @object1 = constant i32 -1
16 store i32 -1, i32* @object1
17 %A = bitcast i32* @object1 to i8*
/external/clang/test/SemaObjCXX/
Dconversion-to-objc-pointer-2.mm82 NSObject* object1 = [[[NSObject alloc] init] autorelease];
85 [bar setBlah: object1]; // <== Does not compile. It should.
86 if (object1 == object2)
/external/proguard/src/proguard/classfile/editor/
DClassMemberSorter.java56 public int compare(Object object1, Object object2) in compare() argument
58 ProgramMember member1 = (ProgramMember)object1; in compare()
DAttributeSorter.java80 public int compare(Object object1, Object object2) in compare() argument
82 Attribute attribute1 = (Attribute)object1; in compare()
/external/clang/test/SemaObjC/
Darc-peformselector.m19 - (id)performSelector:(SEL)aSelector withObject:(id)object1 withObject:(id)object2;
37 - (id)performSelector:(SEL)aSelector withObject:(id)object1 withObject:(id)object2 { return 0; }
Dcontinuation-class-err.m9 @property(readwrite, assign) id object1; // expected-note {{property declared here}} property
15 @property(readonly) id object1; // expected-error {{illegal redeclaration of property in class exte… property
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/java/org/mockftpserver/test/
DAbstractTest.java142 protected void assertNotEquals(String message, Object object1, Object object2) { in assertNotEquals() argument
143 assertFalse(message, object1.equals(object2)); in assertNotEquals()
/external/mockftpserver/tags/2.0.1/src/test/java/org/mockftpserver/test/
DAbstractTest.java146 protected void assertNotEquals(String message, Object object1, Object object2) { in assertNotEquals() argument
147 assertFalse(message, object1.equals(object2)); in assertNotEquals()
/external/mockftpserver/tags/2.3/src/test/java/org/mockftpserver/test/
DAbstractTestCase.java146 protected void assertNotEquals(String message, Object object1, Object object2) { in assertNotEquals() argument
147 assertFalse(message, object1.equals(object2)); in assertNotEquals()
/external/mockftpserver/tags/2.0-rc1/src/test/java/org/mockftpserver/test/
DAbstractTest.java142 protected void assertNotEquals(String message, Object object1, Object object2) { in assertNotEquals() argument
143 assertFalse(message, object1.equals(object2)); in assertNotEquals()
/external/mockftpserver/tags/2.0/src/test/java/org/mockftpserver/test/
DAbstractTest.java146 protected void assertNotEquals(String message, Object object1, Object object2) { in assertNotEquals() argument
147 assertFalse(message, object1.equals(object2)); in assertNotEquals()
/external/mockftpserver/tags/1.2.3/src/test/java/org/mockftpserver/test/
DAbstractTest.java142 protected void assertNotEquals(String message, Object object1, Object object2) { in assertNotEquals() argument
143 assertFalse(message, object1.equals(object2)); in assertNotEquals()
/external/mockftpserver/tags/2.0.2/src/test/java/org/mockftpserver/test/
DAbstractTest.java146 protected void assertNotEquals(String message, Object object1, Object object2) { in assertNotEquals() argument
147 assertFalse(message, object1.equals(object2)); in assertNotEquals()
/external/mockftpserver/tags/1.2.1/src/test/java/org/mockftpserver/test/
DAbstractTest.java142 protected void assertNotEquals(String message, Object object1, Object object2) { in assertNotEquals() argument
143 assertFalse(message, object1.equals(object2)); in assertNotEquals()

123