Home
last modified time | relevance | path

Searched refs:HasRef (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/base/
Dbind_unittest.cc43 class HasRef : public NoRef { class
45 HasRef() {} in HasRef() function in base::__anon8607446f0111::HasRef
52 DISALLOW_COPY_AND_ASSIGN(HasRef);
55 class HasRefPrivateDtor : public HasRef {
221 int FunctionWithScopedRefptrFirstParam(const scoped_refptr<HasRef>& o, int n) { in FunctionWithScopedRefptrFirstParam()
248 StrictMock<HasRef> has_ref_;
249 const HasRef* const_has_ref_ptr_;
352 Closure method_cb = Bind(&HasRef::VoidMethod0, &has_ref_); in TEST_F()
353 Closure method_refptr_cb = Bind(&HasRef::VoidMethod0, in TEST_F()
355 Closure const_method_nonconst_obj_cb = Bind(&HasRef::VoidConstMethod0, in TEST_F()
[all …]
/external/libweave/third_party/chromium/base/
Dbind_unittest.cc44 class HasRef : public NoRef { class
46 HasRef() {} in HasRef() function in base::__anonfb311bb50111::HasRef
53 DISALLOW_COPY_AND_ASSIGN(HasRef);
56 class HasRefPrivateDtor : public HasRef {
222 int FunctionWithScopedRefptrFirstParam(const scoped_refptr<HasRef>& o, int n) { in FunctionWithScopedRefptrFirstParam()
249 StrictMock<HasRef> has_ref_;
250 const HasRef* const_has_ref_ptr_;
353 Closure method_cb = Bind(&HasRef::VoidMethod0, &has_ref_); in TEST_F()
354 Closure method_refptr_cb = Bind(&HasRef::VoidMethod0, in TEST_F()
356 Closure const_method_nonconst_obj_cb = Bind(&HasRef::VoidConstMethod0, in TEST_F()
[all …]
/external/clang/test/SemaCXX/
Dtype-traits.cpp83 struct HasRef { int i; int& ref; HasRef() : i(0), ref(i) {} }; in HasRef() argument
96 struct DerivesHasRef : HasRef {};
198 { int arr[F(__is_pod(HasRef))]; } in is_pod()
241 { int arr[F(__is_empty(HasRef))]; } in is_empty()
1303 { int arr[F(__has_trivial_constructor(HasRef))]; } in has_trivial_default_constructor()
1352 { int arr[T(__has_trivial_copy(HasRef))]; } in has_trivial_copy_constructor()
1382 { int arr[T(__has_trivial_assign(HasRef))]; } in has_trivial_copy_assignment()
1414 { int arr[T(__has_trivial_destructor(HasRef))]; } in has_trivial_destructor()
1469 { int arr[T(__has_nothrow_assign(HasRef))]; } in has_nothrow_assign()
1558 { int arr[T(__has_nothrow_copy(HasRef))]; } in has_nothrow_copy()
[all …]