| /external/emma/core/java12/com/vladium/jcd/cls/constant/ |
| CONSTANT_Float_info.java | 33 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 ();
|
| CONSTANT_Integer_info.java | 34 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 ();
|
| CONSTANT_Long_info.java | 35 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 ();
|
| CONSTANT_Utf8_info.java | 37 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/chromium_org/third_party/WebKit/Source/core/css/ |
| CSSPrimitiveValue.cpp | 218 switch (m_value.calc->category()) { 265 m_value.valueID = valueID; 272 m_value.propertyID = propertyID; 280 m_value.parserOperator = parserOperator; 288 m_value.num = num; 295 if ((m_value.string = str.impl())) 296 m_value.string->ref(); 310 m_value.rgbcolor = color; 319 m_value.valueID = CSSValueAuto; 323 m_value.valueID = CSSValueIntrinsic [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/svg/ |
| SVGInteger.cpp | 41 , m_value(value) 47 return create(m_value); 59 return String::number(m_value); 65 m_value = 0; 70 m_value = stripLeadingAndTrailingHTMLSpaces(string).toIntStrict(&valid); 74 m_value = 0; 80 setValue(m_value + toSVGInteger(other)->value()); 91 float animatedFloat = m_value; 93 m_value = static_cast<int>(roundf(animatedFloat)); 98 return abs(m_value - toSVGInteger(other)->value()) [all...] |
| SVGBoolean.h | 49 PassRefPtr<SVGBoolean> clone() const { return create(m_value); } 59 bool operator==(const SVGBoolean& other) const { return m_value == other.m_value; } 62 bool value() const { return m_value; } 63 void setValue(bool value) { m_value = value; } 70 , m_value(value) 74 bool m_value; member in class:WebCore::SVGBoolean
|
| SVGString.h | 54 PassRefPtr<SVGString> clone() const { return create(m_value); } 60 virtual String valueAsString() const OVERRIDE { return m_value; } 61 void setValueAsString(const String& value, ExceptionState&) { m_value = value; } 67 const String& value() const { return m_value; } 68 void setValue(const String& value) { m_value = value; } 80 , m_value(value) 84 String m_value; member in class:WebCore::SVGString
|
| SVGString.cpp | 36 String fromString = toSVGString(from)->m_value; 37 String toString = toSVGString(to)->m_value; 39 animationElement->animateDiscreteType<String>(percentage, fromString, toString, m_value);
|
| /external/lldb/source/Plugins/SymbolFile/DWARF/ |
| DWARFFormValue.h | 50 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; // Contains all data for the for member in class:DWARFFormValue [all...] |
| /external/deqp/modules/glshared/ |
| glsVertexArrayTests.hpp | 244 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 -= other.getValue(); return *this; 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/chromium_org/third_party/WebKit/Source/core/animation/ |
| InterpolableValue.cpp | 16 return create(m_value); 18 return create(toNumber->m_value); 19 return create(m_value * (1 - progress) + toNumber->m_value * progress); 63 return create(m_value); 65 return create(otherValue->m_value); 66 return create(AnimatableValue::interpolate(m_value.get(), otherValue->m_value.get(), percentage)); 71 visitor->trace(m_value);
|
| /external/lldb/include/lldb/Interpreter/ |
| OptionGroupString.h | 65 return m_value; 71 return m_value; 75 OptionValueString m_value; member in class:lldb_private::OptionGroupString
|
| OptionGroupUInt64.h | 65 return m_value; 71 return m_value; 75 OptionValueUInt64 m_value; member in class:lldb_private::OptionGroupUInt64
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/gp_hash_table_map_/ |
| resize_no_store_hash_fn_imps.hpp | 48 const_key_reference r_key = PB_DS_V2F(p_e->m_value); 58 new (&p_new_e->m_value) value_type(p_e->m_value);
|
| resize_store_hash_fn_imps.hpp | 48 const_key_reference r_key = PB_DS_V2F(p_e->m_value); 59 new (&p_new_e->m_value) value_type(p_e->m_value);
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/gp_hash_table_map_/ |
| resize_no_store_hash_fn_imps.hpp | 48 key_const_reference r_key = PB_DS_V2F(p_e->m_value); 58 new (&p_new_e->m_value) value_type(p_e->m_value);
|
| resize_store_hash_fn_imps.hpp | 48 key_const_reference r_key = PB_DS_V2F(p_e->m_value); 59 new (&p_new_e->m_value) value_type(p_e->m_value);
|
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/gp_hash_table_map_/ |
| resize_no_store_hash_fn_imps.hpp | 48 key_const_reference r_key = PB_DS_V2F(p_e->m_value); 58 new (&p_new_e->m_value) value_type(p_e->m_value);
|
| resize_store_hash_fn_imps.hpp | 48 key_const_reference r_key = PB_DS_V2F(p_e->m_value); 59 new (&p_new_e->m_value) value_type(p_e->m_value);
|
| /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binomial_heap_base_/ |
| find_fn_imps.hpp | 53 return m_p_max->m_value; 67 if (Cmp_Fn::operator()(m_p_max->m_value, p_cur->m_value))
|
| /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/ |
| resize_no_store_hash_fn_imps.hpp | 48 const_key_reference r_key = PB_DS_V2F(p_e->m_value); 58 new (&p_new_e->m_value) value_type(p_e->m_value);
|
| resize_store_hash_fn_imps.hpp | 48 const_key_reference r_key = PB_DS_V2F(p_e->m_value); 59 new (&p_new_e->m_value) value_type(p_e->m_value);
|
| /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binomial_heap_base_/ |
| find_fn_imps.hpp | 53 return m_p_max->m_value; 67 if (Cmp_Fn::operator()(m_p_max->m_value, p_cur->m_value))
|
| /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/ |
| resize_no_store_hash_fn_imps.hpp | 48 const_key_reference r_key = PB_DS_V2F(p_e->m_value); 58 new (&p_new_e->m_value) value_type(p_e->m_value);
|