HomeSort by relevance Sort by last modified time
    Searched defs:o2 (Results 1 - 25 of 278) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/message/regress/
regress-1527.js 29 var o2 = {
  /external/chromium_org/v8/test/mjsunit/
proto.js 30 var o2 = { x: 12, y: 13 };
31 delete o2.x; // normalize
33 assertTrue(o1.__proto__ === o2.__proto__);
load_poly_effect.js 34 function load(o, o2) {
35 return 1 + (o.x, o2.x_tagged);
39 var o2 = {x_tagged:{}};
40 o2.x_tagged = 1;
42 load({x:1}, o2);
43 load({x:1}, o2);
44 print(load(o, o2));
46 o2.x_tagged = true;
47 print(load(o, o2));
  /external/chromium_org/v8/test/mjsunit/regress/
regress-347262.js 48 y.o2 = 2;
53 var o1 = { o2 : 1 };
55 o1.o2 = 3;
56 return arguments[0] + a[0].o2;
regress-780423.js 36 var o2 = Class.create(); variable
38 assertTrue(o1 !== o2, "different functions");
39 assertTrue(o1.prototype !== o2.prototype, "different protos");
regress-crbug-351320.js 9 o2 = {y:1.5};
10 o2.y = 0;
11 o3 = o2.y;
regress-calls-with-migrating-prototypes.js 37 var o2 = {__proto__: new C1(f) }
43 foo(o2);
47 assertEquals(1, foo(o2));
48 o2.__proto__.f = function() { return 3; };
49 assertEquals(3, foo(o2));
regress-hoist-load-named-field.js 60 var o2 = { y: 1, x: 1 };
64 f2(o2);
66 f2(o2);
regress-polymorphic-load.js 35 var o2 = {__proto__: {x:2}};
37 f(o2);
38 f(o2);
39 f(o2);
43 assertEquals(2, f(o2));
regress-crbug-3867.js 74 var o2 = {s3: 0, s2: 0, s1: 0}
75 o2.s4 = 0;
76 o2.s0 = 0;
77 assertArrayEquals(["s3", "s2", "s1", "s4", "s0"], props(o2));
compare-map-elim1.js 44 var o2 = {z:0, a:1.5, x:1};
47 Object.defineProperty(o2, "foo1", {get:getter});
51 foo(o2);
53 foo2(o2);
54 foo2(o2);
  /art/runtime/
reference_table_test.cc 62 mirror::Object* o2 = mirror::ShortArray::Alloc(soa.Self(), 0); local
64 rt.Add(o2);
90 // Remove o2 ten times.
92 rt.Remove(o2);
  /external/chromium_org/v8/test/webkit/
cyclic-prototypes.js 27 var o2 = { p2: 2 };
28 o2.__proto__ = o1;
30 o3.__proto__ = o2;
delete-getters-setters.js 82 var o2 = { a: 1 };
83 o2.__defineSetter__("a", function() {});
84 o2.__defineSetter__("b", function() {});
85 delete o2.b;
dfg-check-two-structures.js 36 var o2 = {f:44};
47 o = o2;
  /external/libcxx/test/utilities/optional/optional.relops/
less_than.pass.cpp 39 constexpr O o2; // disengaged local
45 static_assert ( !(o1 < o2), "" );
50 static_assert ( !(o2 < o1), "" );
51 static_assert ( !(o2 < o2), "" );
52 static_assert ( o2 < o3 , "" );
53 static_assert ( o2 < o4 , "" );
54 static_assert ( o2 < o5 , "" );
57 static_assert ( !(o3 < o2), "" );
63 static_assert ( !(o4 < o2), "" );
    [all...]
equal.pass.cpp 42 constexpr O o2; // disengaged local
48 static_assert ( o1 == o2 , "" );
53 static_assert ( o2 == o1 , "" );
54 static_assert ( o2 == o2 , "" );
55 static_assert ( !(o2 == o3), "" );
56 static_assert ( !(o2 == o4), "" );
57 static_assert ( !(o2 == o5), "" );
60 static_assert ( !(o3 == o2), "" );
66 static_assert ( !(o4 == o2), "" );
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.relops/
less_than.pass.cpp 39 constexpr O o2; // disengaged local
45 static_assert ( !(o1 < o2), "" );
50 static_assert ( !(o2 < o1), "" );
51 static_assert ( !(o2 < o2), "" );
52 static_assert ( o2 < o3 , "" );
53 static_assert ( o2 < o4 , "" );
54 static_assert ( o2 < o5 , "" );
57 static_assert ( !(o3 < o2), "" );
63 static_assert ( !(o4 < o2), "" );
    [all...]
equal.pass.cpp 42 constexpr O o2; // disengaged local
48 static_assert ( o1 == o2 , "" );
53 static_assert ( o2 == o1 , "" );
54 static_assert ( o2 == o2 , "" );
55 static_assert ( !(o2 == o3), "" );
56 static_assert ( !(o2 == o4), "" );
57 static_assert ( !(o2 == o5), "" );
60 static_assert ( !(o3 == o2), "" );
66 static_assert ( !(o4 == o2), "" );
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
inline-two.js 44 var o2 = {};
45 o2.size = function() { return 42; }
46 o2.g = function() { return this.size(); };
47 for (var i = 0; i < 5; i++) TestInlineX(o2);
49 TestInlineX(o2);
50 TestInlineX({g: o2.g, size:o2.size});
inline-param.js 81 var o2 = {};
82 o2.h = function(i, j) { return i < j; };
83 for (var i = 0; i < 5; i++) TestInlineTwoParams(o2, 42);
85 TestInlineTwoParams(o2, 42);
86 TestInlineTwoParams({h: o2.h}, 42);
pic.js 52 var o2 = { y: 1, x: 0 };
54 o1.f = o2.f = o3.f = function() { return 99; }
60 Test(o2);
65 Test(o2);
smi-stores-opt.js 38 var o2 = {a:{}};
  /external/chromium_org/v8/test/mjsunit/bugs/
bug-1344252.js 70 var o2 = new Object(); class
73 // Add a z accessor in the prototype chain for o1 and o2.
75 // The accessor should be called for o2.
76 o2.z = 27;
78 assertTrue(typeof o2.z == 'undefined');
  /external/clang/test/SemaCXX/
derived-to-base-ambig.cpp 21 Object2* o2; local
22 o2 = e2;
23 o2 = f2; // expected-error{{ambiguous conversion from derived class 'F2' to base class 'Object2':}} expected-error{{assigning to 'Object2 *' from incompatible type 'F2 *'}}

Completed in 236 milliseconds

1 2 3 4 5 6 7 8 91011>>