/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | HTMLToken.h | 103 m_type = Uninitialized; in clear() 111 bool isUninitialized() { return m_type == Uninitialized; } in isUninitialized() 112 Type type() const { return m_type; } in type() 116 ASSERT(m_type == Uninitialized); in makeEndOfFile() 117 m_type = EndOfFile; in makeEndOfFile() 136 ASSERT(m_type == Character || m_type == Comment || m_type == StartTag || m_type == EndTag); in data() 147 ASSERT(m_type == StartTag || m_type == EndTag || m_type == DOCTYPE); in name() 153 ASSERT(m_type == StartTag || m_type == EndTag || m_type == DOCTYPE); in appendToName() 163 ASSERT(m_type == DOCTYPE); in forceQuirks() 169 ASSERT(m_type == DOCTYPE); in setForceQuirks() [all …]
|
D | AtomicHTMLToken.h | 44 ASSERT(m_type == HTMLToken::DOCTYPE); in forceQuirks() 48 HTMLToken::Type type() const { return m_type; } in type() 64 ASSERT(m_type == HTMLToken::StartTag || m_type == HTMLToken::EndTag); in selfClosing() 88 ASSERT(m_type == HTMLToken::Character); in characters() 94 ASSERT(m_type == HTMLToken::Comment); in comment() 101 ASSERT(m_type == HTMLToken::DOCTYPE); in publicIdentifier() 108 ASSERT(m_type == HTMLToken::DOCTYPE); in systemIdentifier() 113 : m_type(token.type()) in AtomicHTMLToken() 115 switch (m_type) { in AtomicHTMLToken() 146 : m_type(token.type()) in AtomicHTMLToken() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | EditingBehavior.h | 32 : m_type(type) in EditingBehavior() 44 …return m_type != EditingWindowsBehavior && m_type != EditingAndroidBehavior && m_type != EditingUn… in shouldMoveCaretToHorizontalBoundaryWhenPastTopOrBottom() 49 bool shouldConsiderSelectionAsDirectional() const { return m_type != EditingMacBehavior; } in shouldConsiderSelectionAsDirectional() 53 bool shouldCenterAlignWhenSelectionIsRevealed() const { return m_type == EditingMacBehavior; } in shouldCenterAlignWhenSelectionIsRevealed() 57 bool shouldToggleStyleBasedOnStartOfSelection() const { return m_type == EditingMacBehavior; } in shouldToggleStyleBasedOnStartOfSelection() 61 …bool shouldAlwaysGrowSelectionWhenExtendingToBoundary() const { return m_type == EditingMacBehavio… in shouldAlwaysGrowSelectionWhenExtendingToBoundary() 64 bool shouldSelectOnContextualMenuClick() const { return m_type == EditingMacBehavior; } in shouldSelectOnContextualMenuClick() 69 return m_type != EditingUnixBehavior && m_type != EditingAndroidBehavior; in shouldNavigateBackOnBackspace() 75 … bool shouldExtendSelectionByWordOrLineAcrossCaret() const { return m_type != EditingMacBehavior; } in shouldExtendSelectionByWordOrLineAcrossCaret() 80 bool shouldSkipSpaceWhenMovingRight() const { return m_type == EditingWindowsBehavior; } in shouldSkipSpaceWhenMovingRight() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGAnimatedType.h | 62 AnimatedPropertyType type() const { return m_type; } in type() 67 ASSERT(m_type == AnimatedAngle); in angleAndEnumeration() 73 ASSERT(m_type == AnimatedBoolean); in boolean() 79 ASSERT(m_type == AnimatedColor); in color() 85 ASSERT(m_type == AnimatedEnumeration); in enumeration() 91 ASSERT(m_type == AnimatedInteger); in integer() 97 ASSERT(m_type == AnimatedIntegerOptionalInteger); in integerOptionalInteger() 103 ASSERT(m_type == AnimatedLength); in length() 109 ASSERT(m_type == AnimatedLengthList); in lengthList() 115 ASSERT(m_type == AnimatedNumber); in number() [all …]
|
D | SVGTransform.cpp | 32 : m_type(SVG_TRANSFORM_UNKNOWN) in SVGTransform() 38 : m_type(type) in SVGTransform() 46 : m_type(SVG_TRANSFORM_MATRIX) in SVGTransform() 54 m_type = SVG_TRANSFORM_MATRIX; in setMatrix() 64 m_type = SVG_TRANSFORM_MATRIX; in updateSVGMatrix() 70 m_type = SVG_TRANSFORM_TRANSLATE; in setTranslate() 84 m_type = SVG_TRANSFORM_SCALE; in setScale() 99 m_type = SVG_TRANSFORM_ROTATE; in setRotate() 112 m_type = SVG_TRANSFORM_SKEWX; in setSkewX() 121 m_type = SVG_TRANSFORM_SKEWY; in setSkewY() [all …]
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
D | IDBAny.cpp | 53 : m_type(type) in IDBAny() 65 ASSERT(m_type == DOMStringListType); in domStringList() 71 ASSERT(m_type == IDBCursorType); in idbCursor() 78 ASSERT(m_type == IDBCursorWithValueType); in idbCursorWithValue() 85 ASSERT(m_type == IDBDatabaseType); in idbDatabase() 91 ASSERT(m_type == IDBIndexType); in idbIndex() 97 ASSERT(m_type == IDBObjectStoreType); in idbObjectStore() 103 ASSERT(m_type == IDBTransactionType); in idbTransaction() 109 ASSERT(m_type == KeyType || m_type == BufferKeyAndKeyPathType); in key() 115 ASSERT(m_type == KeyPathType || m_type == BufferKeyAndKeyPathType); in keyPath() [all …]
|
D | IDBKey.h | 108 Type type() const { return m_type; } in type() 113 ASSERT(m_type == ArrayType); in array() 119 ASSERT(m_type == BinaryType); in binary() 125 ASSERT(m_type == StringType); in string() 131 ASSERT(m_type == DateType); in date() 137 ASSERT(m_type == NumberType); in number() 149 IDBKey() : m_type(InvalidType), m_number(0) { } in IDBKey() 150 IDBKey(Type type, double number) : m_type(type), m_number(number) { } in IDBKey() 151 explicit IDBKey(const String& value) : m_type(StringType), m_string(value), m_number(0) { } in IDBKey() 152 …explicit IDBKey(PassRefPtr<SharedBuffer> value) : m_type(BinaryType), m_binary(value), m_number(0)… in IDBKey() [all …]
|
D | IDBKeyPath.h | 45 IDBKeyPath() : m_type(NullType) { } in IDBKeyPath() 55 Type type() const { return m_type; } in type() 59 ASSERT(m_type == ArrayType); in array() 65 ASSERT(m_type == StringType); in string() 69 bool isNull() const { return m_type == NullType; } in isNull() 74 Type m_type;
|
D | IDBKey.cpp | 37 if (m_type == InvalidType) in isValid() 40 if (m_type == ArrayType) { in isValid() 64 if (m_type != other->m_type) in compare() 65 return m_type > other->m_type ? -1 : 1; in compare() 67 switch (m_type) { in compare()
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XPathValue.h | 57 Value(unsigned value) : m_type(NumberValue), m_bool(false), m_number(value) {} in Value() 58 Value(unsigned long value) : m_type(NumberValue), m_bool(false), m_number(value) {} in Value() 59 Value(double value) : m_type(NumberValue), m_bool(false), m_number(value) {} in Value() 61 …Value(const char* value) : m_type(StringValue), m_bool(false), m_number(0), m_data(ValueData::crea… in Value() 62 …Value(const String& value) : m_type(StringValue), m_bool(false), m_number(0), m_data(ValueData::cr… in Value() 63 …Value(const NodeSet& value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::… in Value() 64 …Value(Node* value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create())… in Value() 70 …Value(NodeSet& value, const AdoptTag&) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data… in Value() 72 Type type() const { return m_type; } in type() 74 bool isNodeSet() const { return m_type == NodeSetValue; } in isNodeSet() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
D | WebGLGetInfo.cpp | 34 : m_type(kTypeBool) in WebGLGetInfo() 43 : m_type(kTypeBoolArray) in WebGLGetInfo() 57 : m_type(kTypeFloat) in WebGLGetInfo() 66 : m_type(kTypeInt) in WebGLGetInfo() 75 : m_type(kTypeNull) in WebGLGetInfo() 84 : m_type(kTypeString) in WebGLGetInfo() 94 : m_type(kTypeUnsignedInt) in WebGLGetInfo() 103 : m_type(kTypeWebGLBuffer) in WebGLGetInfo() 113 : m_type(kTypeWebGLFloatArray) in WebGLGetInfo() 123 : m_type(kTypeWebGLFramebuffer) in WebGLGetInfo() [all …]
|
D | CanvasStyle.cpp | 84 : m_type(type) in CanvasStyle() 90 : m_type(RGBA) in CanvasStyle() 96 : m_type(RGBA) in CanvasStyle() 102 : m_type(RGBA) in CanvasStyle() 108 : m_type(CMYKA) in CanvasStyle() 115 : m_type(Gradient) in CanvasStyle() 121 : m_type(ImagePattern) in CanvasStyle() 176 if (m_type != other.m_type) in isEquivalentColor() 179 switch (m_type) { in isEquivalentColor() 201 if (m_type != RGBA) in isEquivalentRGBA() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLDimension.h | 48 : m_type(Absolute) in HTMLDimension() 54 : m_type(type) in HTMLDimension() 59 HTMLDimensionType type() const { return m_type; } in type() 61 bool isRelative() const { return m_type == Relative; } in isRelative() 62 bool isPercentage() const { return m_type == Percentage; } in isPercentage() 63 bool isAbsolute() const { return m_type == Absolute; } in isAbsolute() 69 return m_type == other.m_type && m_value == other.m_value; 74 HTMLDimensionType m_type;
|
D | HTMLButtonElement.cpp | 44 , m_type(SUBMIT) in HTMLButtonElement() 67 switch (m_type) { in formControlType() 101 m_type = RESET; in parseAttribute() 103 m_type = BUTTON; in parseAttribute() 105 m_type = SUBMIT; in parseAttribute() 114 if (form() && m_type == SUBMIT) { in defaultEventHandler() 120 if (form() && m_type == RESET) { in defaultEventHandler() 157 if (!isDisabledFormControl() && form() && (m_type == SUBMIT || m_type == RESET)) in willRespondToMouseClickEvents() 164 return m_type == SUBMIT; in canBeSuccessfulSubmitButton() 179 if (m_type != SUBMIT || name().isEmpty() || !m_isActivatedSubmit) in appendFormData() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | GridPosition.h | 55 : m_type(AutoPosition) in GridPosition() 76 GridPositionType type() const { return m_type; } in type() 77 bool isAuto() const { return m_type == AutoPosition; } in isAuto() 78 bool isSpan() const { return m_type == SpanPosition; } in isSpan() 79 bool isNamedGridArea() const { return m_type == NamedGridAreaPosition; } in isNamedGridArea() 83 m_type = ExplicitPosition; in setExplicitPosition() 93 m_type = SpanPosition; in setSpanPosition() 100 m_type = NamedGridAreaPosition; in setNamedGridArea() 124 …return m_type == other.m_type && m_integerPosition == other.m_integerPosition && m_namedGridLine =… 132 GridPositionType m_type;
|
D | GridLength.h | 46 , m_type(LengthType) in GridLength() 53 , m_type(LengthType) in GridLength() 57 bool isLength() const { return m_type == LengthType; } in isLength() 58 bool isFlex() const { return m_type == FlexType; } in isFlex() 66 m_type = FlexType; in setFlex() 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.isMinC… in isContentSized() 86 GridLengthType m_type; variable
|
D | BorderImageLength.h | 47 , m_type(NumberType) in BorderImageLength() 54 , m_type(LengthType) in BorderImageLength() 58 bool isNumber() const { return m_type == NumberType; } in isNumber() 59 bool isLength() const { return m_type == LengthType; } in isLength() 68 return m_type == other.m_type && m_length == other.m_length && m_number == other.m_number; 84 } m_type; variable
|
D | GridTrackSize.h | 46 : m_type(LengthTrackSizing) in GridTrackSize() 59 : m_type(LengthTrackSizing) in GridTrackSize() 74 ASSERT(m_type == LengthTrackSizing); in length() 83 m_type = LengthTrackSizing; in setLength() 112 m_type = MinMaxTrackSizing; in setMinMax() 119 GridTrackSizeType type() const { return m_type; } in type() 125 …return m_type == other.m_type && m_minTrackBreadth == other.m_minTrackBreadth && m_maxTrackBreadth… 142 GridTrackSizeType m_type;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
D | CustomElementDescriptor.h | 46 : m_type(type) in CustomElementDescriptor() 64 const AtomicString& type() const { return m_type; } in type() 66 bool isTypeExtension() const { return m_type != m_localName; } in isTypeExtension() 72 : m_type(value) { } in CustomElementDescriptor() 73 bool isHashTableDeletedValue() const { return m_type.isHashTableDeletedValue(); } in isHashTableDeletedValue() 77 return m_type == other.m_type 83 AtomicString m_type;
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | PlatformGestureEvent.h | 70 ASSERT(m_type == PlatformEvent::GestureScrollUpdate in deltaX() 71 || m_type == PlatformEvent::GestureScrollUpdateWithoutPropagation); in deltaX() 77 ASSERT(m_type == PlatformEvent::GestureScrollUpdate in deltaY() 78 || m_type == PlatformEvent::GestureScrollUpdateWithoutPropagation); in deltaY() 84 ASSERT(m_type == PlatformEvent::GestureTap); in tapCount() 90 ASSERT(m_type == PlatformEvent::GestureScrollUpdate in velocityX() 91 || m_type == PlatformEvent::GestureScrollUpdateWithoutPropagation); in velocityX() 97 ASSERT(m_type == PlatformEvent::GestureScrollUpdate in velocityY() 98 || m_type == PlatformEvent::GestureScrollUpdateWithoutPropagation); in velocityY() 104 ASSERT(m_type == PlatformEvent::GesturePinchUpdate); in scale()
|
D | DateComponents.cpp | 339 m_type = Month; in parseMonth() 362 m_type = Date; in parseDate() 389 m_type = Week; in parseWeek() 444 m_type = Time; in parseTime() 462 m_type = DateTimeLocal; in parseDateTimeLocal() 482 m_type = DateTime; in parseDateTime() 514 m_type = Invalid; in setMillisecondsSinceEpochForDate() 521 m_type = Date; in setMillisecondsSinceEpochForDate() 527 m_type = Invalid; in setMillisecondsSinceEpochForDateTime() 536 m_type = DateTime; in setMillisecondsSinceEpochForDateTime() [all …]
|
D | ContextMenuItem.cpp | 34 : m_type(type) in ContextMenuItem() 45 : m_type(type) in ContextMenuItem() 54 : m_type(SubmenuType) in ContextMenuItem() 70 m_type = SubmenuType; in setSubMenu() 73 m_type = ActionType; in setSubMenu() 80 m_type = type; in setType() 85 return m_type; in type()
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | FormController.h | 41 FormControlState() : m_type(TypeSkip) { } in FormControlState() 42 explicit FormControlState(const String& value) : m_type(TypeRestore) { m_values.append(value); } in FormControlState() 44 …FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_val… in FormControlState() 47 bool isFailure() const { return m_type == TypeFailure; } in isFailure() 55 explicit FormControlState(Type type) : m_type(type) { } in FormControlState() 57 Type m_type; variable 63 m_type = another.m_type; 70 m_type = TypeRestore; in append()
|
/external/chromium_org/third_party/WebKit/Source/platform/network/ |
D | FormData.h | 40 FormDataElement() : m_type(data) { } in FormDataElement() 41 explicit FormDataElement(const Vector<char>& array) : m_type(data), m_data(array) { } in FormDataElement() 43 … fileStart, long long fileLength, double expectedFileModificationTime) : m_type(encodedFile), m_fi… in FormDataElement() 44 …ent(const String& blobUUID, PassRefPtr<BlobDataHandle> optionalHandle) : m_type(encodedBlob), m_bl… in FormDataElement() 45 …ong long start, long long length, double expectedFileModificationTime) : m_type(encodedFileSystemU… in FormDataElement() 52 } m_type; variable 68 if (a.m_type != b.m_type) 70 if (a.m_type == FormDataElement::data) 72 if (a.m_type == FormDataElement::encodedFile) 74 if (a.m_type == FormDataElement::encodedBlob) [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSFilterValue.cpp | 35 , m_type(operationType) in CSSFilterValue() 47 switch (m_type) { in customCSSText() 93 , m_type(cloneFrom.m_type) in CSSFilterValue() 104 return m_type == other.m_type && CSSValueList::equals(other); in equals()
|