OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HasRef
(Results
1 - 3
of
3
) sorted by null
/external/chromium/base/
bind_unittest.cc
39
class
HasRef
: public NoRef {
41
HasRef
() {}
48
DISALLOW_COPY_AND_ASSIGN(
HasRef
);
51
class HasRefPrivateDtor : public
HasRef
{
210
StrictMock<
HasRef
> has_ref_;
211
const
HasRef
* const_has_ref_ptr_;
264
Closure method_cb = Bind(&
HasRef
::VoidMethod0, &has_ref_);
265
Closure const_method_nonconst_obj_cb = Bind(&
HasRef
::VoidConstMethod0,
267
Closure const_method_const_obj_cb = Bind(&
HasRef
::VoidConstMethod0,
300
Callback<int(void)> method_cb = Bind(&
HasRef
::IntMethod0, &has_ref_)
[
all
...]
/external/chromium_org/base/
bind_unittest.cc
38
class
HasRef
: public NoRef {
40
HasRef
() {}
47
DISALLOW_COPY_AND_ASSIGN(
HasRef
);
50
class HasRefPrivateDtor : public
HasRef
{
214
int FunctionWithScopedRefptrFirstParam(const scoped_refptr<
HasRef
>& o, int n) {
241
StrictMock<
HasRef
> has_ref_;
242
const
HasRef
* const_has_ref_ptr_;
345
Closure method_cb = Bind(&
HasRef
::VoidMethod0, &has_ref_);
346
Closure method_refptr_cb = Bind(&
HasRef
::VoidMethod0,
348
Closure const_method_nonconst_obj_cb = Bind(&
HasRef
::VoidConstMethod0
[
all
...]
/external/clang/test/SemaCXX/
type-traits.cpp
82
struct
HasRef
{ int i; int& ref;
HasRef
() : i(0), ref(i) {} };
95
struct DerivesHasRef :
HasRef
{};
173
{ int arr[F(__is_pod(
HasRef
))]; }
215
{ int arr[F(__is_empty(
HasRef
))]; }
[
all
...]
Completed in 239 milliseconds