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

1 2 3 4 5

  /external/chromium_org/v8/test/webkit/
dfg-weak-js-constant-silent-fill.js 37 var Empty = "";
43 eval(Empty + "foo(o1, o2, o3, \"stuff\")");
dfg-put-by-id-prototype-check.js 33 var Empty = "";
45 eval(Empty + "foo(o, i)");
  /external/clang/test/CodeGenCXX/
empty-nontrivially-copyable.cpp 8 struct Empty;
10 struct Empty {
11 Empty(const Empty &e);
15 bool foo(Empty e) {
16 // CHECK: @_Z3foo5Empty(%struct.Empty* %e)
17 // CHECK: call {{.*}} @_ZN5Empty5checkEv(%struct.Empty* %e)
21 void caller(Empty &e) {
22 // CHECK: @_Z6callerR5Empty(%struct.Empty* nonnull %e)
23 // CHECK: call {{.*}} @_ZN5EmptyC1ERKS_(%struct.Empty* [[NEWTMP:%.*]], %struct.Empty
    [all...]
arm-vaarg.cpp 2 struct Empty {};
4 Empty emptyvar;
11 emptyvar = __builtin_va_arg(l, Empty);
14 // CHECK: [[EMPTY_PTR:%[a-zA-Z0-9._]+]] = bitcast i8* {{%[a-zA-Z0-9._]+}} to %struct.Empty*
20 // CHECK-NOT: load %struct.Empty* [[EMPTY_PTR]]
arm64-darwinpcs.cpp 8 struct Empty {};
9 void test_empty(Empty e) {}
arm64-empty-struct.cpp 2 struct Empty {};
4 Empty emptyvar;
11 emptyvar = __builtin_va_arg(l, Empty);
14 // CHECK: [[EMPTY_PTR:%[a-zA-Z0-9._]+]] = bitcast i8* {{%[a-zA-Z0-9._]+}} to %struct.Empty*
20 // CHECK-NOT: load %struct.Empty* [[EMPTY_PTR]]
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
UTypes.pass.cpp 24 struct Empty {};
68 constexpr std::tuple<Empty> t0{Empty()};
copy.pass.cpp 20 struct Empty {};
58 typedef std::tuple<Empty> T;
  /external/chromium_org/ppapi/tests/
test_empty.cc 8 REGISTER_TEST_CASE(Empty);
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
get_const.pass.cpp 22 struct Empty {};
45 typedef std::tuple<Empty> T;
46 constexpr T t{Empty()};
47 constexpr Empty e = std::get<0>(t);
  /external/clang/test/CodeGen/
2009-03-08-ZeroEltStructCrash.c 3 struct Empty {};
2002-07-30-UnionTest.c 4 struct Empty {};
  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
is_empty.pass.cpp 34 class Empty
63 test_is_empty<Empty>();
is_nothrow_copy_constructible.pass.cpp 32 class Empty
55 test_is_nothrow_copy_constructible<Empty>();
is_nothrow_default_constructible.pass.cpp 34 class Empty
57 test_is_nothrow_default_constructible<Empty>();
is_nothrow_move_constructible.pass.cpp 32 class Empty
55 test_is_nothrow_move_constructible<Empty>();
has_virtual_destructor.pass.cpp 34 class Empty
66 test_has_not_virtual_destructor<Empty>();
is_abstract.pass.cpp 34 class Empty
66 test_is_not_abstract<Empty>();
is_copy_assignable.pass.cpp 28 class Empty
63 test_is_copy_assignable<Empty> ();
is_copy_constructible.pass.cpp 28 class Empty
66 test_is_copy_constructible<Empty>();
is_default_constructible.pass.cpp 34 class Empty
71 test_is_default_constructible<Empty>();
is_destructible.pass.cpp 34 class Empty
67 test_is_destructible<Empty>();
is_move_assignable.pass.cpp 28 class Empty
57 test_is_move_assignable<Empty> ();
is_move_constructible.pass.cpp 28 class Empty
73 test_is_move_constructible<Empty>();
is_nothrow_constructible.pass.cpp 47 class Empty
77 test_is_nothrow_constructible<Empty> ();
78 test_is_nothrow_constructible<Empty, const Empty&> ();

Completed in 710 milliseconds

1 2 3 4 5