Searched refs:m_type (Results 1 - 25 of 339) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DEditingBehavior.h32 : m_type(type)
44 return m_type != EditingWindowsBehavior;
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;
75 return m_type != EditingUnixBehavior;
81 bool shouldExtendSelectionByWordOrLineAcrossCaret() const { return m_type !
89 EditingBehaviorType m_type; member in class:WebCore::EditingBehavior
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/sql/
H A DSQLValue.cpp35 : m_type(val.m_type)
43 ASSERT(m_type == StringValue);
51 ASSERT(m_type == NumberValue);
H A DSQLValue.h41 SQLValue() : m_type(NullValue), m_number(0.0) { }
42 SQLValue(double number) : m_type(NumberValue), m_number(number) { }
43 SQLValue(const String& s) : m_type(StringValue), m_number(0.0), m_string(s) { }
46 Type type() const { return m_type; }
52 Type m_type; member in class:WebCore::SQLValue
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DGridPosition.h44 : m_type(AutoPosition)
51 GridPositionType type() const { return m_type; }
52 bool isAuto() const { return m_type == AutoPosition; }
56 m_type = IntegerPosition;
68 return m_type == other.m_type && m_integerPosition == other.m_integerPosition;
72 GridPositionType m_type; member in class:WebCore::GridPosition
H A DLineClampValue.h35 : m_type(LineClampLineCount)
41 : m_type(type)
48 bool isPercentage() const { return m_type == LineClampPercentage; }
63 ELineClampType m_type; member in class:WebCore::LineClampValue
H A DGridTrackSize.h46 : m_type(LengthTrackSizing)
54 ASSERT(m_type == LengthTrackSizing);
62 m_type = LengthTrackSizing;
89 m_type = MinMaxTrackSizing;
94 GridTrackSizeType type() const { return m_type; }
98 return m_type == other.m_type && m_minTrackBreadth == other.m_minTrackBreadth && m_maxTrackBreadth == other.m_maxTrackBreadth;
107 GridTrackSizeType m_type; member in class:WebCore::GridTrackSize
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLToken.h100 m_type = Uninitialized;
108 bool isUninitialized() { return m_type == Uninitialized; }
109 Type type() const { return m_type; }
113 ASSERT(m_type == Uninitialized);
114 m_type = EndOfFile;
133 ASSERT(m_type == Character || m_type == Comment || m_type == StartTag || m_type == EndTag);
144 ASSERT(m_type
434 Type m_type; member in class:WebCore::HTMLToken
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/track/
H A DWebVTTToken.h61 ASSERT(m_type == WebVTTTokenTypes::StartTag || m_type == WebVTTTokenTypes::EndTag);
66 Type::Type type() const { return m_type; }
75 ASSERT(m_type == Type::Character || m_type == Type::TimestampTag);
83 ASSERT(m_type == Type::Uninitialized || m_type == Type::Character);
84 m_type = Type::Character;
89 ASSERT(m_type == Type::Character);
95 ASSERT(m_type
202 Type::Type m_type; member in class:WebCore::WebVTTToken
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGAbstractValue.h43 : m_type(SpecNone)
50 m_type = SpecNone;
60 bool result = m_type == SpecNone && !m_arrayModes && m_currentKnownStructure.isClear() && m_futurePossibleStructure.isClear();
68 m_type |= SpecTop; // The state may have included SpecEmpty, in which case we want this to become SpecEmptyOrTop.
78 if (m_type & SpecCell) {
95 return m_type == SpecTop && m_currentKnownStructure.isTop() && m_futurePossibleStructure.isTop();
100 return !m_value && m_type;
128 m_type = speculationFromValue(value);
148 m_type = speculationFromValue(value);
159 m_type
464 SpeculatedType m_type; member in struct:JSC::DFG::AbstractValue
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DPutPropertySlot.h42 : m_type(Uncachable)
50 m_type = ExistingProperty;
57 m_type = NewProperty;
62 Type type() const { return m_type; }
66 bool isCacheable() const { return m_type != Uncachable; }
74 Type m_type; member in class:JSC::PutPropertySlot
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DIDBAny.cpp57 : m_type(type)
69 ASSERT(m_type == DOMStringListType);
75 ASSERT(m_type == IDBCursorType);
81 ASSERT(m_type == IDBCursorWithValueType);
87 ASSERT(m_type == IDBDatabaseType);
93 ASSERT(m_type == IDBFactoryType);
99 ASSERT(m_type == IDBIndexType);
105 ASSERT(m_type == IDBObjectStoreType);
111 ASSERT(m_type == IDBTransactionType);
117 ASSERT(m_type
[all...]
H A DIDBKeyPath.h47 IDBKeyPath() : m_type(NullType) { }
57 Type type() const { return m_type; }
61 ASSERT(m_type == ArrayType);
67 ASSERT(m_type == StringType);
71 bool isNull() const { return m_type == NullType; }
76 Type m_type; member in class:WebCore::IDBKeyPath
H A DIDBKey.cpp39 if (m_type == InvalidType)
42 if (m_type == ArrayType) {
55 if (m_type != other->m_type)
56 return m_type > other->m_type ? -1 : 1;
58 switch (m_type) {
/macosx-10.9.5/WebCore-7537.78.1/Modules/quota/
H A DStorageQuota.cpp40 : m_type(type)
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebEvent.cpp36 : m_type(static_cast<uint32_t>(NoType))
43 : m_type(type)
51 encoder << m_type; local
58 if (!decoder.decode(result.m_type))
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGAnimatedType.h63 AnimatedPropertyType type() const { return m_type; }
68 ASSERT(m_type == AnimatedAngle);
74 ASSERT(m_type == AnimatedBoolean);
80 ASSERT(m_type == AnimatedColor);
86 ASSERT(m_type == AnimatedEnumeration);
92 ASSERT(m_type == AnimatedInteger);
98 ASSERT(m_type == AnimatedIntegerOptionalInteger);
104 ASSERT(m_type == AnimatedLength);
110 ASSERT(m_type == AnimatedLengthList);
116 ASSERT(m_type
277 AnimatedPropertyType m_type; member in class:WebCore::SVGAnimatedType
[all...]
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXPathValue.h57 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
86 Type m_type; member in class:WebCore::XPath::Value
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DContentType.h41 const String& raw() const { return m_type; }
43 String m_type; member in class:WebCore::ContentType
H A DContextMenuItem.cpp36 : m_type(type)
47 : m_type(type)
56 : m_type(SubmenuType)
72 m_type = SubmenuType;
75 m_type = ActionType;
82 m_type = type;
87 return m_type;
/macosx-10.9.5/WebKit2-7537.78.2/Platform/CoreIPC/unix/
H A DAttachmentUnix.cpp36 : m_type(MappedMemoryType)
43 : m_type(SocketType)
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DWebKitCSSTransformValue.cpp72 , m_type(op)
78 return transformValueToCssString(m_type, CSSValueList::customCssText());
84 return transformValueToCssString(m_type, CSSValueList::customSerializeResolvingVariables(variables));
90 , m_type(cloneFrom.m_type)
H A DWebKitCSSTransformValue.h69 bool equals(const WebKitCSSTransformValue& other) const { return m_type == other.m_type && CSSValueList::equals(other); }
74 TransformOperationType operationType() const { return m_type; }
82 TransformOperationType m_type; member in class:WebCore::WebKitCSSTransformValue
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/
H A DCursorEfl.cpp44 : m_type(other.m_type)
60 m_type = other.m_type;
126 m_platformCursor = cursorString(m_type);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/mac/
H A DSecItemRequestData.cpp35 : m_type(Invalid)
40 : m_type(type)
46 : m_type(type)
54 encoder.encodeEnum(m_type);
65 if (!decoder.decodeEnum(secItemRequestData.m_type))
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DBarProp.cpp40 , m_type(type)
46 return m_type;
57 switch (m_type) {

Completed in 235 milliseconds

1234567891011>>