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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/regress/
regress-convert-enum.js 39 var o1 = {};
40 o1.a = 1;
43 for (var x in o1) { }
44 o1.b = function() { return 1; };
regress-330046.js 30 var o1 = {a : 10};
32 o2.__proto__ = o1;
regress-347262.js 53 var o1 = { o2 : 1 };
54 var a = g(o1);
55 o1.o2 = 3;
regress-780423.js 35 var o1 = Class.create(); variable
38 assertTrue(o1 !== o2, "different functions");
39 assertTrue(o1.prototype !== o2.prototype, "different protos");
regress-polymorphic-store.js 30 var o1 = {};
31 o1.f1 = function() { return 10; };
32 o1.x = 5;
33 o1.y = 2;
43 store(o1, 0);
46 store(o1, 10);
47 assertEquals(5, o1.x);
48 assertEquals(10, o1.y);
regress-polymorphic-load.js 34 var o1 = {x:1};
40 f(o1);
42 assertEquals(1, f(o1));
regress-crbug-3867.js 69 var o1 = {s1: 0, s2: 0, s3: 0}
70 o1.s0 = 0;
71 o1.s4 = 0;
72 assertArrayEquals(["s1", "s2", "s3", "s0", "s4"], props(o1));
compare-map-elim1.js 43 var o1 = {z:0, x:1};
46 Object.defineProperty(o1, "foo1", {get:getter});
49 foo(o1);
50 foo(o1);
57 foo(o1);
  /external/libcxx/test/utilities/optional/optional.nullops/
eqaul.pass.cpp 29 constexpr O o1; // disengaged local
32 static_assert ( nullopt == o1 , "" );
34 static_assert ( o1 == nullopt , "" );
37 static_assert (noexcept(nullopt == o1), "");
38 static_assert (noexcept(o1 == nullopt), "");
less_than.pass.cpp 29 constexpr O o1; // disengaged local
32 static_assert ( !(nullopt < o1), "" );
34 static_assert ( !(o1 < nullopt), "" );
37 static_assert (noexcept(nullopt < o1), "");
38 static_assert (noexcept(o1 < nullopt), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.nullops/
eqaul.pass.cpp 29 constexpr O o1; // disengaged local
32 static_assert ( nullopt == o1 , "" );
34 static_assert ( o1 == nullopt , "" );
37 static_assert (noexcept(nullopt == o1), "");
38 static_assert (noexcept(o1 == nullopt), "");
less_than.pass.cpp 29 constexpr O o1; // disengaged local
32 static_assert ( !(nullopt < o1), "" );
34 static_assert ( !(o1 < nullopt), "" );
37 static_assert (noexcept(nullopt < o1), "");
38 static_assert (noexcept(o1 < nullopt), "");
  /external/chromium_org/v8/test/mjsunit/
never-optimize.js 30 function o1() { function
33 if (%GetOptimizationStatus(o1) != 4) {
35 o1(); o1();
36 %OptimizeFunctionOnNextCall(o1);
37 o1();
40 assertOptimized(o1);
proto.js 28 var o1 = { x: 12 };
33 assertTrue(o1.__proto__ === o2.__proto__);
object-toprimitive.js 32 var o1 = { toString: function() { return 42; },
34 var n1 = Number(o1);
35 var s1 = String(o1);
  /art/runtime/
reference_table_test.cc 31 mirror::Object* o1 = mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello"); local
47 // Check removal of all o1 in a empty table is a no-op.
48 rt.Remove(o1);
51 // Add o1 and check we have 1 element and can dump.
53 rt.Add(o1);
81 // Remove o1 (first element).
83 rt.Remove(o1);
  /external/chromium_org/v8/test/message/regress/
regress-1527.js 28 var o1 = {foo: 'bar'};
31 2: o1.foo,
  /external/libcxx/test/utilities/optional/optional.comp_with_t/
equal.pass.cpp 41 constexpr O o1; // disengaged local
45 static_assert ( !(o1 == T(1)), "" );
51 static_assert ( !(T(1) == o1), "" );
less_than.pass.cpp 42 constexpr O o1; // disengaged local
46 static_assert ( o1 < T(1) , "" );
53 static_assert ( !(T(1) < o1), "" );
  /external/libcxx/test/utilities/optional/optional.relops/
less_than.pass.cpp 38 constexpr O o1; // disengaged local
44 static_assert ( !(o1 < o1), "" );
45 static_assert ( !(o1 < o2), "" );
46 static_assert ( o1 < o3 , "" );
47 static_assert ( o1 < o4 , "" );
48 static_assert ( o1 < o5 , "" );
50 static_assert ( !(o2 < o1), "" );
56 static_assert ( !(o3 < o1), "" );
62 static_assert ( !(o4 < o1), "" );
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.comp_with_t/
equal.pass.cpp 41 constexpr O o1; // disengaged local
45 static_assert ( !(o1 == T(1)), "" );
51 static_assert ( !(T(1) == o1), "" );
less_than.pass.cpp 42 constexpr O o1; // disengaged local
46 static_assert ( o1 < T(1) , "" );
53 static_assert ( !(T(1) < o1), "" );
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.relops/
less_than.pass.cpp 38 constexpr O o1; // disengaged local
44 static_assert ( !(o1 < o1), "" );
45 static_assert ( !(o1 < o2), "" );
46 static_assert ( o1 < o3 , "" );
47 static_assert ( o1 < o4 , "" );
48 static_assert ( o1 < o5 , "" );
50 static_assert ( !(o2 < o1), "" );
56 static_assert ( !(o3 < o1), "" );
62 static_assert ( !(o4 < o1), "" );
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
toMethod.js 54 var o1 = {};
63 var gMeth = g.toMethod(o1);
66 assertEquals(o1, gMeth[%HomeObjectSymbol()]);
104 var o1 = {y : 1024, x : "abc"};
105 assertEquals("abc", f(o1));
106 assertEquals("abc", g(o1));
  /external/chromium_org/v8/test/webkit/
dfg-check-two-structures.js 35 var o1 = {f:42, g:43};
44 o = o1;

Completed in 577 milliseconds

1 2 3 4 5 6 7 8 91011>>