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

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditingBehavior.h33 : m_type(type)
45 return m_type != EditingWindowsBehavior && m_type != EditingAndroidBehavior;
50 bool shouldConsiderSelectionAsDirectional() const { return m_type != EditingMacBehavior; }
54 bool shouldCenterAlignWhenSelectionIsRevealed() const { return m_type == EditingMacBehavior; }
58 bool shouldToggleStyleBasedOnStartOfSelection() const { return m_type == EditingMacBehavior; }
62 bool shouldAlwaysGrowSelectionWhenExtendingToBoundary() const { return m_type == EditingMacBehavior; }
65 bool shouldSelectOnContextualMenuClick() const { return m_type == EditingMacBehavior; }
70 return m_type != EditingUnixBehavior && m_type !
100 EditingBehaviorType m_type; member in class:blink::EditingBehavior
[all...]
/external/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h43 m_type()
49 m_type()
52 m_type.m_type_name.assign(name);
59 m_type()
63 m_type.m_type_name.assign(type->GetName().GetCString());
64 m_type.m_typeimpl_sp = lldb::TypeImplSP(new TypeImpl(type));
70 m_type()
74 m_type.m_type_name.assign(type.GetConstTypeName().GetCString());
75 m_type.m_typeimpl_sp = lldb::TypeImplSP(new TypeImpl(type));
82 if (m_type
119 TypeOrName m_type; member in class:lldb_private::TypeNameSpecifierImpl
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLValue.cpp35 : m_type(val.m_type)
43 ASSERT(m_type == StringValue);
51 ASSERT(m_type == NumberValue);
H A DSQLValue.h40 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:blink::SQLValue
/external/deqp/framework/randomshaders/
H A DrsgToken.cpp32 : m_type(IDENTIFIER)
41 if (m_type == IDENTIFIER)
47 if (m_type == IDENTIFIER)
53 m_type = other.m_type;
55 if (m_type == IDENTIFIER)
61 else if (m_type == FLOAT_LITERAL)
63 else if (m_type == INT_LITERAL)
65 else if (m_type == BOOL_LITERAL)
72 : m_type(TYPE_LAS
[all...]
H A DrsgVariableType.hpp67 : m_type(DE_NULL)
73 : m_type(new VariableType(type))
80 delete m_type;
84 : m_type(DE_NULL)
87 if (other.m_type)
88 m_type = new VariableType(*other.m_type);
96 delete m_type;
98 m_type = DE_NULL;
101 if (other.m_type)
127 VariableType* m_type; member in class:rsg::VariableType::Member
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDimension.h48 : 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:blink::HTMLDimension
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DGridLength.h46 , m_type(LengthType)
52 , m_type(FlexType)
56 bool isLength() const { return m_type == LengthType; }
57 bool isFlex() const { return m_type == FlexType; }
63 bool isPercentage() const { return m_type == LengthType && m_length.isPercent(); }
67 return m_length == o.m_length && m_flex == o.m_flex && m_type == o.m_type;
70 bool isContentSized() const { return m_type == LengthType && (m_length.isAuto() || m_length.isMinContent() || m_length.isMaxContent()); }
81 GridLengthType m_type; member in class:blink::GridLength
H A DGridPosition.h48 : m_type(AutoPosition)
55 GridPositionType type() const { return m_type; }
56 bool isAuto() const { return m_type == AutoPosition; }
57 bool isSpan() const { return m_type == SpanPosition; }
58 bool isNamedGridArea() const { return m_type == NamedGridAreaPosition; }
62 m_type = ExplicitPosition;
69 m_type = AutoPosition;
78 m_type = SpanPosition;
85 m_type = NamedGridAreaPosition;
109 return m_type
117 GridPositionType m_type; member in class:blink::GridPosition
[all...]
H A DBorderImageLength.h46 , m_type(NumberType)
53 , m_type(LengthType)
57 bool isNumber() const { return m_type == NumberType; }
58 bool isLength() const { return m_type == LengthType; }
67 return m_type == other.m_type && m_length == other.m_length && m_number == other.m_number;
83 } m_type; member in class:blink::BorderImageLength
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:blink::LineClampValue
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementDescriptor.h48 : m_type(type)
66 const AtomicString& type() const { return m_type; }
68 bool isTypeExtension() const { return m_type != m_localName; }
74 : m_type(value) { }
75 bool isHashTableDeletedValue() const { return m_type.isHashTableDeletedValue(); }
79 return m_type == other.m_type
85 AtomicString m_type; member in class:blink::CustomElementDescriptor
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBAny.cpp53 : m_type(type)
71 ASSERT(m_type == DOMStringListType);
77 ASSERT(m_type == IDBCursorType);
84 ASSERT(m_type == IDBCursorWithValueType);
91 ASSERT(m_type == IDBDatabaseType);
97 ASSERT(m_type == IDBIndexType);
103 ASSERT(m_type == IDBObjectStoreType);
109 ASSERT(m_type == IDBTransactionType);
115 ASSERT(m_type == KeyType || m_type
[all...]
H A DIDBKeyPath.h45 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:blink::IDBKeyPath
H A DIDBKey.cpp42 if (m_type == InvalidType)
45 if (m_type == ArrayType) {
69 if (m_type != other->m_type)
70 return m_type > other->m_type ? -1 : 1;
72 switch (m_type) {
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLToken.h101 m_type = Uninitialized;
114 bool isUninitialized() { return m_type == Uninitialized; }
115 Type type() const { return m_type; }
119 ASSERT(m_type == Uninitialized);
120 m_type = EndOfFile;
139 ASSERT(m_type == Character || m_type == Comment || m_type == StartTag || m_type == EndTag);
150 ASSERT(m_type
439 Type m_type; member in class:blink::HTMLToken
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DMediaQueryToken.cpp16 : m_type(type)
26 : m_type(type)
32 ASSERT(m_type == DelimiterToken);
36 : m_type(type)
46 : m_type(type)
58 ASSERT(m_type == NumberToken);
59 m_type = DimensionToken;
65 ASSERT(m_type == NumberToken);
66 m_type = PercentageToken;
77 if (m_type
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSTransformValue.cpp70 , m_type(op)
76 return transformValueToCssString(m_type, CSSValueList::customCSSText());
81 , m_type(cloneFrom.m_type)
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimateTransformElement.cpp34 , m_type(SVG_TRANSFORM_UNKNOWN)
55 m_type = parseTransformType(value);
56 if (m_type == SVG_TRANSFORM_MATRIX)
57 m_type = SVG_TRANSFORM_UNKNOWN;
H A DSVGAnimateTransformElement.h36 SVGTransformType transformType() const { return m_type; }
45 SVGTransformType m_type; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathValue.h65 Value(unsigned value) : m_type(NumberValue), m_bool(false), m_number(value) { }
66 Value(unsigned long value) : m_type(NumberValue), m_bool(false), m_number(value) { }
67 Value(double value) : m_type(NumberValue), m_bool(false), m_number(value) { }
69 Value(const char* value) : m_type(StringValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) { }
70 Value(const String& value) : m_type(StringValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) { }
71 Value(const NodeSet& value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) { }
72 Value(Node* value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create()) { m_data->nodeSet().append(value); }
80 Value(PassOwnPtrWillBeRawPtr<NodeSet> value, const AdoptTag&) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) { }
82 Type type() const { return m_type; }
84 bool isNodeSet() const { return m_type
98 Type m_type; member in class:blink::XPath::Value
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DContentType.h42 const String& raw() const { return m_type; }
44 String m_type; member in class:blink::ContentType
H A DContextMenuItem.cpp34 : 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/lldb/include/lldb/Core/
H A DRegisterValue.h50 m_type (eTypeInvalid)
56 m_type (eTypeUInt8)
63 m_type (eTypeUInt16)
70 m_type (eTypeUInt32)
77 m_type (eTypeUInt64)
85 m_type (eTypeUInt128)
92 m_type (eTypeFloat)
99 m_type (eTypeDouble)
106 m_type (eTypeLongDouble)
120 return m_type;
382 RegisterValue::Type m_type; member in class:lldb_private::RegisterValue
[all...]
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DEventListener.h49 Type type() const { return m_type; }
53 : m_type(type)
60 Type m_type; member in class:blink::EventListener

Completed in 3988 milliseconds

1234567891011>>