Searched refs:m_value (Results 126 - 150 of 209) sorted by relevance

123456789

/external/lldb/include/lldb/Core/
H A DValue.h36 // m_value contains...
190 return m_value;
202 return m_value;
229 m_value = m_vector.GetAsScalar();
272 Scalar m_value; member in class:lldb_private::Value
/external/emma/core/java12/com/vladium/jcd/cls/
H A DField_info.java104 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value;
116 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_descriptor_index)).m_value;
H A DMethod_info.java105 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value;
117 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_descriptor_index)).m_value;
H A DConstantCollection.java155 final String mapKey = ((CONSTANT_Utf8_info) result).m_value;
164 m_CONSTANT_Utf8_index.put (((CONSTANT_Utf8_info) constant).m_value, zindex);
184 m_CONSTANT_Utf8_index.put (((CONSTANT_Utf8_info) constant).m_value, result /* !!! */ - 1);
287 index.put (((CONSTANT_Utf8_info) constant).m_value, i); // note: unadjusted index saved here
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathPredicate.cpp41 : m_value(value)
47 visitor->trace(m_value);
53 return m_value;
57 : m_value(value)
63 visitor->trace(m_value);
69 return m_value;
/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/core/css/
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...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCSpinner.java48 private int m_value = 0; field in class:CSpinner
76 m_text.setText("" + m_value);
89 m_value = (int) (m_format.parse(m_text.getText()).doubleValue() * m_multiplier);
90 if (m_value < m_minimum || m_value > m_maximum) {
94 m_value,
210 setSelection(Math.max(m_value, m_minimum));
218 setSelection(Math.min(m_value, m_maximum));
236 if (newValue != m_value) {
237 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/emma/core/java12/com/vladium/util/
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
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
/external/lldb/examples/python/
H A Ddisasm-stress-test.py71 self.m_value = start
75 print >>self.m_log_file, self.m_value
78 if self.m_value > self.m_last:
82 ret[self.m_byte_width - (i + 1)] = (self.m_value >> (i * 8)) & 255
84 self.m_value += self.m_skip
/external/deqp/modules/glshared/
H A DglsDrawTest.cpp411 static WrappedType<Type> create (Type value) { WrappedType<Type> v; v.m_value = value; return v; }
412 inline Type getValue (void) const { return m_value; }
414 inline WrappedType<Type> operator+ (const WrappedType<Type>& other) const { return WrappedType<Type>::create(m_value + other.getValue()); }
415 inline WrappedType<Type> operator* (const WrappedType<Type>& other) const { return WrappedType<Type>::create(m_value * other.getValue()); }
416 inline WrappedType<Type> operator/ (const WrappedType<Type>& other) const { return WrappedType<Type>::create(m_value / other.getValue()); }
417 inline WrappedType<Type> operator- (const WrappedType<Type>& other) const { return WrappedType<Type>::create(m_value - other.getValue()); }
419 inline WrappedType<Type>& operator+= (const WrappedType<Type>& other) { m_value += other.getValue(); return *this; }
420 inline WrappedType<Type>& operator*= (const WrappedType<Type>& other) { m_value *= other.getValue(); return *this; }
421 inline WrappedType<Type>& operator/= (const WrappedType<Type>& other) { m_value /= other.getValue(); return *this; }
422 inline WrappedType<Type>& operator-= (const WrappedType<Type>& other) { m_value
[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/animation/
H A DStringKeyframe.h37 CSSValue* value() const { return m_value.get(); }
53 RefPtrWillBeMember<CSSValue> m_value; member in class:blink::StringKeyframe::PropertySpecificKeyframe
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebMediaConstraints.cpp89 value = m_mandatory[i].m_value;
100 value = m_optional[i].m_value;
/external/eigen/Eigen/src/Core/util/
H A DXprHelper.h60 T m_value;
63 explicit variable_if_dynamic(T value) : m_value(value) {}
64 T value() const { return m_value; }
65 void setValue(T value) { m_value = value; }
81 T m_value;
84 explicit variable_if_dynamicindex(T value) : m_value(value) {}
85 T value() const { return m_value; }
86 void setValue(T value) { m_value = value; }
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DAttribute_info.java78 return ((CONSTANT_Utf8_info) cls.getConstants ().get (m_name_index)).m_value;
113 final String name = attribute_name.m_value;
/external/lldb/include/lldb/Target/
H A DStopInfo.h66 return m_value;
204 uint64_t m_value; // A generic value that can be used for things pertaining to this stop info member in class:lldb_private::StopInfo
/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 DFunctionalTest.cpp212 m_value = 0;
215 int value() const { return m_value; }
219 : m_value(value)
223 int m_value; member in class:__anon11430::Number
/external/deqp/executor/
H A DxeContainerFormatParser.hpp109 std::string m_value; member in class:xe::ContainerFormatParser
/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
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextAreaElement.cpp327 m_value = innerEditorValue();
337 return m_value;
372 unsigned endOfString = m_value.length();
379 m_value = normalizedValue;
380 setInnerEditorValue(m_value);
389 unsigned endOfString = m_value.length();
474 setInnerEditorValue(m_value);

Completed in 1877 milliseconds

123456789