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

1 2 3 4 5 6 7 8 91011>>

  /external/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-620553.js 8 var o1 = []; variable
10 o1.__defineGetter__(0, function() {
15 o0.concat(o1);
17 o1[0];
regress-621869.js 8 var o1 = []; variable
11 o1.__defineGetter__(0, function() {
16 o0.concat(o1);
18 o1[0];
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-437713.js 7 var o1 = {
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));
  /external/libcxx/test/std/experimental/optional/optional.nullops/
equal.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), "");
greater.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), "");
greater_equal.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_equal.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), "");
not_equal.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), "");
  /toolchain/binutils/binutils-2.25/gold/testsuite/
tls_test_file2.cc 28 __thread int o1; variable
  /external/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);
  /external/v8/test/mjsunit/es6/
typedarray-tostring.js 60 var o1 = {length: 3, 0: 1, 1: 2, 2: 3,
64 assertThrows(function() { o1.join() }, TypeError);
65 assertThrows(function() { o1.toString() }, TypeError);
66 assertThrows(function() { o1.toLocaleString() }, TypeError);
68 o1.join = Array.prototype.join;
69 assertEquals("1,2,3", o1.join());
70 assertEquals("1,2,3", o1.toString());
71 assertThrows(function() { o1.toLocaleString() }, TypeError);
75 // assertEquals(o1.toString, Array.prototype.toString);
  /art/runtime/
reference_table_test.cc 33 mirror::Object* o1 = mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello"); local
49 // Check removal of all o1 in a empty table is a no-op.
50 rt.Remove(o1);
53 // Add o1 and check we have 1 element and can dump.
55 rt.Add(o1);
83 // Remove o1 (first element).
85 rt.Remove(o1);
  /external/libcxx/test/std/experimental/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), "" );
greater.pass.cpp 42 constexpr O o1; // disengaged local
46 static_assert ( !(o1 > T(1)), "" );
53 static_assert ( (T(1) > o1), "" );
greater_equal.pass.cpp 42 constexpr O o1; // disengaged local
46 static_assert ( !(o1 >= T(1)), "" );
53 static_assert ( (T(1) >= o1), "" );

Completed in 396 milliseconds

1 2 3 4 5 6 7 8 91011>>