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

12

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeWizard.h49 id object1; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeWizard.h49 id object1; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeWizard.h49 id object1; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeWizard.h50 id object1; variable
61 @property (retain) id object1; variable
/external/proguard/src/proguard/classfile/editor/
H A DClassMemberSorter.java56 public int compare(Object object1, Object object2) argument
58 ProgramMember member1 = (ProgramMember)object1;
H A DAttributeSorter.java80 public int compare(Object object1, Object object2) argument
82 Attribute attribute1 = (Attribute)object1;
/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) {
192 float delta = ((GameObject) object1).getPosition().x
H A DBackgroundCollisionComponent.java408 public int compare(HitPoint object1, HitPoint object2) { argument
410 if (object1 != null && object2 != null) {
411 final float obj1Distance = object1.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) {
328 sCompareFlip.flipX = (object1.object.facingDirection.x < 0.0f);
329 sCompareFlip.flipY = (object1.object.facingDirection.y < 0.0f);
330 sCompareFlip.parentWidth = object1.object.width;
331 sCompareFlip.parentHeight = object1.object.height;
333 final float minX1 = object1.object.getPosition().x
334 + object1
[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
792 int hashcode1 = object1.hashCode();
807 public int compare(String object1, String object2) { argument
808 int length1 = object1.length();
823 public int compare(E object1, E object2) { argument
H A DCollectionsTest.java2034 public int compare(Object object1, Object object2) { argument
2035 String s = (String) object1;
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue.cpp393 QScriptValue object1 = engine.evaluate("o1 = new Object();"); local
396 QVERIFY(object1.isObject());
403 QCOMPARE(object1.property("propertyInPrototype").strictlyEquals(number), true);
404 QCOMPARE(object1.property("propertyInPrototype", QScriptValue::ResolvePrototype)
406 QCOMPARE(object1.property("propertyInPrototype", QScriptValue::ResolveLocal).isValid(), false);
/external/ipsec-tools/src/racoon/
H A Deaytest.c735 char *object1 = "d7e6a6c1876ef048"; local
756 data1 = vmalloc(strlen(object1));
759 memcpy(data1->v, object1, data1->l);
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestatk.c748 AtkObject* object1 = atk_object_ref_accessible_child(object, 0); local
749 g_assert(object1);
753 AtkText* textObject1 = ATK_TEXT(object1);
764 g_object_unref(object1);
783 AtkObject* object1 = atk_object_ref_accessible_child(object, 0); local
784 g_assert(object1);
788 AtkText* textObject1 = ATK_TEXT(object1);
799 g_object_unref(object1);
/external/webkit/Source/JavaScriptCore/API/tests/
H A Dtestapi.c787 JSObjectRef object1 = JSObjectMake(context, /* jsClass */ 0, /* data */ 0); local
791 JSObjectSetPrototype(context, object1, JSValueMakeNull(context));
792 ASSERT(JSValueIsNull(context, JSObjectGetPrototype(context, object1)));
794 // object1 -> object1
795 JSObjectSetPrototype(context, object1, object1);
796 result &= assertTrue(JSValueIsNull(context, JSObjectGetPrototype(context, object1)), "It is possible to assign self as a prototype");
798 // object1 -> object2 -> object1
[all...]
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.cc2483 void MacroAssembler::JumpIfNotBothSequentialAsciiStrings(Register object1, argument
2490 mov(scratch1, object1);
2495 mov(scratch1, FieldOperand(object1, HeapObject::kMapOffset));
/external/webkit/Source/WebCore/rendering/
H A DRenderObject.cpp2680 void showRenderTree(const WebCore::RenderObject* object1) argument
2682 showRenderTree(object1, 0);
2685 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderObject* object2) argument
2687 if (object1) {
2688 const WebCore::RenderObject* root = object1;
2691 root->showRenderTreeAndMark(object1, "*", object2, "-", 0);
/external/v8/test/cctest/
H A Dtest-api.cc4327 v8::Handle<v8::Object> object1 = local
4330 object1->Get(v8_str("toString")).As<v8::Object>();
7965 Local<Object> object1 = Local<Object>::Cast(value_obj1); local
7966 value = object1->Get(v8_str("a"));
15687 Local<Object> object1; local
15691 object1 = Object::New();
15712 CHECK(object1->CreationContext() == context1);
15713 CheckContextId(object1, 1);
15727 CHECK(object1->CreationContext() == context1);
15728 CheckContextId(object1,
[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 9439 milliseconds

12