/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/ |
ConditionalBindingTest.java | 23 ConditionalVo obj4 = new ConditionalVo(); local 25 mBinder.setObj4(obj4); 28 obj4.setUseHello(true); 35 ConditionalVo obj4 = new ConditionalVo(); local 37 mBinder.setObj4(obj4); 40 assertFalse(obj4.wasClicked); 44 assertTrue(obj4.wasClicked);
|
MultiArgAdapterTest.java | 36 MultiBindingClass2 obj4 = new MultiBindingClass2(); local 40 obj4.setValue("d", false); 44 mBinder.setObj4(obj4); 50 assertEquals(mBinder.view4.getText().toString(), join(obj4)); 64 obj4.setValue("r", false); 70 assertEquals("obj4 should not be re-evaluated", prev4, mBinder.view4.getText().toString()); 79 MultiBindingClass2 obj4 = new MultiBindingClass2(); local 83 obj4.setValue("d", false); 87 mBinder.setObj4(obj4);
|
/external/v8/test/mjsunit/compiler/ |
proto-chain-constant.js | 33 var obj4 = c(null, { f4: { value: function() { return 4; }, writable: true }}); variable 34 var obj3 = c(obj4, { f3: { value: function() { return 3; }, writable: true }}); 45 obj4.f4 = function() { return 5; };
|
proto-chain-load.js | 32 var obj4 = Object.create(null, { f4: {value: 4} }); 33 var obj3 = Object.create(obj4, { f3: {value: 3} });
|
/art/runtime/gc/accounting/ |
mod_union_table_test.cc | 203 auto* obj4 = AllocObjectArray(self, space, CardTable::kCardSize); local 204 ASSERT_TRUE(obj4 != nullptr); 208 obj3->Set(0, obj4); 209 obj4->Set(0, obj1); 230 // obj3, obj4 don't have a reference to any object in the other space, their cards should have 233 ASSERT_FALSE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj4)));
|
/external/v8/test/mjsunit/ |
accessor-map-sharing.js | 38 var obj1, obj2, obj3, obj4; 183 obj4 = Object.create(obj2); 184 assertTrue(%HaveSameMap(obj3, obj4)); 191 obj4 = Object.create(obj2); 192 assertTrue(%HaveSameMap(obj3, obj4));
|
object-seal.js | 173 var obj4 = {}; variable 174 Object.defineProperty(obj4, 'x', {configurable: true, writable: false}); 175 Object.defineProperty(obj4, 'y', {configurable: false, writable: false}); 176 Object.preventExtensions(obj4); 178 assertFalse(Object.isSealed(obj4)); 181 var obj4 = {}; variable 182 assertTrue(obj4 === Object.seal(obj4));
|
object-freeze.js | 163 var obj4 = {}; variable 164 Object.defineProperty(obj4, 'x', {configurable: false, writable: true}); 165 Object.defineProperty(obj4, 'y', {configurable: false, writable: false}); 166 Object.preventExtensions(obj4); 168 assertFalse(Object.isFrozen(obj4));
|
object-define-property.js | 444 var obj4 = {}; 446 obj4.bar = func; 447 assertEquals(42, obj4.bar()); 449 Object.defineProperty(obj4, "bar", accessorConfigurable); 450 desc = Object.getOwnPropertyDescriptor(obj4, "bar"); 457 assertEquals(1, obj4.bar = 1); 459 assertEquals(5, obj4.bar); 463 obj4.bar(); [all...] |
/external/v8/test/mjsunit/harmony/ |
reflect-define-property.js | 418 var obj4 = {}; 420 obj4.bar = func; 421 assertEquals(42, obj4.bar()); 423 assertTrue(Reflect.defineProperty(obj4, "bar", accessorConfigurable)); 424 desc = Object.getOwnPropertyDescriptor(obj4, "bar"); 431 assertEquals(1, obj4.bar = 1); 433 assertEquals(5, obj4.bar); 437 obj4.bar(); [all...] |
/external/v8/test/cctest/ |
test-heap-profiler.cc | 1879 v8::Local<v8::Object> obj4 = js_global->Get(env.local(), v8_str("obj4")) local [all...] |
/external/guice/extensions/struts2/lib/ |
jsp-2.1.jar | |