HomeSort by relevance Sort by last modified time
    Searched full:obj2 (Results 51 - 75 of 178) sorted by null

1 23 4 5 6 7 8

  /external/chromium_org/v8/test/mjsunit/
object-literal.js 41 var obj2 = {
47 assertEquals(7, obj2.a);
48 assertEquals(12, obj2.b.x);
49 assertEquals(24, obj2.b.y);
50 assertEquals('Zebra', obj2.c);
object-define-property.js 333 var obj2 = {};
336 Object.defineProperty(obj2, "foo", accessorConfigurable);
339 Object.defineProperty(obj2, "foo", dataConfigurable);
340 desc = Object.getOwnPropertyDescriptor(obj2, "foo");
341 assertEquals(obj2.foo, 1000);
351 Object.defineProperty(obj2, "foo", accessorConfigurable);
352 desc = Object.getOwnPropertyDescriptor(obj2, "foo");
359 assertEquals(1, obj2.foo = 1);
362 assertEquals(3, obj2.foo);
365 Object.defineProperty(obj2, "bar", dataConfigurable
    [all...]
samevalue.js 33 var obj2 = {x: 10, y: 11, z: "test"};
54 assertFalse(natives.SameValue(obj1, obj2));
  /external/v8/test/mjsunit/
object-literal.js 41 var obj2 = {
47 assertEquals(7, obj2.a);
48 assertEquals(12, obj2.b.x);
49 assertEquals(24, obj2.b.y);
50 assertEquals('Zebra', obj2.c);
object-define-property.js 333 var obj2 = {};
336 Object.defineProperty(obj2, "foo", accessorConfigurable);
339 Object.defineProperty(obj2, "foo", dataConfigurable);
340 desc = Object.getOwnPropertyDescriptor(obj2, "foo");
341 assertEquals(obj2.foo, 1000);
351 Object.defineProperty(obj2, "foo", accessorConfigurable);
352 desc = Object.getOwnPropertyDescriptor(obj2, "foo");
359 assertEquals(1, obj2.foo = 1);
362 assertEquals(3, obj2.foo);
365 Object.defineProperty(obj2, "bar", dataConfigurable
    [all...]
  /external/apache-http/src/org/apache/http/util/
LangUtils.java 63 public static boolean equals(final Object obj1, final Object obj2) {
64 return obj1 == null ? obj2 == null : obj1.equals(obj2);
  /external/clang/test/SemaObjC/
block-type-safety.m 91 MyThing *obj2 = (MyThing *)obj;
92 [obj2 printThing];
146 typedef NSComparisonResult (^NSComparator)(id obj1, id obj2);
illegal-nonarc-bridged-cast.m 20 id obj2 = (__bridge_transfer NSString*)CFCreateString(); // expected-warning {{'__bridge_transfer' casts have no effect when not using ARC}}
  /external/jmonkeyengine/engine/src/test/jme3test/tools/
TestTextureAtlas.java 58 Spatial obj2 = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); local
59 obj2.setLocalTranslation(-2, 0, 0);
67 scene.attachChild(obj2);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRMapElement.h 46 + (id) newANTLRMapElementWithObj1:(id)anObj1 Obj2:(id)anObj2;
51 - (id) initWithObj1:(id)anObj1 Obj2:(id)anObj2;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRMapElement.h 46 + (id) newANTLRMapElementWithObj1:(id)anObj1 Obj2:(id)anObj2;
51 - (id) initWithObj1:(id)anObj1 Obj2:(id)anObj2;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRMapElement.h 46 + (id) newANTLRMapElementWithObj1:(id)anObj1 Obj2:(id)anObj2;
51 - (id) initWithObj1:(id)anObj1 Obj2:(id)anObj2;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRMapElement.h 46 + (id) newANTLRMapElementWithObj1:(id)anObj1 Obj2:(id)anObj2;
51 - (id) initWithObj1:(id)anObj1 Obj2:(id)anObj2;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
options.js 494 var obj2 = baseline.data[i];
497 if (obj.url != obj2.url ||
498 obj.iterations != obj2.iterations) {
502 obj.mean -= obj2.mean;
503 obj.stddev -= obj2.stddev;
504 obj.min -= obj2.min;
505 obj.max -= obj2.max;
506 obj.readbps -= obj2.readbps;
507 obj.writebps -= obj2.writebps;
508 obj.readKB -= obj2.readKB
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sample/chromium/
subsetter_impl.h 48 // FooPtr obj2 = obj; // ref count = 2
49 // } // ref count = 1, obj2 out of scope
  /external/sfntly/cpp/src/sample/chromium/
subsetter_impl.h 48 // FooPtr obj2 = obj; // ref count = 2
49 // } // ref count = 1, obj2 out of scope
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForFSB.java 281 * @param obj2 the object to compare this <code>String</code>
289 public boolean equals(XMLString obj2)
292 if (this == obj2)
299 if (n == obj2.length())
307 if (fsb.charAt(i) != obj2.charAt(j))
325 * @param obj2 Object to compare this to
331 public boolean equals(XObject obj2)
334 if (this == obj2)
338 if(obj2.getType() == XObject.CLASS_NUMBER)
339 return obj2.equals(this)
    [all...]
XNumber.java 387 * @param obj2 Object to compare this to
393 public boolean equals(XObject obj2)
399 int t = obj2.getType();
403 return obj2.equals(this);
405 return obj2.bool() == bool();
407 return m_val == obj2.num();
XString.java 285 * @param obj2 Object to compare this to
291 public boolean equals(XObject obj2)
297 int t = obj2.getType();
301 return obj2.equals(this);
306 return obj2.bool() == bool();
310 return obj2.num() == num();
319 return xstr().equals(obj2.xstr());
328 * @param obj2 the object to compare this <code>String</code> against.
334 public boolean equals(String obj2) {
335 return str().equals(obj2);
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_pmaps.c 119 ASN1_OBJECT *obj1, *obj2;
137 obj2 = OBJ_txt2obj(val->value, 0);
138 if(!obj1 || !obj2) {
151 pmap->subjectDomainPolicy = obj2;
  /external/openssl/crypto/x509v3/
v3_pmaps.c 119 ASN1_OBJECT *obj1, *obj2;
137 obj2 = OBJ_txt2obj(val->value, 0);
138 if(!obj1 || !obj2) {
151 pmap->subjectDomainPolicy = obj2;
  /art/runtime/
indirect_reference_table_test.cc 56 mirror::Object* obj2 = c->AllocObject(soa.Self()); local
57 ASSERT_TRUE(obj2 != NULL);
75 IndirectRef iref2 = irt.Add(cookie, obj2);
81 EXPECT_EQ(obj2, irt.Get(iref2));
101 iref2 = irt.Add(cookie, obj2);
121 iref2 = irt.Add(cookie, obj2);
150 iref2 = irt.Add(cookie, obj2);
  /dalvik/vm/test/
TestIndirectRefTable.cpp 71 Object* obj2 = dvmAllocObject(clazz, ALLOC_DONT_TRACK); local
92 iref2 = irt.add(cookie, obj2);
100 irt.get(iref2) != obj2) {
103 obj0, obj1, obj2);
135 iref2 = irt.add(cookie, obj2);
162 iref2 = irt.add(cookie, obj2);
203 iref2 = irt.add(cookie, obj2);
  /external/skia/tests/
SerializationTest.cpp 132 T obj2; local
133 SerializationUtils<T>::Read(buffer2, &obj2);
165 T* obj2 = NULL; local
166 SerializationUtils<T>::Read(buffer2, &obj2);
172 REPORTER_ASSERT(reporter, NULL != obj2);
176 REPORTER_ASSERT(reporter, NULL == obj2);
179 return obj2; // Return object to perform further validity tests on it
  /external/clang/test/Analysis/inlining/
RetainCountExamples.m 118 DelegateTest *obj2 = [[DelegateTest alloc] init]; // no-warning
120 updateObject(obj2, releaseObj);

Completed in 1229 milliseconds

1 23 4 5 6 7 8