HomeSort by relevance Sort by last modified time
    Searched full:object1 (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/webkit/Source/WebKit/mac/WebView/
WebDelegateImplementationCaching.mm 124 static inline id CallDelegate(WebView *self, id delegate, SEL selector, id object1, id object2)
129 return objc_msgSend(delegate, selector, self, object1, object2);
131 return objc_msgSend(delegate, selector, self, object1, object2);
152 static inline id CallDelegate(WebView *self, id delegate, SEL selector, id object1, id object2, id object3)
157 return objc_msgSend(delegate, selector, self, object1, object2, object3);
159 return objc_msgSend(delegate, selector, self, object1, object2, object3);
250 static inline BOOL CallDelegateReturningBoolean(BOOL result, WebView *self, id delegate, SEL selector, id object1, id object2)
255 return reinterpret_cast<BOOL (*)(id, SEL, WebView *, id, id)>(objc_msgSend)(delegate, selector, self, object1, object2);
257 return reinterpret_cast<BOOL (*)(id, SEL, WebView *, id, id)>(objc_msgSend)(delegate, selector, self, object1, object2);
292 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
ChannelSystem.java 87 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);
PhasedObjectManager.java 88 public int compare(BaseObject object1, BaseObject object2) {
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) {
GameObjectManager.java 185 public int compare(BaseObject object1, BaseObject object2) {
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
SoundSystem.java 182 public int compare(final Sound object1, final Sound object2) {
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;
GameObjectCollisionSystem.java 321 public int compare(CollisionVolumeRecord object1, CollisionVolumeRecord object2) {
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.boundingVolume.getMinXPosition(sCompareFlip)
    [all...]
LevelSelectActivity.java 344 public int compare(final LevelMetaData object1, final LevelMetaData object2) {
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);
BackgroundCollisionComponent.java 408 public int compare(HitPoint object1, HitPoint object2) {
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) {
  /external/clang/test/SemaObjCXX/
conversion-to-objc-pointer-2.mm 81 NSObject* object1 = [[[NSObject alloc] init] autorelease];
84 [bar setBlah: object1]; // <== Does not compile. It should.
85 if (object1 == object2)
  /external/clang/test/SemaTemplate/
instantiate-using-decl.cpp 26 void Visit(struct Object1*);
37 void Visit(struct Object1*); // expected-note {{candidate function}}
45 Knot().Visit((struct Object1*) 0);
  /external/clang/test/SemaObjC/
continuation-class-err.m 9 @property(readwrite, assign) id object1; // expected-note {{property declared here}}
15 @property(readonly) id object1; // expected-error {{illegal redeclaration of property in continuation class 'ReadOnly' (attribute must be 'readwrite', while its primary must be 'readonly')}}
arc-peformselector.m 19 - (id)performSelector:(SEL)aSelector withObject:(id)object1 withObject:(id)object2;
37 - (id)performSelector:(SEL)aSelector withObject:(id)object1 withObject:(id)object2 { return 0; }
  /external/proguard/src/proguard/classfile/editor/
ClassMemberSorter.java 56 public int compare(Object object1, Object object2)
58 ProgramMember member1 = (ProgramMember)object1;
AttributeSorter.java 80 public int compare(Object object1, Object object2)
82 Attribute attribute1 = (Attribute)object1;
  /external/valgrind/tsan/
suppressions_test.cc 63 " obj:object1\n"
74 string o[] = {"object1", "object2", "object3"};
81 string o[] = {"object2", "object1", "object3"};
89 string o[] = {"object2", "object1", "object3", "o4"};
97 string o[] = {"o0", "object2", "object1", "object3"};
105 string o[] = {"object2", "object1"};
128 string o[] = {"object2", "object1", "object3"};
135 string o[] = {"object2", "object1", "object3"};
182 string o[] = {"object1", "object2", "object3", "object4"};
189 string o[] = {"object1", "object2", "object3", "object4"}
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldPriorityQueueTest.java 110 public int compare(String object1, String object2) {
111 int length1 = object1.length();
126 public int compare(E object1, E object2) {
  /frameworks/base/core/java/android/gesture/
InstanceLearner.java 30 public int compare(Prediction object1, Prediction object2) {
31 double score1 = object1.score;
  /packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java 155 public int compare(AppEntry object1, AppEntry object2) {
156 if (object1.info.enabled != object2.info.enabled) {
157 return object1.info.enabled ? -1 : 1;
159 return sCollator.compare(object1.label, object2.label);
167 public int compare(AppEntry object1, AppEntry object2) {
168 if (object1.size < object2.size) return 1;
169 if (object1.size > object2.size) return -1;
170 return sCollator.compare(object1.label, object2.label);
178 public int compare(AppEntry object1, AppEntry object2) {
179 if (object1.internalSize < object2.internalSize) return 1
    [all...]
RunningState.java 524 public int compare(ProcessItem object1, ProcessItem object2) {
525 if (object1.mIsStarted != object2.mIsStarted) {
527 return object1.mIsStarted ? -1 : 1;
529 if (object1.mIsSystem != object2.mIsSystem) {
531 return object1.mIsSystem ? 1 : -1;
533 if (object1.mActiveSince != object2.mActiveSince) {
536 return (object1.mActiveSince > object2.mActiveSince) ? -1 : 1;
    [all...]
  /frameworks/base/core/tests/coretests/src/android/accounts/
AccountManagerServiceTest.java 58 public int compare(Account object1, Account object2) {
59 if (object1 == object2) return 0;
60 if (object1 == null) return 1;
62 int result = object1.type.compareTo(object2.type);
64 return object1.name.compareTo(object2.name);
  /external/v8/test/mjsunit/regress/
regress-91517.js 34 function Object1() {
72 obj1 = new Object1();
  /external/webkit/Source/WebCore/bindings/v8/
npruntime_priv.h 72 // +-- Creates -----> Object1
76 // PluginObject will be the "owner" for both Object1 and Object2.
  /external/webkit/Source/JavaScriptCore/API/tests/
testapi.c 787 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...]
  /libcore/luni/src/main/java/java/text/
Collator.java 183 * @param object1
187 * @return a negative value if {@code object1} is less than {@code object2},
188 * 0 if they are equal, and a positive value if {@code object1} is
191 * if {@code object1} or {@code object2} is not a {@code String}.
193 public int compare(Object object1, Object object2) {
194 return compare((String) object1, (String) object2);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PriorityQueueTest.java 791 public int compare(E object1, E object2) {
792 int hashcode1 = object1.hashCode();
807 public int compare(String object1, String object2) {
808 int length1 = object1.length();
823 public int compare(E object1, E object2) {

Completed in 1404 milliseconds

1 2 3