HomeSort by relevance Sort by last modified time
    Searched full:m_value (Results 1 - 25 of 604) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/unittests/IR/
PatternMatch.cpp 61 EXPECT_TRUE(m_OneUse(m_Value(V)).match(One));
64 EXPECT_FALSE(m_OneUse(m_Value()).match(Two));
65 EXPECT_FALSE(m_OneUse(m_Value()).match(Leaf));
75 EXPECT_TRUE(m_OrdFMin(m_Value(MatchL), m_Value(MatchR))
81 EXPECT_TRUE(m_OrdFMin(m_Value(MatchL), m_Value(MatchR))
87 EXPECT_FALSE(m_OrdFMin(m_Value(MatchL), m_Value(MatchR))
91 EXPECT_FALSE(m_OrdFMin(m_Value(MatchL), m_Value(MatchR)
    [all...]
  /external/testng/src/main/java/org/testng/internal/annotations/
ListenersAnnotation.java 8 private Class<? extends ITestNGListener>[] m_value; field in class:ListenersAnnotation
12 return m_value;
17 m_value = value;
ExpectedExceptionsAnnotation.java 15 private Class[] m_value = {}; field in class:ExpectedExceptionsAnnotation
19 return m_value;
23 m_value = value;
ParametersAnnotation.java 16 private String[] m_value = {}; field in class:ParametersAnnotation
20 return m_value;
24 m_value = value;
  /external/libhevc/decoder/
ihevcd_trace.h 68 #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_range)
    [all...]
  /external/deqp/modules/glshared/
glsVertexArrayTests.hpp 244 static WrappedType<Type> create (Type value) { WrappedType<Type> v; v.m_value = value; return v; }
245 static WrappedType<Type> fromFloat (float value) { WrappedType<Type> v; v.m_value = (Type)value; return v; }
246 inline Type getValue (void) const { return m_value; }
248 inline WrappedType<Type> operator+ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue())); }
249 inline WrappedType<Type> operator* (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue())); }
250 inline WrappedType<Type> operator/ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue())); }
251 inline WrappedType<Type> operator% (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value % other.getValue())); }
252 inline WrappedType<Type> operator- (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue())); }
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;
270 Type m_value; member in class:deqp::gls::GLValue::WrappedType
303 Type m_value; member in class:deqp::gls::GLValue::WrappedFloatType
349 deFloat16 m_value; member in class:deqp::gls::GLValue::Half
381 deInt32 m_value; member in class:deqp::gls::GLValue::Fixed
    [all...]
  /external/pdfium/xfa/fde/css/
cfde_cssvalue.h 14 FDE_CSSPrimitiveType GetType() const { return m_value; }
20 FDE_CSSPrimitiveType m_value; member in class:CFDE_CSSValue
cfde_cssvalue.cpp 9 CFDE_CSSValue::CFDE_CSSValue(FDE_CSSPrimitiveType type) : m_value(type) {}
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
function-templates-original.cc 26 if (!isInBounds<T>(rhs.m_value))
28 m_value = static_cast<T>(rhs.m_value);
35 T m_value; member in class:WTF::Checked
  /external/testng/src/main/java/org/testng/collections/
Objects.java 14 private String m_value; field in class:Objects.ValueHolder
18 m_value = value;
22 return m_value == null;
27 return m_name + "=" + m_value;
31 return Strings.isNullOrEmpty(m_value);
  /external/deqp/framework/randomshaders/
rsgVariableValue.hpp 77 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->intVal;
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...]
rsgExpression.hpp 118 ExecConstValueAccess getValue (void) const { return m_value.getValue(VariableType::getScalarType(VariableType::TYPE_FLOAT)); }
121 ExecValueStorage m_value; member in class:rsg::FloatLiteral
136 ExecConstValueAccess getValue (void) const { return m_value.getValue(VariableType::getScalarType(VariableType::TYPE_INT)); }
139 ExecValueStorage m_value; member in class:rsg::IntLiteral
154 ExecConstValueAccess getValue (void) const { return m_value.getValue(VariableType::getScalarType(VariableType::TYPE_BOOL)); }
157 ExecValueStorage m_value; member in class:rsg::BoolLiteral
172 ExecConstValueAccess getValue (void) const { return m_value.getValue(m_valueRange.getType()); }
176 ExecValueStorage m_value; member in class:rsg::ConstructorOp
197 ExecConstValueAccess getValue (void) const { return m_value.getValue(m_valueRange.getType()); }
201 ExecValueStorage m_value; member in class:rsg::AssignOp
245 ExecValueStorage m_value; member in class:rsg::SwizzleOp
281 ExecValueStorage m_value; member in class:rsg::TexLookup
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
StringEntry.h 37 value_type& value() { return m_Value; }
39 const value_type& value() const { return m_Value; }
43 size_t getValueLength() const { return m_Value.size(); }
45 void setValue(const DataType& pVal) { m_Value = pVal; }
58 DataType m_Value;
76 value_type& value() { return m_Value; }
78 const value_type& value() const { return m_Value; }
82 size_t getValueLength() const { return m_Value.size(); }
101 llvm::StringRef m_Value;
  /external/deqp/framework/common/
tcuRGBA.hpp 57 RGBA (void) { m_value = 0; }
65 m_value = ((deUint32)a << ALPHA_SHIFT) | ((deUint32)r << RED_SHIFT) | ((deUint32)g << GREEN_SHIFT) | ((deUint32)b << BLUE_SHIFT);
70 m_value = val;
75 void setRed (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0xFFu << RED_SHIFT)) | ((deUint32)v << RED_SHIFT); }
76 void setGreen (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0xFFu << GREEN_SHIFT)) | ((deUint32)v << GREEN_SHIFT); }
77 void setBlue (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0xFFu << BLUE_SHIFT)) | ((deUint32)v << BLUE_SHIFT); }
78 void setAlpha (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0xFFu << ALPHA_SHIFT)) | ((deUint32)v << ALPHA_SHIFT);
104 deUint32 m_value; member in class:tcu::RGBA
    [all...]
  /frameworks/compile/mclinker/unittests/
GCFactoryListTraitsTest.h 40 unsigned m_Value;
43 Node() : m_Init(0), m_Value(0) {}
45 Node(unsigned pInit) : m_Init(pInit), m_Value(pInit) {}
49 inline unsigned getValue() const { return m_Value; }
51 inline void setValue(unsigned pValue) { m_Value = pValue; }
  /frameworks/native/libs/math/include/math/
mat4.h 121 col_type m_value[NUM_COLS]; member in class:android::details::TMat44
130 return m_value[column];
135 return m_value[column];
150 : m_value{ col_type(col_type::NO_INIT),
306 return TMat33<T>(m_value[0].xyz, m_value[1].xyz, m_value[2].xyz);
319 m_value[0] = col_type(1, 0, 0, 0);
320 m_value[1] = col_type(0, 1, 0, 0);
321 m_value[2] = col_type(0, 0, 1, 0)
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/ant/
StringValue.java 27 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
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 89 : m_value(value), m_derivatives(DerType::Zero(nbDer))
97 : m_value(value)
105 : m_value(value), m_derivatives(der)
116 : m_value(other.value()), m_derivatives(other.derivatives())
125 : m_value(other.value()), m_derivatives(other.derivatives())
131 m_value = other.value();
138 m_value = other.value();
145 m_value = other;
151 // inline operator const Scalar& () const { return m_value; }
152 // inline operator Scalar& () { return m_value; }
378 Scalar m_value; member in class:Eigen::AutoDiffScalar
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 58 Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value),
59 PB_DS_V2F(other.m_p_head->m_p_left->m_value));
62 Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value),
63 PB_DS_V2F(m_p_head->m_p_left->m_value));
101 if (Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_left->m_value)))
109 if (!Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_right->m_value)))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 58 Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value),
59 PB_DS_V2F(other.m_p_head->m_p_left->m_value));
62 Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value),
63 PB_DS_V2F(m_p_head->m_p_left->m_value));
101 if (Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_left->m_value)))
109 if (!Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_right->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/bin_search_tree_/
split_join_fn_imps.hpp 58 Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value),
59 PB_DS_V2F(other.m_p_head->m_p_left->m_value));
62 Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value),
63 PB_DS_V2F(m_p_head->m_p_left->m_value));
101 if (Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_left->m_value)))
109 if (!Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_right->m_value)))
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 58 Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value),
59 PB_DS_V2F(other.m_p_head->m_p_left->m_value));
62 Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value),
63 PB_DS_V2F(m_p_head->m_p_left->m_value));
101 if (Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_left->m_value)))
109 if (!Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_right->m_value)))
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 58 Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value),
59 PB_DS_V2F(other.m_p_head->m_p_left->m_value));
62 Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value),
63 PB_DS_V2F(m_p_head->m_p_left->m_value));
101 if (Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_left->m_value)))
109 if (!Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_right->m_value)))
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/bin_search_tree_/
split_join_fn_imps.hpp 58 Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value),
59 PB_DS_V2F(other.m_p_head->m_p_left->m_value));
62 Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value),
63 PB_DS_V2F(m_p_head->m_p_left->m_value));
101 if (Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_left->m_value)))
109 if (!Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_right->m_value)))
  /frameworks/compile/mclinker/include/mcld/Fragment/
FillFragment.h 27 int64_t getValue() const { return m_Value; }
40 /// m_Value - Value used for filling bytes
41 int64_t m_Value;

Completed in 434 milliseconds

1 2 3 4 5 6 7 8 91011>>