HomeSort by relevance Sort by last modified time
    Searched refs:obj3 (Results 1 - 13 of 13) sorted by null

  /external/jmonkeyengine/engine/src/test/jme3test/tools/
TestTextureAtlas.java 60 Spatial obj3 = assetManager.loadModel("Models/Ninja/Ninja.mesh.xml"); local
61 obj3.setLocalTranslation(-0, 0, 0);
68 scene.attachChild(obj3);
  /external/v8/test/mjsunit/
function-bind.js 223 var obj3 = new f();
224 assertTrue(obj3 instanceof bar);
225 assertTrue(obj3 instanceof f);
226 assertFalse(obj3 instanceof foo);
227 assertFalse(obj3 instanceof Function);
228 assertFalse(obj3 instanceof String);
object-freeze.js 162 var obj3 = { x: 42, y: 'foo' };
164 assertFalse(Object.isFrozen(obj3));
166 Object.defineProperty(obj3, 'x', {configurable: false, writable: false});
167 Object.defineProperty(obj3, 'y', {configurable: false, writable: false});
168 Object.preventExtensions(obj3);
170 assertTrue(Object.isFrozen(obj3));
object-seal.js 172 var obj3 = { x: 42, y: 'foo' };
174 assertFalse(Object.isFrozen(obj3));
176 Object.defineProperty(obj3, 'x', {configurable: false, writable: true});
177 Object.defineProperty(obj3, 'y', {configurable: false, writable: false});
178 Object.preventExtensions(obj3);
180 assertTrue(Object.isSealed(obj3));
object-define-property.js 398 var obj3 = {x:1000};
399 obj3.__defineGetter__("foo", get);
400 obj3.__defineSetter__("foo", set);
402 desc = Object.getOwnPropertyDescriptor(obj3, "foo");
409 assertEquals(1, obj3.foo = 1);
410 assertEquals(1, obj3.x);
411 assertEquals(1, obj3.foo);
415 Object.defineProperty(obj3, "foo", accessorNoConfigurable);
416 desc = Object.getOwnPropertyDescriptor(obj3, "foo");
423 assertEquals(1, obj3.foo = 1)
    [all...]
  /external/chromium/base/
id_map_unittest.cc 64 TestObject obj3; local
68 map.Add(&obj3);
  /external/llvm/unittests/ADT/
ImmutableSetTest.cpp 169 MyIter obj3; local
172 ASSERT_EQ(0, obj3.counter);
HashingTest.cpp 101 NonPOD obj1(1, 2), obj2(3, 4), obj3(5, 6);
102 EXPECT_EQ(hash_combine(obj1, hash_combine(obj2, obj3)),
103 hash_value(std::make_pair(obj1, std::make_pair(obj2, obj3))));
  /dalvik/vm/test/
TestIndirectRefTable.cpp 72 Object* obj3 = dvmAllocObject(clazz, ALLOC_DONT_TRACK); local
204 iref3 = irt.add(cookie, obj3);
  /external/apache-harmony/auth/src/test/java/common/javax/security/auth/
SubjectTest.java 538 private void equalsTest(Object obj1, Object obj2, Object obj3) {
542 if (obj1 == obj2 || obj1 == obj3 || obj2 == obj3) {
555 assertTrue(obj2.equals(obj3));
556 assertTrue(obj1.equals(obj3));
559 assertTrue(obj3.equals(obj1));
560 assertTrue(obj3.equals(obj1));
1561 Object obj3 = new Object(); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ObjectOutputStreamTest.java 1270 Object obj3; local
    [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc 1211 v8::Local<v8::Object> obj3 = js_global->Get(v8_str("obj3")).As<v8::Object>(); local
    [all...]
test-api.cc 6073 v8::Handle<v8::Object> obj3 = templ3->GetFunction()->NewInstance(); local
13427 v8::Handle<v8::Object> obj3 = v8::Object::New(); local
13439 v8::Handle<v8::Object> obj3 = v8::Object::New(); local
    [all...]

Completed in 285 milliseconds