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

1 2 3 4 5 6 7 8 910

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
pic-and-nonpic-4a.s 4 .global obj2
8 .type obj2,%object
12 .size obj2,4
18 obj2: label
pic-and-nonpic-5b.s 8 .word obj2
pic-and-nonpic-4b.s 9 .word obj2
12 .word obj2
pic-and-nonpic-5b.rd 6 0004401c * [^ ]*03 * R_MIPS_REL32 * 00000000 * obj2
7 000a100c * [^ ]*03 * R_MIPS_REL32 * 00000000 * obj2
  /external/v8/test/mjsunit/
compare-objects.js 64 var obj2 = {toString: function() {return "2";}};
66 var less = obj1 < obj2;
67 var greater = obj1 > obj2;
69 test(obj1, obj2, less, greater);
70 test(obj1, obj2, less, greater);
71 test(obj1, obj2, less, greater);
73 test(obj1, obj2, less, greater);
74 test(obj1, obj2, less, greater);
77 test(obj1, obj2, less, greater);
79 obj2.y = 2
    [all...]
accessor-map-sharing.js 38 var obj1, obj2, obj3, obj4;
43 obj2 = {};
44 dp(obj2, "alpha", { get: getter });
45 assertTrue(%HaveSameMap(obj1, obj2));
51 obj2 = {};
52 obj2.__defineGetter__("bravo", getter);
53 assertEquals(getter, obj2.__lookupGetter__("bravo"));
54 assertTrue(%HaveSameMap(obj1, obj2));
59 obj2 = {};
60 dp(obj2, "charlie", { set: setter })
    [all...]
object-prevent-extensions.js 49 var obj2 = {}; variable
50 assertTrue(Object.isExtensible(obj2));
51 obj2.x = 42;
52 assertEquals(42, obj2.x);
53 assertTrue(Object.isExtensible(obj2));
55 Object.preventExtensions(obj2);
56 assertEquals(42, obj2.x);
58 obj2.y = 42;
59 // obj2.y should still be undefined.
60 assertEquals(undefined, obj2.y)
    [all...]
compare-known-objects-tostringtag.js 48 var obj2 = new O;
50 assertTrue(%HaveSameMap(obj1, obj2));
51 test(obj1, obj2);
52 test(obj1, obj2);
57 test(obj1, obj2);
  /external/v8/test/mjsunit/regress/
regress-4534.js 14 obj2 = {};
15 dp(obj2, "golf", { get: getter, configurable: true });
16 dp(obj2, "golf", { set: setter, configurable: true });
17 assertTrue(%HaveSameMap(obj1, obj2));
regress-2163.js 37 var obj1, obj2;
39 // obj1 and obj2 share the getter accessor.
42 obj2 = {}
43 dp(obj2, "alpha", { get: getter });
45 assertEquals(111, obj2.alpha);
47 assertEquals(111, obj2.alpha);
49 // obj1, obj2, and obj3 share the getter accessor.
52 obj2 = {}
53 dp(obj2, "alpha", { get: getter });
60 // obj1 and obj2 share the getter and setter accessor
    [all...]
regress-crbug-417508.js 22 var obj2 = {}; variable
23 Object.defineProperty(obj2, "value",
26 try { bar(obj2); } catch(e) {}
27 try { bar(obj2); } catch(e) {}
29 try { bar(obj2); } catch(e) {}
  /external/v8/test/mjsunit/harmony/
reflect-prevent-extensions.js 50 var obj2 = {}; variable
51 assertTrue(Object.isExtensible(obj2));
52 obj2.x = 42;
53 assertEquals(42, obj2.x);
54 assertTrue(Object.isExtensible(obj2));
56 assertTrue(Reflect.preventExtensions(obj2));
57 assertEquals(42, obj2.x);
59 obj2.y = 42;
60 // obj2.y should still be undefined.
61 assertEquals(undefined, obj2.y)
    [all...]
  /external/valgrind/memcheck/tests/
supponlyobj.supp 11 obj2
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
BasicDependantBindingTest.java 49 for (NotBindableVo obj2 : obj2s) {
51 testWith(obj1, obj2);
54 testWith(obj1, obj2);
59 private void testWith(NotBindableVo obj1, NotBindableVo obj2) {
61 mBinder.setObj2(obj2);
63 assertValues(safeGet(obj1), safeGet(obj2),
64 obj1 == null ? "" : obj1.mergeStringFields(obj2),
65 obj2 == null ? "" : obj2.mergeStringFields(obj1),
67 + (obj2 == null ? null : obj2.getStringValue()
    [all...]
MultiArgAdapterEvaluationTest.java 35 MultiBindingClass2 obj2 = new MultiBindingClass2(); local
37 obj2.setValue("b", false);
39 mBinder.setObj2(obj2);
42 assertEquals(mBinder.merged.getText().toString(), join(obj1.getValue(), obj2.getValue()));
43 assertEquals(mBinder.view2.getText().toString(), join(obj2.getValue()));
44 assertEquals(mBinder.view2text.getText().toString(), obj2.getValue());
51 obj2.setValue("p", false);
54 // now invalidate obj1 only, obj2 should be evaluated as well
57 assertEquals(join(obj1, obj2), mBinder.merged.getText().toString());
58 assertEquals("obj2 should not be re-evaluated", prev2, mBinder.view2.getText().toString())
    [all...]
  /external/clang/test/Rewriter/
properties.m 44 Foo *obj1, *obj2;
46 if (obj1.i == obj2.rrrr)
48 obj1.i = func(obj2.rrrr);
49 obj1.i = obj2.rrrr;
50 obj1.i = (obj2.rrrr);
51 [obj1 setI:[obj2 rrrr]];
52 obj1.i = [obj2 rrrr];
53 obj1.i = 3 + [obj2 rrrr];
  /external/clang/test/Analysis/
retain-release-cf-audited.m 21 CFTypeRef obj2 = CFCreateSomethingAudited(); // expected-warning{{leak}}
22 CFRetain(obj2); // no-warning
23 CFRelease(obj2); // no-warning
30 CFTypeRef obj2 = CFCreateSomethingUnaudited(); // expected-warning{{leak}}
31 CFRetain(obj2); // no-warning
32 CFRelease(obj2); // no-warning
  /external/v8/test/js-perf-test/Object/
assign.js 20 var obj2; variable
27 obj2 = {};
28 src1 = { id: "6930530530", obj1: obj1, obj2: obj2 }; property in class:src1
38 object.obj2 === obj2;
46 obj2 = {};
49 src3 = { obj2: obj2 }; property in class:src3
59 object.obj2 === src3
70 src3 = { obj1: obj1, obj2: obj2 }; property in class:src3
    [all...]
  /external/clang/test/SemaObjCXX/
delay-parsing-cplusfuncs.mm 18 MyClass * Obj1, *Obj2;
39 S::S(MyClass *O1, MyClass *O2) : Obj1(O1), Obj2(O2) {
43 S::S(MyClass *O1) : Obj1(O1){ Obj2 = 0; }
  /art/runtime/
jobject_comparator.cc 36 Handle<mirror::Object> obj2(hs.NewHandle(soa.Decode<mirror::Object*>(jobj2)));
39 } else if (obj2.Get() == nullptr) {
43 if (obj1->GetClass() != obj2->GetClass()) {
44 return obj1->GetClass()->IdentityHashCode() < obj2->GetClass()->IdentityHashCode();
48 const size_t count2 = obj2->SizeOf();
53 return obj1->IdentityHashCode() < obj2->IdentityHashCode();
  /external/v8/test/webkit/
codegen-assign-nontemporary-as-rexp.js 36 var obj2 = {};
37 obj2.forward = (obj['slot'] = victim);
38 return obj2.forward;
51 var obj2 = {};
52 obj2.forward = (obj.slot = victim);
53 return obj2.forward;
  /external/jdiff/src/jdiff/
CompareClassPdiffs.java 16 public int compare(Object obj1, Object obj2){
18 ClassDiff c2 = (ClassDiff)obj2;
ComparePkgPdiffs.java 16 public int compare(Object obj1, Object obj2){
18 PackageDiff p2 = (PackageDiff)obj2;
  /external/llvm/test/DebugInfo/Inputs/
arange-overlap.cc 25 // $ clang -g -fPIC -c arange-overlap.cc -o obj2.o
26 // $ clang -shared obj1.o obj2.o -o <output>
fission-ranges.cc 14 // $ gcc -gsplit-dwarf -O2 -fPIC fission-ranges.cc -c -o obj2.o
16 // $ gcc obj1.o obj2.o -shared -o <output>

Completed in 862 milliseconds

1 2 3 4 5 6 7 8 910