Searched defs:m_isNull (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DArrayPiece.h45 bool m_isNull; member in class:WTF::ArrayPiece
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DNullable.h19 , m_isNull(true) { }
23 , m_isNull(false) { }
27 , m_isNull(other.m_isNull) { }
32 m_isNull = other.m_isNull;
39 m_isNull = false;
41 const T& get() const { ASSERT(!m_isNull); return m_value; }
42 T& get() { ASSERT(!m_isNull); return m_value; }
43 bool isNull() const { return m_isNull; }
61 bool m_isNull; member in class:blink::Nullable
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DSocketStreamError.h49 bool isNull() const { return m_isNull; }
61 , m_isNull(false)
68 bool m_isNull; member in class:blink::SocketStreamError
H A DResourceError.h43 , m_isNull(true)
55 , m_isNull(false)
65 bool isNull() const { return m_isNull; }
87 bool m_isNull; member in class:blink::ResourceError

Completed in 139 milliseconds