HomeSort by relevance Sort by last modified time
    Searched full:object2 (Results 76 - 100 of 136) sorted by null

1 2 34 5 6

  /external/webkit/LayoutTests/dom/xhtml/level2/html/
object14.xhtml 13 <form name="OBJECT2" action="./files/getData.pl" method="post">
15 <object declare="declare" name="OBJECT2" codetype="image/gif"></object>
object15.xhtml 13 <form name="OBJECT2" action="./files/getData.pl" method="post">
15 <object declare="declare" name="OBJECT2" codetype="image/gif"></object>
HTMLObjectElement01.js 49 docsLoaded += preload(docRef, "doc", "object2");
99 doc = load(docRef, "doc", "object2");
107 assertEquals("idLink","object2",vform);
HTMLObjectElement19.js 49 docsLoaded += preload(docRef, "doc", "object2");
99 doc = load(docRef, "doc", "object2");
HTMLObjectElement20.js 49 docsLoaded += preload(docRef, "doc", "object2");
98 doc = load(docRef, "doc", "object2");
HTMLObjectElement18.js 106 assertEquals("vspaceLink","OBJECT2",vname);
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLObjectElement01.js 49 docsLoaded += preload(docRef, "doc", "object2");
99 doc = load(docRef, "doc", "object2");
107 assertEquals("idLink","object2",vform);
HTMLObjectElement19.js 49 docsLoaded += preload(docRef, "doc", "object2");
99 doc = load(docRef, "doc", "object2");
HTMLObjectElement20.js 49 docsLoaded += preload(docRef, "doc", "object2");
98 doc = load(docRef, "doc", "object2");
HTMLObjectElement18.js 106 assertEquals("vspaceLink","OBJECT2",vname);
  /external/clang/test/SemaObjC/
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)
59 ProgramMember member2 = (ProgramMember)object2;
AttributeSorter.java 80 public int compare(Object object1, Object object2)
83 Attribute attribute2 = (Attribute)object2;
  /external/replicaisland/src/com/replica/replicaisland/
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) {
193 - ((GameObject) object2).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) {
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.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);
  /libcore/luni/src/test/java/libcore/java/util/
OldPriorityQueueTest.java 86 public int compare(String object1, String object2) {
88 int length2 = object2.length();
102 public int compare(E object1, E object2) {
  /frameworks/base/core/java/android/gesture/
InstanceLearner.java 30 public int compare(Prediction object1, Prediction object2) {
32 double score2 = object2.score;
  /frameworks/base/core/tests/coretests/src/android/accounts/
AccountManagerServiceTest.java 58 public int compare(Account object1, Account object2) {
59 if (object1 == object2) return 0;
61 if (object2 == null) return -1;
62 int result = object1.type.compareTo(object2.type);
64 return object1.name.compareTo(object2.name);
  /packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java 165 public int compare(AppEntry object1, AppEntry object2) {
166 if (object1.info.enabled != object2.info.enabled) {
169 return sCollator.compare(object1.label, object2.label);
177 public int compare(AppEntry object1, AppEntry object2) {
178 if (object1.size < object2.size) return 1;
179 if (object1.size > object2.size) return -1;
180 return sCollator.compare(object1.label, object2.label);
188 public int compare(AppEntry object1, AppEntry object2) {
189 if (object1.internalSize < object2.internalSize) return 1;
190 if (object1.internalSize > object2.internalSize) return -1
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
npruntime_priv.h 74 // +-- Creates -----> Object2
76 // PluginObject will be the "owner" for both Object1 and Object2.
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeWizard.m 52 object2 = anObject2;
53 if ( object2 ) [object2 retain];
65 if ( object2 ) [object2 release];
73 [(ANTLRMap *)object2 /* labels */ clear];
74 if ( [(ANTLRTreeWizard *)actor _parse:t Pattern:object1/* tpattern */ Map:object2 /* labels */] ) {
75 [self visit:t Parent:parent ChildIndex:childIndex Map:object2 /* labels */];
80 [(AMutableArray *)object2/* subtrees */ addObject:t];
97 @synthesize object2;
    [all...]
ANTLRTreeWizard.h 51 id object2; variable
62 @property (retain) id object2; variable
  /libcore/luni/src/main/java/java/text/
Collator.java 185 * @param object2
187 * @return a negative value if {@code object1} is less than {@code object2},
189 * greater than {@code object2}.
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);

Completed in 540 milliseconds

1 2 34 5 6