Searched defs:object2 (Results 1 - 25 of 26) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeWizard.h50 id object2; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeWizard.h50 id object2; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeWizard.h50 id object2; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeWizard.h51 id object2; variable
62 @property (retain) id object2; variable
/external/proguard/src/proguard/classfile/editor/
H A DClassMemberSorter.java56 public int compare(Object object1, Object object2) argument
59 ProgramMember member2 = (ProgramMember)object2;
H A DAttributeSorter.java80 public int compare(Object object1, Object object2) argument
83 Attribute attribute2 = (Attribute)object2;
/external/replicaisland/src/com/replica/replicaisland/
H A DChannelSystem.java87 public int compare(final Channel object1, final Channel object2) { argument
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);
H A DPhasedObjectManager.java88 public int compare(BaseObject object1, BaseObject object2) { argument
90 if (object1 != null && object2 != null) {
91 result = ((PhasedObject) object1).phase - ((PhasedObject) object2).phase;
92 } else if (object1 == null && object2 != null) {
94 } else if (object2 == null && object1 != null) {
H A DGameObjectManager.java185 public int compare(BaseObject object1, BaseObject object2) { argument
187 if (object1 == null && object2 != null) {
189 } else if (object1 != null && object2 == null) {
191 } else if (object1 != null && object2 != null) {
193 - ((GameObject) object2).getPosition().x;
H A DBackgroundCollisionComponent.java408 public int compare(HitPoint object1, HitPoint object2) { argument
410 if (object1 != null && object2 != null) {
412 final float obj2Distance = object2.hitPoint.distance2(mOrigin);
415 } else if (object1 == null && object2 != null) {
417 } else if (object2 == null && object1 != null) {
H A DGameObjectCollisionSystem.java321 public int compare(CollisionVolumeRecord object1, CollisionVolumeRecord object2) { argument
323 if (object1 == null && object2 != null) {
325 } else if (object1 != null && object2 == null) {
327 } else if (object1 != null && object2 != null) {
336 sCompareFlip.flipX = (object2.object.facingDirection.x < 0.0f);
337 sCompareFlip.flipY = (object2.object.facingDirection.y < 0.0f);
338 sCompareFlip.parentWidth = object2.object.width;
339 sCompareFlip.parentHeight = object2.object.height;
341 final float minX2 = object2.object.getPosition().x
342 + object2
[all...]
H A DSoundSystem.java182 public int compare(final Sound object1, final Sound object2) { argument
184 if (object1 == null && object2 != null) {
186 } else if (object1 != null && object2 == null) {
188 } else if (object1 != null && object2 != null) {
189 result = object1.resource - object2.resource;
H A DLevelSelectActivity.java344 public int compare(final LevelMetaData object1, final LevelMetaData object2) { argument
346 if (object1 == null && object2 != null) {
348 } else if (object1 != null && object2 == null) {
350 } else if (object1 != null && object2 != null) {
351 result = object1.level.timeStamp.compareTo(object2.level.timeStamp);
H A DGameObjectFactory.java6734 public int compare(final GameComponentPool object1, final GameComponentPool object2) { argument
6736 if (object1 == null && object2 != null) {
6738 } else if (object1 != null && object2 == null) {
6740 } else if (object1 != null && object2 != null) {
6741 result = object1.objectClass.hashCode() - object2.objectClass.hashCode();
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DPriorityQueueTest.java791 public int compare(E object1, E object2) { argument
793 int hashcode2 = object2.hashCode();
807 public int compare(String object1, String object2) { argument
809 int length2 = object2.length();
823 public int compare(E object1, E object2) { argument
H A DCollectionsTest.java2034 public int compare(Object object1, Object object2) { argument
2037 if(object2 instanceof String){
2038 length = ((String)object2).length();
2042 length = (Integer) object2;
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue.cpp394 QScriptValue object2 = engine.evaluate("o2 = new Object(); o1.__proto__ = o2; o2"); local
397 QVERIFY(object2.isObject());
400 object2.setProperty("propertyInPrototype", number);
401 QVERIFY(object2.property("propertyInPrototype").isNumber());
476 QScriptValue object2 = eng.newObject(); local
477 object.setPrototype(object2);
479 object2.setProperty("propertyInPrototype", num2);
620 QScriptValue object2 = eng.newObject(); local
621 object2.setPrototype(object);
622 // QCOMPARE(object2
799 QScriptValue object2 = engine.evaluate("new Object()"); local
[all...]
/external/ipsec-tools/src/racoon/
H A Deaytest.c736 char *object2 = "8bb74958b9fee94e"; local
757 data2 = vmalloc(strlen(object2));
760 memcpy(data2->v, object2, data2->l);
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestatk.c750 AtkObject* object2 = atk_object_ref_accessible_child(object, 1); local
751 g_assert(object2);
755 AtkText* textObject2 = ATK_TEXT(object2);
765 g_object_unref(object2);
785 AtkObject* object2 = atk_object_ref_accessible_child(object, 1); local
786 g_assert(object2);
790 AtkText* textObject2 = ATK_TEXT(object2);
800 g_object_unref(object2);
/external/webkit/Source/JavaScriptCore/API/tests/
H A Dtestapi.c788 JSObjectRef object2 = JSObjectMake(context, /* jsClass */ 0, /* data */ 0); local
798 // object1 -> object2 -> object1
799 JSObjectSetPrototype(context, object2, object1);
800 ASSERT(JSValueIsStrictEqual(context, JSObjectGetPrototype(context, object2), object1));
801 JSObjectSetPrototype(context, object1, object2);
804 // object1 -> object2 -> object3 -> object1
805 JSObjectSetPrototype(context, object2, object3);
806 ASSERT(JSValueIsStrictEqual(context, JSObjectGetPrototype(context, object2), object3));
807 JSObjectSetPrototype(context, object1, object2);
808 ASSERT(JSValueIsStrictEqual(context, JSObjectGetPrototype(context, object1), object2));
[all...]
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.cc2484 Register object2,
2491 and_(scratch1, object2);
2496 mov(scratch2, FieldOperand(object2, HeapObject::kMapOffset));
2483 JumpIfNotBothSequentialAsciiStrings(Register object1, Register object2, Register scratch1, Register scratch2, Label* failure) argument
/external/webkit/Source/WebCore/rendering/
H A DRenderObject.cpp2685 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderObject* object2) argument
2691 root->showRenderTreeAndMark(object1, "*", object2, "-", 0);
/external/v8/test/cctest/
H A Dtest-api.cc7982 Local<Object> object2 = Local<Object>::Cast(value_obj2); local
7983 value = object2->Get(v8_str("a"));
15695 Local<Object> object2; local
15699 object2 = Object::New();
15718 CHECK(object2->CreationContext() == context2);
15719 CheckContextId(object2, 2);
15733 CHECK(object2->CreationContext() == context2);
15734 CheckContextId(object2, 2);
15749 CHECK(object2->CreationContext() == context2);
15750 CheckContextId(object2,
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1893 milliseconds

12