HomeSort by relevance Sort by last modified time
    Searched refs:UnspecifiedBoolType (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
Nullable.h 45 // See comment in RefPtr.h about what UnspecifiedBoolType is.
46 typedef const T* UnspecifiedBoolType;
47 operator UnspecifiedBoolType() const { return m_isNull ? 0 : &m_value; }
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourcePtr.h 42 typedef Resource* ResourcePtrBase::*UnspecifiedBoolType;
43 operator UnspecifiedBoolType() const { return m_resource ? &ResourcePtrBase::m_resource : 0; }
  /external/chromium_org/third_party/WebKit/Source/wtf/
WeakPtr.h 100 typedef RefPtr<WeakReference<T> > (WeakPtr::*UnspecifiedBoolType);
101 operator UnspecifiedBoolType() const { return get() ? &WeakPtr::m_ref : 0; }
PassOwnPtr.h 67 typedef PtrType PassOwnPtr::*UnspecifiedBoolType;
68 operator UnspecifiedBoolType() const { return m_ptr ? &PassOwnPtr::m_ptr : 0; }
OwnPtr.h 85 typedef PtrType OwnPtr::*UnspecifiedBoolType;
86 operator UnspecifiedBoolType() const { return m_ptr ? &OwnPtr::m_ptr : 0; }
PassRefPtr.h 88 typedef T* (PassRefPtr::*UnspecifiedBoolType);
89 operator UnspecifiedBoolType() const { return m_ptr ? &PassRefPtr::m_ptr : 0; }
RefPtr.h 72 typedef T* (RefPtr::*UnspecifiedBoolType);
73 operator UnspecifiedBoolType() const { return m_ptr ? &RefPtr::m_ptr : 0; }
RetainPtr.h 101 typedef PtrType RetainPtr::*UnspecifiedBoolType;
102 operator UnspecifiedBoolType() const { return m_ptr ? &RetainPtr::m_ptr : 0; }
CheckedArithmetic.h 526 typedef void* (Checked::*UnspecifiedBoolType);
527 operator UnspecifiedBoolType*() const
531 return (m_value) ? reinterpret_cast<UnspecifiedBoolType*>(1) : 0;
  /external/clang/test/CXX/class.access/
p6.cpp 175 typedef void* (A::*UnspecifiedBoolType)() const;
176 operator UnspecifiedBoolType() const; // expected-note {{implicitly declared private here}}
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.h 429 typedef struct ImplicitConversionFromWTFStringToBoolDisallowed* (String::*UnspecifiedBoolType);
430 operator UnspecifiedBoolType() const;

Completed in 473 milliseconds