HomeSort by relevance Sort by last modified time
    Searched refs:m_type (Results 1 - 25 of 460) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingBehavior.h 33 : 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 != EditingAndroidBehavior
100 EditingBehaviorType m_type; member in class:blink::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:blink::HTMLDimension
  /external/lldb/include/lldb/DataFormatters/
FormatClasses.h 43 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.m_type_name.size()
119 TypeOrName m_type; member in class:lldb_private::TypeNameSpecifierImpl
    [all...]
  /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:blink::SQLValue
  /external/deqp/framework/randomshaders/
rsgToken.cpp 32 : 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_LAST
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
GridLength.h 46 , 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
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:blink::LineClampValue
GridPosition.h 48 : 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 == other.m_type && m_integerPosition == other.m_integerPosition && m_namedGridLine == other.m_name (…)
117 GridPositionType m_type; member in class:blink::GridPosition
    [all...]
BorderImageLength.h 46 , 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
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementDescriptor.h 48 : 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/
IDBAny.cpp 53 : 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 == 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:blink::IDBKeyPath
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLToken.h 101 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 == StartTag || m_type == EndTag || m_type == DOCTYPE)
439 Type m_type; member in class:blink::HTMLToken
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
MediaQueryToken.cpp 16 : 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 == LeftParenthesisToken
    [all...]
  /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:blink::EventListener
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTransformValue.cpp 70 , m_type(op)
76 return transformValueToCssString(m_type, CSSValueList::customCSSText());
81 , m_type(cloneFrom.m_type)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleSheetCandidate.h 52 , m_type(typeOf(node))
68 bool isElement() const { return m_type != Pi; }
69 bool isHTMLLink() const { return m_type == HTMLLink; }
75 Type m_type; member in class:blink::StyleSheetCandidate
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateTransformElement.cpp 34 , m_type(SVG_TRANSFORM_UNKNOWN)
55 m_type = parseTransformType(value);
56 if (m_type == SVG_TRANSFORM_MATRIX)
57 m_type = SVG_TRANSFORM_UNKNOWN;
SVGAnimateTransformElement.h 36 SVGTransformType transformType() const { return m_type; }
45 SVGTransformType m_type; member in class:blink::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:blink::ProxyServer
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathValue.h 65 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 == NodeSetValue;
98 Type m_type; member in class:blink::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:blink::ContentType
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
virtual_and_trace_after_dispatch.h 18 A(Type type) : m_type(type) { }
20 Type m_type; member in class:blink::A
  /external/lldb/include/lldb/Core/
RegisterValue.h 50 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...]

Completed in 566 milliseconds

1 2 3 4 5 6 7 8 91011>>