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

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
Nullable.h 17 , m_isNull(true) { }
21 , m_isNull(false) { }
25 , m_isNull(other.m_isNull) { }
30 m_isNull = other.m_isNull;
34 T get() const { ASSERT(!m_isNull); return m_value; }
35 bool isNull() const { return m_isNull; }
37 operator bool() const { return !m_isNull && m_value; }
41 return (m_isNull && other.m_isNull) || (!m_isNull && !other.m_isNull && m_value == other.m_value)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/network/
SocketStreamError.h 49 bool isNull() const { return m_isNull; }
61 , m_isNull(false)
68 bool m_isNull;
ResourceError.h 43 , m_isNull(true)
55 , m_isNull(false)
65 bool isNull() const { return m_isNull; }
87 bool m_isNull;
ResourceError.cpp 51 errorCopy.m_isNull = m_isNull;
ResourceResponse.cpp 42 , m_isNull(true)
74 , m_isNull(false)
178 m_isNull = false;
190 m_isNull = false;
203 m_isNull = false;
216 m_isNull = false;
230 m_isNull = false;
ResourceResponse.h 63 bool isNull() const { return m_isNull; }
208 bool m_isNull : 1;
  /external/chromium_org/third_party/WebKit/Source/wtf/
ArrayPiece.cpp 44 return m_isNull;
68 m_isNull = false;
75 m_isNull = true;
ArrayPiece.h 45 bool m_isNull;

Completed in 220 milliseconds