Searched refs:m_value (Results 101 - 125 of 209) sorted by relevance

123456789

/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableValueKeyframe.cpp49 , m_value(const_cast<AnimatableValue*>(value))
54 , m_value(value)
61 Keyframe::PropertySpecificKeyframe* theClone = new PropertySpecificKeyframe(offset, m_easing, m_value);
78 visitor->trace(m_value);
H A DAnimatableValueKeyframe.h37 AnimatableValue* value() const { return m_value.get(); }
38 virtual const PassRefPtrWillBeRawPtr<AnimatableValue> getAnimatableValue() const OVERRIDE FINAL { return m_value; }
51 RefPtrWillBeMember<AnimatableValue> m_value; member in class:blink::AnimatableValueKeyframe::PropertySpecificKeyframe
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSetNodeAttributeCommand.h51 AtomicString m_value; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPoint.cpp50 : m_value(point)
56 return SVGPoint::create(m_value);
81 m_value = FloatPoint(x, y);
94 m_value = FloatPoint(0.0f, 0.0f);
/external/deqp/modules/glshared/
H A DglsStateQueryUtil.hpp76 const T& get (void) const { return m_value; }
91 T m_value; member in union:deqp::gls::StateQueryUtil::StateQueryMemoryWriteGuard::__anon20411
109 return m_value;
115 return &m_value;
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h82 : m_value(value), m_derivatives(DerType::Zero(nbDer))
90 : m_value(value)
98 : m_value(value), m_derivatives(der)
103 : m_value(other.value()), m_derivatives(other.derivatives())
112 : m_value(other.value()), m_derivatives(other.derivatives())
118 m_value = other.value();
125 m_value = other.value();
130 // inline operator const Scalar& () const { return m_value; }
131 // inline operator Scalar& () { return m_value; }
133 inline const Scalar& value() const { return m_value; }
370 Scalar m_value; member in class:Eigen::AutoDiffScalar
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptValue.cpp54 return m_value->newLocal(isolate());
61 return m_value->newLocal(isolate());
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DMediaQueryToken.h62 String value() const { return m_value; }
73 String m_value; member in class:blink::MediaQueryToken
75 UChar m_delimiter; // Could be rolled into m_value?
H A DMediaQueryToken.cpp37 , m_value(value)
75 if (!m_value.isNull())
76 return m_value;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMSettableTokenList.cpp33 : m_value()
90 m_value = value;
H A DDOMSettableTokenList.h64 virtual const AtomicString& value() const OVERRIDE { return m_value; }
77 AtomicString m_value; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DCounterNode.h49 int value() const { return m_value; }
82 int m_value; member in class:blink::CounterNode
H A DRenderListItem.h38 int value() const { if (!m_isValueUpToDate) updateValueNow(); return m_value; }
88 mutable int m_value; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathResult.h82 const XPath::Value& value() const { return m_value; }
90 XPath::Value m_value; member in class:blink::FINAL
92 OwnPtrWillBeMember<XPath::NodeSet> m_nodeSet; // FIXME: why duplicate the node set stored in m_value?
/external/chromium_org/third_party/WebKit/Source/modules/device_light/
H A DDeviceLightEvent.h41 double value() const { return m_value; }
50 double m_value; member in class:blink::FINAL
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_NameAndType_info.java58 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value;
63 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_descriptor_index)).m_value;
H A DCONSTANT_Class_info.java58 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value;
/external/valgrind/main/drd/tests/
H A Dannotate_smart_pointer.cpp50 AtomicInt32(const int value = 0) : m_value(value) { }
52 LONG operator++() { return InterlockedIncrement(&m_value); }
53 LONG operator--() { return InterlockedDecrement(&m_value); }
56 volatile LONG m_value; member in class:AtomicInt32
112 AtomicInt32(const int value = 0) : m_value(value) { }
114 int operator++() { return __sync_add_and_fetch(&m_value, 1); }
115 int operator--() { return __sync_sub_and_fetch(&m_value, 1); }
117 volatile int m_value; member in class:AtomicInt32
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DStringKeyframe.cpp59 , m_value(value)
64 , m_value(value)
71 CSSValue* fromCSSValue = m_value.get();
141 Keyframe::PropertySpecificKeyframe* theClone = new PropertySpecificKeyframe(offset, m_easing, m_value.get());
148 visitor->trace(m_value);
/external/emma/core/java12/com/vladium/util/
H A DIntObjectMap.java119 return entry.m_value;
178 final Object currentKeyValue = currentKeyEntry.m_value;
179 currentKeyEntry.m_value = value;
227 m_value = value;
231 Object m_value; // reference to the value [never null] field in class:IntObjectMap.Entry
/external/lldb/source/Target/
H A DStopInfo.cpp41 m_value (value),
144 BreakpointSiteSP bp_site_sp (thread_sp->GetProcess()->GetBreakpointSiteList().FindByID (m_value));
180 BreakpointSiteSP bp_site_sp (thread_sp->GetProcess()->GetBreakpointSiteList().FindByID (m_value));
192 log->Printf ("Process::%s could not find breakpoint site id: %" PRId64 "...", __FUNCTION__, m_value);
209 BreakpointSiteSP bp_site_sp (thread_sp->GetProcess()->GetBreakpointSiteList().FindByID (m_value));
236 BreakpointSiteSP bp_site_sp (thread_sp->GetProcess()->GetBreakpointSiteList().FindByID (m_value));
290 strm.Printf("breakpoint site %" PRIi64 " which has been deleted - unknown address", m_value);
292 strm.Printf("breakpoint site %" PRIi64 " which has been deleted - was at 0x%" PRIx64, m_value, m_address);
336 BreakpointSiteSP bp_site_sp (thread_sp->GetProcess()->GetBreakpointSiteList().FindByID (m_value));
501 log_process->Printf ("Process::%s could not find breakpoint site id: %" PRId64 "...", __FUNCTION__, m_value);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeNumericFieldElement.cpp58 , m_value(0)
170 m_value = 0;
177 m_value = m_hardLimits.clampValue(value);
184 int newValue = roundDown(m_hasValue ? m_value - 1 : defaultValueForStepDown());
193 int newValue = roundUp(m_hasValue ? m_value + 1 : defaultValueForStepUp());
202 return m_hasValue ? formatValue(m_value) : emptyString();
207 return m_hasValue ? m_value : -1;
/external/deqp/framework/common/
H A DtcuFloat.hpp105 StorageType bits (void) const { return m_value; }
109 inline int signBit (void) const { return (m_value >> (ExponentBits+MantissaBits)) & 1; }
110 inline StorageType exponentBits (void) const { return (m_value >> MantissaBits) & ((StorageType(1)<<ExponentBits)-1); }
111 inline StorageType mantissaBits (void) const { return m_value & ((StorageType(1)<<MantissaBits)-1); }
127 StorageType m_value; member in class:tcu::Float
137 : m_value(0)
143 : m_value(value)
149 : m_value(0)
158 : m_value(0)
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMeterElement.h83 RefPtrWillBeMember<MeterValueElement> m_value; member in class:blink::FINAL
H A DHTMLProgressElement.h71 RawPtrWillBeMember<ProgressValueElement> m_value; member in class:blink::FINAL

Completed in 383 milliseconds

123456789