Searched refs:m_value (Results 26 - 50 of 209) sorted by relevance

123456789

/external/chromium_org/third_party/WebKit/Source/modules/device_light/
H A DDeviceLightEvent.cpp15 : m_value(std::numeric_limits<double>::infinity())
21 , m_value(value)
27 , m_value(initializer.value)
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadButton.h19 double value() const { return m_value; }
20 void setValue(double val) { m_value = val; }
29 double m_value; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGRect.h53 const FloatRect& value() const { return m_value; }
54 void setValue(const FloatRect& v) { m_value = v; }
56 float x() const { return m_value.x(); }
57 float y() const { return m_value.y(); }
58 float width() const { return m_value.width(); }
59 float height() const { return m_value.height(); }
60 void setX(float f) { m_value.setX(f); }
61 void setY(float f) { m_value.setY(f); }
62 void setWidth(float f) { m_value.setWidth(f); }
63 void setHeight(float f) { m_value
86 FloatRect m_value; member in class:blink::SVGRect
[all...]
H A DSVGNumber.cpp40 : m_value(value)
46 return create(m_value);
51 return String::number(m_value);
57 if (!parseNumber(ptr, end, m_value, AllowLeadingAndTrailingWhitespace)) {
58 m_value = 0;
63 m_value = 0;
73 m_value = 0;
90 m_value = 0;
96 setValue(m_value + toSVGNumber(other)->value());
107 animationElement->animateAdditiveNumber(percentage, repeatCount, fromNumber->value(), toNumber->value(), toAtEndOfDurationNumber->value(), m_value);
[all...]
H A DSVGBoolean.cpp44 return m_value ? "true" : "false";
50 m_value = true;
52 m_value = false;
66 bool fromBoolean = animationElement->animationMode() == ToAnimation ? m_value : toSVGBoolean(from)->value();
69 animationElement->animateDiscreteType<bool>(percentage, fromBoolean, toBoolean, m_value);
H A DSVGString.h56 PassRefPtr<SVGString> clone() const { return create(m_value); }
62 virtual String valueAsString() const OVERRIDE { return m_value; }
63 void setValueAsString(const String& value, ExceptionState&) { m_value = value; }
69 const String& value() const { return m_value; }
70 void setValue(const String& value) { m_value = value; }
82 , m_value(value)
86 String m_value; member in class:blink::SVGString
H A DSVGString.cpp36 String fromString = toSVGString(from)->m_value;
37 String toString = toSVGString(to)->m_value;
39 animationElement->animateDiscreteType<String>(percentage, fromString, toString, m_value);
/external/lldb/source/Core/
H A DValueObjectCast.cpp57 //m_value.SetContext (Value::eContextTypeClangType, cast_type.GetOpaqueQualType());
58 m_value.SetClangType (cast_type);
80 return m_value.GetValueByteSize(NULL);
98 Value old_value(m_value);
100 m_value = m_parent->GetValue();
102 //m_value.SetContext (Value::eContextTypeClangType, clang_type);
103 m_value.SetClangType (clang_type);
110 SetValueDidChange (m_value.GetValueType() != old_value.GetValueType() || m_value.GetScalar() != old_value.GetScalar());
113 m_error = m_value
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableImage.h47 CSSValue* toCSSValue() const { return m_value.get(); }
51 visitor->trace(m_value);
61 : m_value(value)
63 ASSERT(m_value.get());
68 const RefPtrWillBeMember<CSSValue> m_value; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DAttribute.h39 , m_value(value)
46 const AtomicString& value() const { return m_value; }
53 bool isEmpty() const { return m_value.isEmpty(); }
56 void setValue(const AtomicString& value) { m_value = value; }
72 AtomicString m_value; member in class:blink::Attribute
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathResult.cpp43 : m_value(value)
47 switch (m_value.type()) {
60 m_nodeSet = NodeSet::create(m_value.toNodeSet(&context));
70 visitor->trace(m_value);
82 m_value = m_value.toNumber();
86 m_value = m_value.toString();
90 m_value = m_value
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCalculationValue.h52 float pixels() const { return m_value.pixels; }
53 float percent() const { return m_value.percent; }
54 PixelsAndPercent pixelsAndPercent() const { return m_value; }
58 : m_value(value)
63 PixelsAndPercent m_value; member in class:blink::CalculationValue
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_Double_info.java33 public double m_value; field in class:CONSTANT_Double_info
38 m_value = value;
55 return Double.toString (m_value);
75 out.writeDouble (m_value);
83 m_value = bytes.readDouble ();
H A DCONSTANT_Float_info.java33 public float m_value; field in class:CONSTANT_Float_info
38 m_value = value;
55 return Float.toString (m_value);
66 out.writeFloat (m_value);
74 m_value = bytes.readFloat ();
H A DCONSTANT_Integer_info.java34 public int m_value; field in class:CONSTANT_Integer_info
39 m_value = value;
56 return Integer.toString (m_value);
67 out.writeInt (m_value);
75 m_value = bytes.readInt ();
H A DCONSTANT_Long_info.java35 public long m_value; field in class:CONSTANT_Long_info
40 m_value = value;
57 return Long.toString (m_value);
76 out.writeLong (m_value);
84 m_value = bytes.readLong ();
H A DCONSTANT_Utf8_info.java37 public String m_value; field in class:CONSTANT_Utf8_info
42 m_value = value;
60 return "CONSTANT_Utf8: [" + m_value + ']';
71 out.writeUTF (m_value);
79 m_value = bytes.readUTF ();
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h50 const ValueType& Value() const { return m_value; }
55 bool IsInlinedCStr() const { return (m_value.data != NULL) && m_value.data == (uint8_t*)m_value.value.cstr; }
60 bool Boolean() const { return m_value.value.uval != 0; }
61 uint64_t Unsigned() const { return m_value.value.uval; }
62 void SetUnsigned(uint64_t uval) { m_value.value.uval = uval; }
63 int64_t Signed() const { return m_value.value.sval; }
64 void SetSigned(int64_t sval) { m_value.value.sval = sval; }
77 ValueType m_value; // Contain member in class:DWARFFormValue
[all...]
/external/deqp/modules/glshared/
H A DglsVertexArrayTests.hpp244 static WrappedType<Type> create (Type value) { WrappedType<Type> v; v.m_value = value; return v; }
245 inline Type getValue (void) const { return m_value; }
247 inline WrappedType<Type> operator+ (const WrappedType<Type>& other) const { return WrappedType<Type>::create(m_value + other.getValue()); }
248 inline WrappedType<Type> operator* (const WrappedType<Type>& other) const { return WrappedType<Type>::create(m_value * other.getValue()); }
249 inline WrappedType<Type> operator/ (const WrappedType<Type>& other) const { return WrappedType<Type>::create(m_value / other.getValue()); }
250 inline WrappedType<Type> operator- (const WrappedType<Type>& other) const { return WrappedType<Type>::create(m_value - other.getValue()); }
252 inline WrappedType<Type>& operator+= (const WrappedType<Type>& other) { m_value += other.getValue(); return *this; }
253 inline WrappedType<Type>& operator*= (const WrappedType<Type>& other) { m_value *= other.getValue(); return *this; }
254 inline WrappedType<Type>& operator/= (const WrappedType<Type>& other) { m_value /= other.getValue(); return *this; }
255 inline WrappedType<Type>& operator-= (const WrappedType<Type>& other) { m_value
268 Type m_value; member in class:deqp::gls::GLValue::WrappedType
312 deFloat16 m_value; member in class:deqp::gls::GLValue::Half
342 deInt32 m_value; member in class:deqp::gls::GLValue::Fixed
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPrimitiveValue.cpp218 switch (m_value.calc->category()) {
271 m_value.valueID = valueID;
278 m_value.propertyID = propertyID;
286 m_value.num = num;
293 m_value.string = str.impl();
294 if (m_value.string)
295 m_value.string->ref();
309 m_value.rgbcolor = color;
318 m_value.valueID = CSSValueAuto;
322 m_value
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DInterpolableValue.cpp16 return create(m_value);
18 return create(toNumber.m_value);
19 return create(m_value * (1 - progress) + toNumber.m_value * progress);
63 return create(m_value);
65 return create(otherValue.m_value);
66 return create(AnimatableValue::interpolate(m_value.get(), otherValue.m_value.get(), percentage));
71 visitor->trace(m_value);
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DAnimationValue.h67 , m_value(value)
72 float value() const { return m_value; }
75 float m_value; member in class:blink::FINAL
85 m_value = *value;
89 const TransformOperations* value() const { return &m_value; }
92 TransformOperations m_value; member in class:blink::FINAL
102 m_value = *value;
106 const FilterOperations* value() const { return &m_value; }
109 FilterOperations m_value; member in class:blink::FINAL
/external/lldb/include/lldb/Interpreter/
H A DOptionGroupBoolean.h66 return m_value;
72 return m_value;
76 OptionValueBoolean m_value; member in class:lldb_private::OptionGroupBoolean
H A DOptionGroupString.h65 return m_value;
71 return m_value;
75 OptionValueString m_value; member in class:lldb_private::OptionGroupString
H A DOptionGroupUInt64.h65 return m_value;
71 return m_value;
75 OptionValueUInt64 m_value; member in class:lldb_private::OptionGroupUInt64

Completed in 402 milliseconds

123456789