/external/chromium_org/third_party/WebKit/Source/core/editing/ |
EditingBehavior.h | 32 : m_type(type) 44 return m_type != EditingWindowsBehavior && m_type != EditingAndroidBehavior && m_type != EditingUnixBehavior; 49 bool shouldConsiderSelectionAsDirectional() const { return m_type != EditingMacBehavior; } 53 bool shouldCenterAlignWhenSelectionIsRevealed() const { return m_type == EditingMacBehavior; } 57 bool shouldToggleStyleBasedOnStartOfSelection() const { return m_type == EditingMacBehavior; } 61 bool shouldAlwaysGrowSelectionWhenExtendingToBoundary() const { return m_type == EditingMacBehavior; } 64 bool shouldSelectOnContextualMenuClick() const { return m_type == EditingMacBehavior; } 69 return m_type != EditingUnixBehavior && m_type != EditingAndroidBehavior 94 EditingBehaviorType m_type; member in class:WebCore::EditingBehavior [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLDimension.h | 48 : m_type(Absolute) 54 : m_type(type) 59 HTMLDimensionType type() const { return m_type; } 61 bool isRelative() const { return m_type == Relative; } 62 bool isPercentage() const { return m_type == Percentage; } 63 bool isAbsolute() const { return m_type == Absolute; } 69 return m_type == other.m_type && m_value == other.m_value; 74 HTMLDimensionType m_type; member in class:WebCore::HTMLDimension
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/ |
SQLValue.cpp | 35 : m_type(val.m_type) 43 ASSERT(m_type == StringValue); 51 ASSERT(m_type == NumberValue);
|
SQLValue.h | 40 SQLValue() : m_type(NullValue), m_number(0.0) { } 41 SQLValue(double number) : m_type(NumberValue), m_number(number) { } 42 SQLValue(const String& s) : m_type(StringValue), m_number(0.0), m_string(s) { } 45 Type type() const { return m_type; } 51 Type m_type; member in class:WebCore::SQLValue
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
GridLength.h | 46 , m_type(LengthType) 53 , m_type(LengthType) 57 bool isLength() const { return m_type == LengthType; } 58 bool isFlex() const { return m_type == FlexType; } 66 m_type = FlexType; 72 return m_length == o.m_length && m_flex == o.m_flex && m_type == o.m_type; 75 bool isContentSized() const { return m_type == LengthType && (m_length.isAuto() || m_length.isMinContent() || m_length.isMaxContent()); } 86 GridLengthType m_type; member in class:WebCore::GridLength
|
LineClampValue.h | 35 : m_type(LineClampLineCount) 41 : m_type(type) 48 bool isPercentage() const { return m_type == LineClampPercentage; } 63 ELineClampType m_type; member in class:WebCore::LineClampValue
|
GridPosition.h | 55 : m_type(AutoPosition) 76 GridPositionType type() const { return m_type; } 77 bool isAuto() const { return m_type == AutoPosition; } 78 bool isSpan() const { return m_type == SpanPosition; } 79 bool isNamedGridArea() const { return m_type == NamedGridAreaPosition; } 83 m_type = ExplicitPosition; 93 m_type = SpanPosition; 100 m_type = NamedGridAreaPosition; 124 return m_type == other.m_type && m_integerPosition == other.m_integerPosition && m_namedGridLine == other.m_namedGridLine 132 GridPositionType m_type; member in class:WebCore::GridPosition [all...] |
BorderImageLength.h | 47 , m_type(NumberType) 54 , m_type(LengthType) 58 bool isNumber() const { return m_type == NumberType; } 59 bool isLength() const { return m_type == LengthType; } 68 return m_type == other.m_type && m_length == other.m_length && m_number == other.m_number; 84 } m_type; member in class:WebCore::BorderImageLength
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementDescriptor.h | 46 : m_type(type) 64 const AtomicString& type() const { return m_type; } 66 bool isTypeExtension() const { return m_type != m_localName; } 72 : m_type(value) { } 73 bool isHashTableDeletedValue() const { return m_type.isHashTableDeletedValue(); } 77 return m_type == other.m_type 83 AtomicString m_type; member in class:WebCore::CustomElementDescriptor
|
/external/chromium_org/third_party/WebKit/Source/core/html/track/ |
TrackBase.h | 40 Type type() const { return m_type; } 43 explicit TrackBase(Type type) : m_type(type) { } 46 Type m_type; member in class:WebCore::TrackBase
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLToken.h | 103 m_type = Uninitialized; 111 bool isUninitialized() { return m_type == Uninitialized; } 112 Type type() const { return m_type; } 116 ASSERT(m_type == Uninitialized); 117 m_type = EndOfFile; 136 ASSERT(m_type == Character || m_type == Comment || m_type == StartTag || m_type == EndTag); 147 ASSERT(m_type == StartTag || m_type == EndTag || m_type == DOCTYPE) 437 Type m_type; member in class:WebCore::HTMLToken [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBAny.cpp | 53 : m_type(type) 65 ASSERT(m_type == DOMStringListType); 71 ASSERT(m_type == IDBCursorType); 78 ASSERT(m_type == IDBCursorWithValueType); 85 ASSERT(m_type == IDBDatabaseType); 91 ASSERT(m_type == IDBIndexType); 97 ASSERT(m_type == IDBObjectStoreType); 103 ASSERT(m_type == IDBTransactionType); 109 ASSERT(m_type == KeyType || m_type == BufferKeyAndKeyPathType) [all...] |
IDBKeyPath.h | 45 IDBKeyPath() : m_type(NullType) { } 55 Type type() const { return m_type; } 59 ASSERT(m_type == ArrayType); 65 ASSERT(m_type == StringType); 69 bool isNull() const { return m_type == NullType; } 74 Type m_type; member in class:WebCore::IDBKeyPath
|
IDBKey.cpp | 37 if (m_type == InvalidType) 40 if (m_type == ArrayType) { 64 if (m_type != other->m_type) 65 return m_type > other->m_type ? -1 : 1; 67 switch (m_type) {
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSFilterValue.cpp | 35 , m_type(operationType) 47 switch (m_type) { 93 , m_type(cloneFrom.m_type) 104 return m_type == other.m_type && CSSValueList::equals(other);
|
CSSTransformValue.cpp | 70 , m_type(op) 76 return transformValueToCssString(m_type, CSSValueList::customCSSText()); 81 return transformValueToCssString(m_type, CSSValueList::customSerializeResolvingVariables(variables)); 86 , m_type(cloneFrom.m_type)
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
EventListener.h | 49 Type type() const { return m_type; } 53 : m_type(type) 60 Type m_type; member in class:WebCore::EventListener
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGAnimatedType.h | 62 AnimatedPropertyType type() const { return m_type; } 67 ASSERT(m_type == AnimatedAngle); 73 ASSERT(m_type == AnimatedBoolean); 79 ASSERT(m_type == AnimatedColor); 85 ASSERT(m_type == AnimatedEnumeration); 91 ASSERT(m_type == AnimatedInteger); 97 ASSERT(m_type == AnimatedIntegerOptionalInteger); 103 ASSERT(m_type == AnimatedLength); 109 ASSERT(m_type == AnimatedLengthList); 115 ASSERT(m_type == AnimatedNumber) 276 AnimatedPropertyType m_type; member in class:WebCore::FINAL [all...] |
SVGAnimateTransformElement.h | 37 SVGTransform::SVGTransformType transformType() const { return m_type; } 47 SVGTransform::SVGTransformType m_type; member in class:WebCore::FINAL
|
/external/chromium_org/third_party/WebKit/Source/platform/network/ |
ProxyServer.h | 49 : m_type(Direct) 55 : m_type(type) 61 Type type() const { return m_type; } 66 Type m_type; member in class:WebCore::ProxyServer
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathValue.h | 57 Value(unsigned value) : m_type(NumberValue), m_bool(false), m_number(value) {} 58 Value(unsigned long value) : m_type(NumberValue), m_bool(false), m_number(value) {} 59 Value(double value) : m_type(NumberValue), m_bool(false), m_number(value) {} 61 Value(const char* value) : m_type(StringValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) {} 62 Value(const String& value) : m_type(StringValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) {} 63 Value(const NodeSet& value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) {} 64 Value(Node* value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create()) { m_data->m_nodeSet.append(value); } 70 Value(NodeSet& value, const AdoptTag&) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create()) { value.swap(m_data->m_nodeSet); } 72 Type type() const { return m_type; } 74 bool isNodeSet() const { return m_type == NodeSetValue; 86 Type m_type; member in class:WebCore::XPath::Value [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/ |
ContentType.h | 42 const String& raw() const { return m_type; } 44 String m_type; member in class:WebCore::ContentType
|
PlatformGestureEvent.h | 70 ASSERT(m_type == PlatformEvent::GestureScrollUpdate 71 || m_type == PlatformEvent::GestureScrollUpdateWithoutPropagation); 77 ASSERT(m_type == PlatformEvent::GestureScrollUpdate 78 || m_type == PlatformEvent::GestureScrollUpdateWithoutPropagation); 84 ASSERT(m_type == PlatformEvent::GestureTap); 90 ASSERT(m_type == PlatformEvent::GestureScrollUpdate 91 || m_type == PlatformEvent::GestureScrollUpdateWithoutPropagation); 97 ASSERT(m_type == PlatformEvent::GestureScrollUpdate 98 || m_type == PlatformEvent::GestureScrollUpdateWithoutPropagation); 104 ASSERT(m_type == PlatformEvent::GesturePinchUpdate) [all...] |
ContextMenuItem.cpp | 34 : m_type(type) 45 : m_type(type) 54 : m_type(SubmenuType) 70 m_type = SubmenuType; 73 m_type = ActionType; 80 m_type = type; 85 return m_type;
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
FormController.h | 41 FormControlState() : m_type(TypeSkip) { } 42 explicit FormControlState(const String& value) : m_type(TypeRestore) { m_values.append(value); } 44 FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_values) { } 47 bool isFailure() const { return m_type == TypeFailure; } 55 explicit FormControlState(Type type) : m_type(type) { } 57 Type m_type; member in class:WebCore::FormControlState 63 m_type = another.m_type; 70 m_type = TypeRestore [all...] |