HomeSort by relevance Sort by last modified time
    Searched defs:m_valid (Results 1 - 3 of 3) sorted by null

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/iterator/
input_iterator_facade.hpp 64 input_iterator_facade() : m_valid( false ), m_value() {}
69 m_valid = true;
74 mutable bool m_valid; member in class:boost::unit_test::input_iterator_facade
84 if( m_valid )
85 m_valid = input_iterator_core_access::get( *static_cast<Derived*>(this) );
96 return !m_valid && !rhs.m_valid;
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleColor.h 44 , m_valid(false)
48 , m_valid(true)
52 , m_valid(valid)
56 , m_valid(true)
60 , m_valid(true)
64 , m_valid(other.m_valid)
68 bool isValid() const { return m_valid; }
75 m_valid = true;
97 , m_valid(invalid
101 bool m_valid; member in class:WebCore::StyleColor
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Color.h 65 Color() : m_color(0), m_valid(false) { }
66 Color(RGBA32 color, bool valid = true) : m_color(color), m_valid(valid) { ASSERT(!m_color || m_valid); }
67 Color(int r, int g, int b) : m_color(makeRGB(r, g, b)), m_valid(true) { }
68 Color(int r, int g, int b, int a) : m_color(makeRGBA(r, g, b, a)), m_valid(true) { }
70 Color(float r, float g, float b, float a) : m_color(makeRGBA32FromFloats(r, g, b, a)), m_valid(true) { }
72 Color(float c, float m, float y, float k, float a) : m_color(makeRGBAFromCMYKA(c, m, y, k, a)), m_valid(true) { }
97 bool isValid() const { return m_valid; }
107 void setRGB(int r, int g, int b) { m_color = makeRGB(r, g, b); m_valid = true; }
108 void setRGB(RGBA32 rgb) { m_color = rgb; m_valid = true;
133 bool m_valid; member in class:WebCore::Color
    [all...]

Completed in 304 milliseconds