Searched defs:m_value (Results 51 - 75 of 128) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextAreaElement.h135 mutable String m_value; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeNumericFieldElement.h101 int m_value; member in class:blink::DateTimeNumericFieldElement
/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
/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 DSVGEnumeration.h51 unsigned short value() const { return m_value <= maxExposedEnumValue() ? m_value : 0; }
75 , m_value(value)
91 unsigned short m_value; member in class:blink::SVGEnumerationBase
122 ASSERT(m_value <= maxInternalEnumValue());
123 return static_cast<Enum>(m_value);
128 m_value = value;
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathPredicate.h46 Value m_value; member in class:blink::XPath::FINAL
58 Value m_value; member in class:blink::XPath::FINAL
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/indexeddb/
H A DIDBCursor.h104 RefPtr<SharedBuffer> m_value; member in class:blink::IDBCursor
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioParamTimeline.h80 , m_value(value)
89 float value() const { return m_value; }
97 float m_value; member in class:blink::AudioParamTimeline::ParamEvent
H A DAudioParam.h79 void resetSmoothedValue() { m_smoothedValue = m_value; }
120 , m_value(defaultValue)
128 double m_value; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCrossThreadCopier.h185 explicit AllowCrossThreadAccessWrapper(T* value) : m_value(value) { }
186 T* value() const { return m_value; }
194 T* m_value; member in struct:blink::AllowCrossThreadAccessWrapper
211 explicit AllowAccessLaterWrapper(T* value) : m_value(value) { }
212 T* value() const { return m_value; }
214 T* m_value; member in struct:blink::AllowAccessLaterWrapper
H A DPODIntervalTreeTest.cpp171 : m_value(value) { }
173 int value() const { return m_value; }
175 bool operator<(const EndpointType1& other) const { return m_value < other.m_value; }
176 bool operator==(const EndpointType1& other) const { return m_value == other.m_value; }
179 int m_value; member in class:blink::__anon11248::EndpointType1
/external/chromium_org/third_party/WebKit/Source/web/
H A DContextFeaturesClientImpl.cpp54 : m_value(NeedsRefresh)
60 ASSERT(m_value != NeedsRefresh);
61 return m_value == IsEnabled;
66 m_value = value ? IsEnabled : IsDisabled;
72 return m_value == NeedsRefresh || m_defaultValue != defaultValue;
76 Value m_value; member in class:blink::FINAL::Entry
/external/deqp/framework/opengl/
H A DgluContextInfo.hpp43 , m_value (defaultValue)
52 m_value = m_compute(context);
55 return m_value;
60 mutable T m_value; member in class:glu::CachedValue
/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/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
H A DObjectIntMap.java128 out [0] = entry.m_value;
185 currentKeyEntry.m_value = value;
265 m_value = value;
270 int m_value; field in class:ObjectIntMap.Entry
H A DIntIntMap.java119 out [0] = entry.m_value;
138 out [index] = entry.m_value;
192 currentKeyEntry.m_value = value;
269 m_value = value;
274 int m_value; field in class:IntIntMap.Entry
/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/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptPromiseResolver.h124 m_value.set(m_scriptState->isolate(), toV8Value(value));
138 ScopedPersistent<v8::Value> m_value; member in class:blink::ScriptPromiseResolver
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSProperty.h61 , m_value(value)
68 , m_value(value)
77 CSSValue* value() const { return m_value.get(); }
86 void trace(Visitor* visitor) { visitor->trace(m_value); }
90 RefPtrWillBeMember<CSSValue> m_value; member in class:blink::CSSProperty
/external/deqp/executor/
H A DxeContainerFormatParser.hpp109 std::string m_value; member in class:xe::ContainerFormatParser
/external/deqp/framework/egl/
H A DegluConfigFilter.hpp52 , m_value (value)
59 , m_value (0)
70 EGLint m_value; member in class:eglu::ConfigFilter
/external/deqp/modules/internal/
H A DditBuildInfoTests.cpp96 , m_value (value)
102 m_testCtx.getLog() << TestLog::Message << m_valueName << " = " << m_value << TestLog::EndMessage;
109 std::string m_value; member in class:dit::BuildInfoStringCase
120 , m_value (value)
127 const char* valueName = m_getString(m_value);
129 std::string logValue = valueName ? std::string(valueName) : de::toString(m_value);
140 int m_value; member in class:dit::BuildEnumCase
/external/eigen/Eigen/src/SparseCore/
H A DSparseUtil.h152 Triplet() : m_row(0), m_col(0), m_value(0) {}
155 : m_row(i), m_col(j), m_value(v)
165 const Scalar& value() const { return m_value; }
168 Scalar m_value; member in class:Eigen::Triplet

Completed in 393 milliseconds

123456