OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ConstRefWrapper
(Results
1 - 2
of
2
) sorted by null
/external/chromium/base/
bind_helpers.h
192
class
ConstRefWrapper
{
194
explicit
ConstRefWrapper
(const T& o) : ptr_(&o) {}
209
const T& Unwrap(
ConstRefWrapper
<T> const_ref) {
257
inline internal::
ConstRefWrapper
<T> ConstRef(const T& o) {
258
return internal::
ConstRefWrapper
<T>(o);
/external/chromium_org/base/
bind_helpers.h
302
class
ConstRefWrapper
{
304
explicit
ConstRefWrapper
(const T& o) : ptr_(&o) {}
401
struct UnwrapTraits<
ConstRefWrapper
<T> > {
403
static ForwardType Unwrap(
ConstRefWrapper
<T> const_ref) {
492
struct IsWeakMethod<true,
ConstRefWrapper
<WeakPtr<T> > > : public true_type {};
502
static inline internal::
ConstRefWrapper
<T> ConstRef(const T& o) {
503
return internal::
ConstRefWrapper
<T>(o);
Completed in 383 milliseconds