Searched refs:m_value (Results 1 - 25 of 88) sorted by relevance

1234

/external/lldb/test/lang/cpp/breakpoints/
H A Dnested.cpp10 Baz (int value):m_value(value) {}
13 printf ("%s returning: %d.\n", __FUNCTION__, m_value);
14 return m_value;
17 int m_value; member in class:Foo::Bar::Baz
23 Baz2 (int value):m_value(value) {}
26 printf ("%s returning: %d.\n", __FUNCTION__, m_value);
27 return m_value;
30 int m_value; member in class:Foo::Bar::Baz2
45 Baz (int value):m_value(value) {}
48 printf ("%s returning: %d.\n", __FUNCTION__, m_value);
52 int m_value; member in class:Baz
[all...]
/external/emma/ant/ant14/com/vladium/emma/ant/
H A DStringValue.java27 if (m_value == null)
29 m_value = new StringBuffer (value);
33 m_value.append (separator);
34 m_value.append (value); // no trailing separator kept
41 return m_value != null ? m_value.toString () : null;
62 private StringBuffer m_value; field in class:StringValue
H A DPropertyElement.java34 return m_value;
44 m_value = value;
54 private String m_name, m_value; field in class:PropertyElement
/external/libhevc/decoder/
H A Dihevcd_trace.h68 #define BITS_PARSE(m_str, m_value, m_ps_bitstrm, m_numbits) \
70 m_value = ihevcd_bits_get(m_ps_bitstrm, m_numbits); \
71 fprintf( g_trace.fp, "%-40s u(%d) : %d\n", m_str, m_numbits, m_value ); \
79 #define UEV_PARSE(m_str, m_value, m_ps_bitstrm) \
81 m_value = ihevcd_uev(m_ps_bitstrm); \
82 fprintf( g_trace.fp, "%-40s ue(v) : %d\n", m_str, m_value ); \
88 #define SEV_PARSE(m_str, m_value, m_ps_bitstrm) \
90 m_value = ihevcd_sev(m_ps_bitstrm); \
91 fprintf( g_trace.fp, "%-40s se(v) : %d\n", m_str, m_value ); \
109 #define AEV_TRACE(m_str, m_value, m_rang
[all...]
/external/lldb/include/lldb/Host/
H A DPredicate.h56 m_value(),
72 m_value(initial_value),
91 /// Copies the current \a m_value in a thread safe manor and returns
101 T value = m_value;
108 /// Set the contained \a m_value to \a new_value in a thread safe
127 const T old_value = m_value;
128 m_value = value;
134 /// Set some bits in \a m_value.
136 /// Logically set the bits \a bits in the contained \a m_value in a
140 /// The bits to set in \a m_value
470 T m_value; ///< The templatized value T that we are protecting access to member in class:lldb_private::Predicate
[all...]
/external/lldb/include/lldb/Core/
H A DThreadSafeValue.h29 m_value (),
35 m_value (value),
50 value = m_value;
60 return m_value;
67 m_value = value;
75 m_value = value;
85 T m_value; member in class:lldb_private::ThreadSafeValue
/external/lldb/source/Interpreter/
H A DOptionGroupBoolean.cpp27 m_value (default_value, default_value)
53 m_value.SetCurrentValue (!m_value.GetDefaultValue());
54 m_value.SetOptionWasSet ();
58 error = m_value.SetValueFromCString (option_arg);
66 m_value.Clear();
H A DOptionGroupString.cpp28 m_value (default_value, default_value)
50 Error error (m_value.SetValueFromCString (option_arg));
57 m_value.Clear();
H A DOptionGroupUInt64.cpp28 m_value (default_value, default_value)
50 Error error (m_value.SetValueFromCString (option_arg));
57 m_value.Clear();
/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...]
H A DValueObjectMemory.cpp66 m_value.SetContext(Value::eContextTypeLLDBType, m_type_sp.get());
71 m_value.SetValueType(Value::eValueTypeLoadAddress);
72 m_value.GetScalar() = load_address;
79 m_value.SetValueType(Value::eValueTypeFileAddress);
80 m_value.GetScalar() = file_address;
84 m_value.GetScalar() = m_address.GetOffset();
85 m_value.SetValueType (Value::eValueTypeScalar);
106 // m_value.SetContext(Value::eContextTypeClangType, m_clang_type.GetOpaqueQualType());
107 m_value.SetClangType(m_clang_type);
111 m_value
[all...]
H A DValueObjectChild.cpp122 m_value.SetClangType(GetClangType());
125 m_value.GetScalar() = parent->GetValue().GetScalar();
127 m_value.SetValueType (value_type);
132 m_value.GetScalar() = addr;
144 m_value.GetScalar() += m_byte_offset;
153 m_value.SetValueType (Value::eValueTypeLoadAddress);
155 m_value.SetValueType(Value::eValueTypeFileAddress);
159 m_value.SetValueType (Value::eValueTypeLoadAddress);
162 m_value.SetValueType(Value::eValueTypeHostAddress);
166 m_value
[all...]
/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...]
H A DDWARFFormValue.cpp112 m_value()
121 m_value.data = NULL;
128 case DW_FORM_addr: m_value.value.uval = data.GetMaxU64(offset_ptr, DWARFCompileUnit::GetAddressByteSize(cu)); break;
129 case DW_FORM_block2: m_value.value.uval = data.GetU16(offset_ptr); is_block = true; break;
130 case DW_FORM_block4: m_value.value.uval = data.GetU32(offset_ptr); is_block = true; break;
131 case DW_FORM_data2: m_value.value.uval = data.GetU16(offset_ptr); break;
132 case DW_FORM_data4: m_value.value.uval = data.GetU32(offset_ptr); break;
133 case DW_FORM_data8: m_value.value.uval = data.GetU64(offset_ptr); break;
134 case DW_FORM_string: m_value.value.cstr = data.GetCStr(offset_ptr);
138 m_value
[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/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
/external/deqp/framework/randomshaders/
H A DrsgVariableValue.hpp77 StridedValueRead (const VariableType& type, const Scalar* value) : m_type(type), m_value(value) {}
80 const Scalar* getValuePtr (void) const { return m_value; }
84 const Scalar* m_value; member in class:rsg::StridedValueRead
91 ConstStridedValueAccess (void) : m_type(DE_NULL), m_value(DE_NULL) {}
92 ConstStridedValueAccess (const VariableType& type, const Scalar* valuePtr) : m_type(&type), m_value(const_cast<Scalar*>(valuePtr)) {}
97 ConstStridedValueAccess component (int compNdx) const { return ConstStridedValueAccess(getType().getElementType(), m_value + Stride*compNdx); }
98 ConstStridedValueAccess arrayElement (int elementNdx) const { return ConstStridedValueAccess(getType().getElementType(), m_value + Stride*getType().getElementScalarOffset(elementNdx)); }
99 ConstStridedValueAccess member (int memberNdx) const { return ConstStridedValueAccess(getType().getMembers()[memberNdx].getType(), m_value + Stride*getType().getMemberScalarOffset(memberNdx)); }
101 float asFloat (void) const { DE_STATIC_ASSERT(Stride == 1); return m_value->floatVal; }
102 int asInt (void) const { DE_STATIC_ASSERT(Stride == 1); return m_value
119 Scalar* m_value; // \\note Non-const internal pointer is used so that ValueAccess can extend this class with RW access member in class:rsg::ConstStridedValueAccess
325 std::vector<Scalar> m_value; member in class:rsg::ValueStorage
[all...]
/external/deqp/framework/common/
H A DtcuRGBA.hpp57 RGBA (void) { m_value = 0; }
65 m_value = (a << ALPHA_SHIFT) | (r << RED_SHIFT) | (g << GREEN_SHIFT) | (b << BLUE_SHIFT);
70 m_value = val;
75 void setRed (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~(0xFF << RED_SHIFT)) | (v << RED_SHIFT); }
76 void setGreen (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~(0xFF << GREEN_SHIFT)) | (v << GREEN_SHIFT); }
77 void setBlue (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~(0xFF << BLUE_SHIFT)) | (v << BLUE_SHIFT); }
78 void setAlpha (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value
104 deUint32 m_value; member in class:tcu::RGBA
[all...]

Completed in 467 milliseconds

1234