Searched defs:o1 (Results 1 - 25 of 121) sorted by relevance

12345

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-convert-enum.js39 var o1 = {};
40 o1.a = 1;
43 for (var x in o1) { }
44 o1.b = function() { return 1; };
H A Dregress-330046.js30 var o1 = {a : 10};
32 o2.__proto__ = o1;
H A Dregress-347262.js53 var o1 = { o2 : 1 };
54 var a = g(o1);
55 o1.o2 = 3;
H A Dregress-780423.js35 var o1 = Class.create(); variable
38 assertTrue(o1 !== o2, "different functions");
39 assertTrue(o1.prototype !== o2.prototype, "different protos");
H A Dregress-polymorphic-store.js30 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);
H A Dregress-polymorphic-load.js34 var o1 = {x:1};
40 f(o1);
42 assertEquals(1, f(o1));
H A Dregress-crbug-3867.js69 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));
H A Dcompare-map-elim1.js43 var o1 = {z:0, x:1};
46 Object.defineProperty(o1, "foo1", {get:getter});
49 foo(o1);
50 foo(o1);
57 foo(o1);
H A Dregress-hoist-load-named-field.js59 var o1 = { x: 1.5 };
62 f2(o1);
63 f2(o1);
/external/libcxx/test/utilities/optional/optional.nullops/
H A Deqaul.pass.cpp29 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), "");
H A Dless_than.pass.cpp29 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/
H A Dnever-optimize.js30 function o1() { function
33 if (%GetOptimizationStatus(o1) != 4) {
35 o1(); o1();
36 %OptimizeFunctionOnNextCall(o1);
37 o1();
40 assertOptimized(o1);
H A Dproto.js28 var o1 = { x: 12 };
33 assertTrue(o1.__proto__ === o2.__proto__);
H A Dobject-toprimitive.js32 var o1 = { toString: function() { return 42; },
34 var n1 = Number(o1);
35 var s1 = String(o1);
/external/chromium_org/v8/test/message/regress/
H A Dregress-1527.js28 var o1 = {foo: 'bar'};
31 2: o1.foo,
/external/chromium_org/v8/test/mjsunit/harmony/
H A DtoMethod.js54 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/
H A Ddfg-check-two-structures.js35 var o1 = {f:42, g:43};
44 o = o1;
/external/apache-http/src/org/apache/commons/codec/
H A DStringEncoderComparator.java68 * @param o1 the object to compare
73 public int compare(Object o1, Object o2) { argument
78 Comparable s1 = (Comparable) ((Encoder) this.stringEncoder).encode(o1);
/external/chromium_org/v8/test/mjsunit/bugs/
H A Dbug-1344252.js69 var o1 = new Object(); class
71 // Add a z property to o1 to create a map transition.
72 o1.z = 32;
73 // Add a z accessor in the prototype chain for o1 and o2.
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dinline-param.js45 var o1 = {};
46 o1.f = function(o) { return o.x; };
47 for (var i = 0; i < 5; i++) TestInlineOneParam(o1, obj);
49 TestInlineOneParam(o1, obj);
50 TestInlineOneParam({f: o1.f}, {x:42});
H A Dpic.js51 var o1 = { x: 0, y: 1 };
54 o1.f = o2.f = o3.f = function() { return 99; }
59 Test(o1);
64 Test(o1);
/external/libcxx/test/utilities/optional/optional.comp_with_t/
H A Dequal.pass.cpp41 constexpr O o1; // disengaged local
45 static_assert ( !(o1 == T(1)), "" );
51 static_assert ( !(T(1) == o1), "" );
H A Dless_than.pass.cpp42 constexpr O o1; // disengaged local
46 static_assert ( o1 < T(1) , "" );
53 static_assert ( !(T(1) < o1), "" );
/external/libcxx/test/utilities/optional/optional.relops/
H A Dequal.pass.cpp41 constexpr O o1; // disengaged local
47 static_assert ( o1 == o1 , "" );
48 static_assert ( o1 == o2 , "" );
49 static_assert ( !(o1 == o3), "" );
50 static_assert ( !(o1 == o4), "" );
51 static_assert ( !(o1 == o5), "" );
53 static_assert ( o2 == o1 , "" );
59 static_assert ( !(o3 == o1), "" );
65 static_assert ( !(o4 == o1), "" );
[all...]
H A Dless_than.pass.cpp38 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...]

Completed in 358 milliseconds

12345