Searched defs:m_value (Results 101 - 125 of 128) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCalculationValue.cpp204 return !m_value->getDoubleValue();
209 return m_value->cssText();
216 value.pixels += m_value->computeLength<float>(conversionData) * multiplier;
219 ASSERT(m_value->isPercentage());
220 value.percent += m_value->getDoubleValue() * multiplier;
230 return m_value->getDoubleValue();
239 return m_value->computeLength<double>(conversionData);
242 return m_value->getDoubleValue();
259 m_value->accumulateLengthArray(lengthArray, multiplier);
267 return compareCSSValuePtr(m_value, static_cas
290 RefPtrWillBeMember<CSSPrimitiveValue> m_value; member in class:blink::FINAL
[all...]
H A DCSSPrimitiveValue.h306 Counter* getCounterValue() const { return m_primitiveUnitType != CSS_COUNTER ? 0 : m_value.counter; }
309 Rect* getRectValue() const { return m_primitiveUnitType != CSS_RECT ? 0 : m_value.rect; }
312 Quad* getQuadValue() const { return m_primitiveUnitType != CSS_QUAD ? 0 : m_value.quad; }
315 RGBA32 getRGBA32Value() const { return m_primitiveUnitType != CSS_RGBCOLOR ? 0 : m_value.rgbcolor; }
318 Pair* getPairValue() const { return m_primitiveUnitType != CSS_PAIR ? 0 : m_value.pair; }
320 CSSBasicShape* getShapeValue() const { return m_primitiveUnitType != CSS_SHAPE ? 0 : m_value.shape; }
322 CSSCalcValue* cssCalcValue() const { return m_primitiveUnitType != CSS_CALC ? 0 : m_value.calc; }
324 CSSPropertyID getPropertyID() const { return m_primitiveUnitType == CSS_PROPERTY_ID ? m_value.propertyID : CSSPropertyInvalid; }
325 CSSValueID getValueID() const { return m_primitiveUnitType == CSS_VALUE_ID ? m_value.valueID : CSSValueInvalid; }
402 } m_value; member in class:blink::CSSPrimitiveValue
[all...]
H A DCSSSelector.h359 AtomicString m_value; member in struct:blink::CSSSelector::RareData
377 DataUnion() : m_value(0) { }
378 StringImpl* m_value; member in union:blink::CSSSelector::DataUnion
454 m_data.m_rareData->m_value = value;
457 if (m_data.m_value)
458 m_data.m_value->deref();
459 m_data.m_value = value.impl();
460 m_data.m_value->ref();
511 } else if (o.m_data.m_value) {
512 m_data.m_value
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBasicShapes.h124 explicit BasicShapeRadius(const Length& v) : m_value(v), m_type(Value) { }
126 BasicShapeRadius(const BasicShapeRadius& other) : m_value(other.value()), m_type(other.type()) { }
127 bool operator==(const BasicShapeRadius& other) const { return m_type == other.m_type && m_value == other.m_value; }
129 const Length& value() const { return m_value; }
143 return BasicShapeRadius(m_value.blend(other.value(), progress, ValueRangeNonNegative));
147 Length m_value; member in class:blink::BasicShapeRadius
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLayoutUnit.h65 LayoutUnit() : m_value(0) { }
69 LayoutUnit(unsigned long value) { m_value = clampTo<int>(value * kFixedPointDenominator); }
70 LayoutUnit(unsigned long long value) { m_value = clampTo<int>(value * kFixedPointDenominator); }
71 LayoutUnit(float value) { m_value = clampTo<int>(value * kFixedPointDenominator); }
72 LayoutUnit(double value) { m_value = clampTo<int>(value * kFixedPointDenominator); }
77 v.m_value = clampToInteger(ceilf(value * kFixedPointDenominator));
84 v.m_value = clampToInteger(floorf(value * kFixedPointDenominator));
95 int toInt() const { return m_value / kFixedPointDenominator; }
96 float toFloat() const { return static_cast<float>(m_value) / kFixedPointDenominator; }
97 double toDouble() const { return static_cast<double>(m_value) / kFixedPointDenominato
233 int m_value; member in class:blink::LayoutUnit
[all...]
/external/deqp/framework/common/
H A DtcuTestLog.hpp388 , m_value (value)
399 T m_value; member in class:tcu::LogNumber
519 log.writeFloat(m_name.c_str(), m_desc.c_str(), m_unit.c_str(), m_tag, m_value);
525 log.writeInteger(m_name.c_str(), m_desc.c_str(), m_unit.c_str(), m_tag, m_value);
/external/deqp/framework/randomshaders/
H A DrsgProgramExecutor.cpp54 std::vector<Scalar> m_value; member in class:rsg::VaryingStorage
58 : m_value(type.getScalarSize()*numVertices)
64 return ValueAccess(type, &m_value[type.getScalarSize()*vtxNdx]);
69 return ConstValueAccess(type, &m_value[type.getScalarSize()*vtxNdx]);
/external/deqp/modules/gles2/functional/
H A Des2fShaderInvarianceTests.cpp72 const std::string m_value; member in class:deqp::gles2::Functional::__anon19899::FormatArgument
77 , m_value (value)
99 m_formatArguments[arg.m_name] = arg.m_value;
/external/deqp/modules/gles3/functional/
H A Des3fShaderInvarianceTests.cpp72 const std::string m_value; member in class:deqp::gles3::Functional::__anon20063::FormatArgument
77 , m_value (value)
99 m_formatArguments[arg.m_name] = arg.m_value;
H A Des3fShaderOperatorTests.cpp375 FloatScalar (float c) : m_isConstant(true), m_value(c) {}
376 FloatScalar (Symbol s) : m_isConstant(false), m_value(s) {}
381 return m_value.constant;
384 switch (m_value.symbol)
412 } m_value; member in class:deqp::gles3::Functional::FloatScalar
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DTextAutosizer.cpp58 , m_value(value)
64 m_element->setAttribute("data-autosizing", m_value, ASSERT_NO_EXCEPTION);
69 AtomicString m_value; member in class:blink::WriteDebugInfoTask
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DLinkedHashSet.h124 , m_value(value)
128 ValueArg m_value; member in class:WTF::LinkedHashSetNode
166 : storedValue(&hashTableAddResult.storedValue->m_value)
275 static unsigned hash(const Node& node) { return HashFunctions::hash(node.m_value); }
277 static bool equal(const Node& a, const ValuePeekInType& b) { return HashFunctions::equal(a.m_value, b); }
278 static bool equal(const Node& a, const Node& b) { return HashFunctions::equal(a.m_value, b.m_value); }
282 location.m_value = key;
294 static const Value& extract(const LinkedHashSetNode<Value, Allocator>& node) { return node.m_value; }
394 return &static_cast<const Node*>(m_position)->m_value;
[all...]
H A DListHashSet.h217 : m_value(value)
228 : m_value(value)
238 ValueArg m_value; member in class:WTF::ListHashSetNodeBase
389 self->m_value.~ValueArg();
432 template<typename T> static unsigned hash(const T& key) { return HashArg::hash(key->m_value); }
433 template<typename T> static bool equal(const T& a, const T& b) { return HashArg::equal(a->m_value, b->m_value); }
500 return &m_position->m_value;
607 return &m_position->m_value;
654 template<typename T, typename U> static bool equal(const T& a, const U& b) { return HashFunctions::equal(a->m_value,
[all...]
/external/deqp/framework/platform/X11/
H A DtcuX11GlxPlatform.cpp454 Rank (void) : m_value(0), m_bitsLeft(64) {}
457 deUint64 getValue (void) { return m_value; }
460 deUint64 m_value; member in class:tcu::x11::glx::Rank
468 m_value = m_value << bits | de::min((1U << bits) - 1, value);
475 m_value = m_value << bits | ((1U << bits) - 1 - de::min((1U << bits) - 1U, value));
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrix.h820 Index m_value; member in class:Eigen::SparseMatrix::SingletonVector
824 : m_index(i), m_value(v)
827 Index operator[](Index i) const { return i==m_index ? m_value : 0; }
/external/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp283 m_value(value), m_result(result)
292 RegisterValue &m_value; member in class:ReadRegOperation
306 m_value = *(uintptr_t *)(((caddr_t)&regs) + m_offset);
308 memcpy(&m_value, (((caddr_t)&regs) + m_offset), m_size);
322 m_value(value), m_result(result)
330 const RegisterValue &m_value; member in class:WriteRegOperation
343 *(uintptr_t *)(((caddr_t)&regs) + m_offset) = (uintptr_t)m_value.GetAsUInt64();
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A Dmarkup.cpp85 : m_element(element), m_name(name), m_value(value)
91 m_element->setAttribute(m_name, AtomicString(m_value));
102 String m_value; member in class:blink::AttributeChange
/external/deqp/executor/
H A DxeTestCaseResult.hpp173 NumericValue (deInt64 value) : m_type(TYPE_INT64) { m_value.int64 = value; }
174 NumericValue (double value) : m_type(TYPE_FLOAT64) { m_value.float64 = value; }
177 deInt64 getInt64 (void) const { DE_ASSERT(getType() == TYPE_INT64); return m_value.int64; }
178 double getFloat64 (void) const { DE_ASSERT(getType() == TYPE_FLOAT64); return m_value.float64; }
186 } m_value; member in class:xe::ri::NumericValue
/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...]
H A DglsBuiltinPrecisionTests.cpp710 , m_value (value)
721 os << " = " << *m_value << ";\n"; local
727 ctx.env.bind(*m_variable, m_value->evaluate(ctx));
729 ctx.env.lookup(*m_variable) = m_value->evaluate(ctx);
734 m_value->getUsedFuncs(dst);
738 ExprP<T> m_value; member in class:deqp::gls::BuiltinPrecisionTests::VariableStatement
1043 Constant (const T& value) : m_value(value) {}
1046 void doPrintExpr (ostream& os) const { os << m_value; } local
1047 IVal doEvaluate (const EvalContext&) const { return makeIVal(m_value); }
1050 T m_value; member in class:deqp::gls::BuiltinPrecisionTests::Constant
[all...]
/external/emma/core/java12/com/vladium/util/args/
H A DOptsParser.java1439 m_value = value;
1449 return m_value;
1454 return m_ID + ": [" + m_value + "]";
1492 private final String m_value; field in class:OptsParser.Token
/external/lldb/include/lldb/Core/
H A DValueObject.h1198 Value m_value; member in class:lldb_private::ValueObject
/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.cpp461 m_value(value), m_result(result)
470 RegisterValue &m_value; member in class:ReadRegOperation
486 m_value = data;
503 m_value(value), m_result(result)
512 const RegisterValue &m_value; member in class:WriteRegOperation
523 buf = (void*) m_value.GetAsUInt32();
525 buf = (void*) m_value.GetAsUInt64();
/external/emma/lib/
H A Demma_ant.jar ... java.lang.Object { private String m_name private String m_value public void " href="/5.1.0_r1/s? ...
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeapTest.cpp642 int value() { return m_value; }
645 Node(int i) : m_value(i) { }
646 int m_value; member in class:blink::Node
1300 m_value = SimpleFinalizedObject::create();
1305 visitor->trace(m_value);
1309 Member<SimpleFinalizedObject> m_value; member in class:blink::VectorObject
1319 m_value = SimpleFinalizedObject::create();
1323 Member<SimpleFinalizedObject> m_value; member in class:blink::VectorObjectNoTrace
5173 : m_value(nullptr)
5176 : m_value(ne
5211 Member<IntWrapper> m_value; member in class:blink::AllocatesOnAssignment
5298 bool m_value; member in class:blink::AllocInSuperConstructorArgumentSuper
[all...]

Completed in 487 milliseconds

123456