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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/
typo.h 1 @import Empty;
namespaces-top.h 25 namespace Empty {}
  /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* dereferenceable({{[0-9]+}}) %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, %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, %struct.Empty* [[EMPTY_PTR]]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug151.go 11 type Empty interface {}
13 func (v S) Less(e Empty) bool {
bug141.go 14 type Empty interface {
21 func f1(p Empty) {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug151.go 11 type Empty interface {}
13 func (v S) Less(e Empty) bool {
bug141.go 14 type Empty interface {
21 func f1(p Empty) {
  /cts/tests/JobSchedulerSharedUid/shareduid/src/android/jobscheduler/cts/shareduid/
Empty.java 18 public class Empty {
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/
get_const.pass.cpp 26 struct Empty {};
49 typedef std::tuple<Empty> T;
50 constexpr T t{Empty()};
51 constexpr Empty e = std::get<0>(t);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.elem/
get_const.pass.cpp 26 struct Empty {};
49 typedef std::tuple<Empty> T;
50 constexpr T t{Empty()};
51 constexpr Empty e = std::get<0>(t);
  /art/compiler/debug/
debug_info.h 38 bool Empty() const {
39 return compiled_methods.empty() && dex_files.empty();
  /external/clang/test/CodeGen/
2009-03-08-ZeroEltStructCrash.c 3 struct Empty {};
2002-07-30-UnionTest.c 4 struct Empty {};
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_nothrow_copy_constructible.pass.cpp 43 class Empty
66 test_is_nothrow_copy_constructible<Empty>();
is_nothrow_default_constructible.pass.cpp 47 class Empty
70 test_is_nothrow_default_constructible<Empty>();
is_nothrow_move_constructible.pass.cpp 43 class Empty
66 test_is_nothrow_move_constructible<Empty>();
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
copy.pass.cpp 24 struct Empty {};
63 typedef std::tuple<Empty> T;
66 constexpr Empty e = std::get<0>(t);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_nothrow_copy_constructible.pass.cpp 43 class Empty
66 test_is_nothrow_copy_constructible<Empty>();
is_nothrow_default_constructible.pass.cpp 47 class Empty
70 test_is_nothrow_default_constructible<Empty>();
is_nothrow_move_constructible.pass.cpp 43 class Empty
66 test_is_nothrow_move_constructible<Empty>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
copy.pass.cpp 24 struct Empty {};
63 typedef std::tuple<Empty> T;
66 constexpr Empty e = std::get<0>(t);
  /external/golang-protobuf/ptypes/
any.go 86 // Empty returns a new proto.Message of the type specified in a
89 func Empty(any *any.Any) (proto.Message, error) {
111 d.Message, err = Empty(any)

Completed in 286 milliseconds

1 2 3 4 5 6 7 8 91011>>