Searched refs:m_type (Results 1 - 25 of 133) sorted by relevance

123456

/external/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h43 m_type()
49 m_type()
52 m_type.m_type_name.assign(name);
59 m_type()
63 m_type.m_type_name.assign(type->GetName().GetCString());
64 m_type.m_typeimpl_sp = lldb::TypeImplSP(new TypeImpl(type));
70 m_type()
74 m_type.m_type_name.assign(type.GetConstTypeName().GetCString());
75 m_type.m_typeimpl_sp = lldb::TypeImplSP(new TypeImpl(type));
82 if (m_type
119 TypeOrName m_type; member in class:lldb_private::TypeNameSpecifierImpl
[all...]
/external/deqp/framework/randomshaders/
H A DrsgToken.cpp32 : m_type(IDENTIFIER)
41 if (m_type == IDENTIFIER)
47 if (m_type == IDENTIFIER)
53 m_type = other.m_type;
55 if (m_type == IDENTIFIER)
61 else if (m_type == FLOAT_LITERAL)
63 else if (m_type == INT_LITERAL)
65 else if (m_type == BOOL_LITERAL)
72 : m_type(TYPE_LAS
[all...]
H A DrsgVariableType.hpp67 : m_type(DE_NULL)
73 : m_type(new VariableType(type))
80 delete m_type;
84 : m_type(DE_NULL)
87 if (other.m_type)
88 m_type = new VariableType(*other.m_type);
96 delete m_type;
98 m_type = DE_NULL;
101 if (other.m_type)
127 VariableType* m_type; member in class:rsg::VariableType::Member
[all...]
H A DrsgToken.hpp137 inline bool operator== (Type type) const { return m_type == type; }
138 inline bool operator!= (Type type) const { return m_type != type; }
145 inline Type getType (void) const { return m_type; }
153 Type m_type; member in class:rsg::Token
165 : m_type(TYPE_LAST)
171 : m_type(type)
177 : m_type(FLOAT_LITERAL)
183 : m_type(INT_LITERAL)
189 : m_type(BOOL_LITERAL)
201 DE_ASSERT(m_type
[all...]
H A DrsgVariableValue.hpp77 StridedValueRead (const VariableType& type, const Scalar* value) : m_type(type), m_value(value) {}
79 const VariableType& getType (void) const { return m_type; }
83 const VariableType& m_type; 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)) {}
94 const VariableType& getType (void) const { return *m_type; }
118 const VariableType* m_type; member in class:rsg::ConstStridedValueAccess
200 ConstValueRangeAccess (void) : m_type(DE_NULL), m_min(DE_NULL), m_max(DE_NULL) {}
201 ConstValueRangeAccess (const VariableType& type, const Scalar* minVal, const Scalar* maxVal) : m_type(&type), m_min(const_cast<Scalar*>(minVal)), m_max(const_cast<Scalar*>(maxVal)) {}
203 const VariableType& getType (void) const { return *m_type; }
218 const VariableType* m_type; member in class:rsg::ConstValueRangeAccess
304 VariableType m_type; member in class:rsg::ValueRange
[all...]
H A DrsgVariable.hpp57 const VariableType& getType (void) const { return m_type; }
71 VariableType m_type; member in class:rsg::Variable
H A DrsgVariable.cpp32 : m_type (type)
58 if (m_type.isFloatOrVec() || m_type.isIntOrVec())
116 m_type.tokenizeShortType(str);
/external/lldb/include/lldb/Core/
H A DRegisterValue.h50 m_type (eTypeInvalid)
56 m_type (eTypeUInt8)
63 m_type (eTypeUInt16)
70 m_type (eTypeUInt32)
77 m_type (eTypeUInt64)
85 m_type (eTypeUInt128)
92 m_type (eTypeFloat)
99 m_type (eTypeDouble)
106 m_type (eTypeLongDouble)
120 return m_type;
382 RegisterValue::Type m_type; member in class:lldb_private::RegisterValue
[all...]
H A DOpcode.h42 Opcode () : m_type (eTypeInvalid)
46 Opcode (uint8_t inst) : m_type (eType8)
51 Opcode (uint16_t inst) : m_type (eType16)
56 Opcode (uint32_t inst) : m_type (eType32)
61 Opcode (uint64_t inst) : m_type (eType64)
74 m_type = Opcode::eTypeInvalid;
79 return m_type;
85 switch (m_type)
102 switch (m_type)
118 switch (m_type)
[all...]
H A DScalar.h44 Scalar(int v) : m_type(e_sint), m_data() { m_data.sint = v; }
45 Scalar(unsigned int v) : m_type(e_uint), m_data() { m_data.uint = v; }
46 Scalar(long v) : m_type(e_slong), m_data() { m_data.slong = v; }
47 Scalar(unsigned long v) : m_type(e_ulong), m_data() { m_data.ulong = v; }
48 Scalar(long long v) : m_type(e_slonglong), m_data() { m_data.slonglong = v; }
49 Scalar(unsigned long long v): m_type(e_ulonglong), m_data() { m_data.ulonglong = v; }
50 Scalar(float v) : m_type(e_float), m_data() { m_data.flt = v; }
51 Scalar(double v) : m_type(e_double), m_data() { m_data.dbl = v; }
52 Scalar(long double v) : m_type(e_long_double), m_data() { m_data.ldbl = v; }
86 Clear() { m_type
284 Scalar::Type m_type; member in class:lldb_private::Scalar
[all...]
/external/lldb/include/lldb/Symbol/
H A DUnwindPlan.h63 m_type(unspecified),
80 m_type = unspecified;
86 m_type = undefined;
92 m_type = same;
98 return m_type == same;
104 return m_type == unspecified;
110 return m_type == isCFAPlusOffset;
116 return m_type == atCFAPlusOffset;
122 return m_type == inOtherRegister;
128 return m_type
225 RestoreType m_type; // How do we locate this register? member in class:lldb_private::UnwindPlan::Row::RegisterLocation
[all...]
H A DClangASTType.h63 m_type (type),
71 m_type (rhs.m_type),
77 m_type (0),
91 m_type = rhs.m_type;
103 return m_type != NULL && m_ast != NULL;
110 return m_type < rhs.m_type;
117 return m_type !
668 lldb::clang_type_t m_type; member in class:lldb_private::ClangASTType
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceDefinitionUtil.hpp45 VariablePathComponent (void) :m_type(TYPE_LAST) { }
46 VariablePathComponent (const glu::VarType* type) :m_type(TYPE_TYPE) { m_data.type = type; }
47 VariablePathComponent (const glu::InterfaceBlock* block) :m_type(TYPE_INTERFACEBLOCK) { m_data.block = block; }
48 VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.declaration = decl; }
50 VariablePathComponent (const VariablePathComponent& other) : m_data(other.m_data), m_type(other.m_type) { }
51 VariablePathComponent& operator= (const VariablePathComponent& other) { m_type = other.m_type; m_data = other.m_data; return *this; }
53 bool isVariableType (void) const { return m_type == TYPE_TYPE; }
54 bool isInterfaceBlock (void) const { return m_type
80 Type m_type; member in class:deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
[all...]
/external/deqp/modules/gles3/stress/
H A Des3sVertexArrayTests.cpp158 Array::InputType m_type; member in class:deqp::gles3::Stress::__anon3554::SingleVertexArrayStrideGroup
163 , m_type (type)
185 const bool packed = m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10;
186 const int stride = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)) : (strides[strideNdx]);
187 const int alignment = (packed) ? (Array::inputTypeSize(m_type) * componentCount) : (Array::inputTypeSize(m_type));
192 if((m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10) && componentCount != 4)
195 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type,
263 Array::InputType m_type; member in class:deqp::gles3::Stress::__anon3554::SingleVertexArrayFirstGroup
367 Array::InputType m_type; member in class:deqp::gles3::Stress::__anon3554::SingleVertexArrayOffsetGroup
[all...]
/external/lldb/source/Core/
H A DError.cpp32 m_type (eErrorTypeInvalid),
42 m_type (type),
49 m_type (rhs.m_type),
56 m_type (eErrorTypeInvalid),
71 m_type = rhs.m_type;
85 m_type = eErrorTypeMachKernel;
108 switch (m_type)
144 m_type
[all...]
H A DScalar.cpp78 m_type(e_void),
87 m_type(rhs.m_type),
93 // m_type(e_void),
101 // case 1: m_type = e_uint; m_data.uint = reg.value.uint8; break;
102 // case 2: m_type = e_uint; m_data.uint = reg.value.uint16; break;
103 // case 4: m_type = e_uint; m_data.uint = reg.value.uint32; break;
104 // case 8: m_type = e_ulonglong; m_data.ulonglong = reg.value.uint64; break;
112 // case 1: m_type = e_sint; m_data.sint = reg.value.sint8; break;
113 // case 2: m_type
[all...]
H A DRegisterValue.cpp237 switch (m_type)
268 m_type = eTypeInvalid;
274 m_type = eTypeInvalid;
284 m_type = eTypeUInt8;
286 m_type = eTypeUInt16;
288 m_type = eTypeUInt32;
290 m_type = eTypeUInt64;
293 m_type = eTypeUInt128;
299 m_type = eTypeFloat;
301 m_type
[all...]
/external/lldb/include/lldb/Target/
H A DCPPLanguageRuntime.h46 m_type (eTypeInvalid),
58 m_type (eTypeInvalid),
72 if (m_type == eTypeInvalid)
80 return m_type;
110 Type m_type; member in class:lldb_private::CPPLanguageRuntime::MethodName
/external/deqp/modules/gles3/functional/
H A Des3fVertexArrayTest.cpp155 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayStrideGroup
160 , m_type (type)
182 const bool packed = m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10;
183 const int stride = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)) : (strides[strideNdx]);
184 const int alignment = (packed) ? (Array::inputTypeSize(m_type) * componentCount) : (Array::inputTypeSize(m_type));
189 if((m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10) && componentCount != 4)
192 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type,
260 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayFirstGroup
364 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayOffsetGroup
464 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayNormalizeGroup
556 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayOutputTypeGroup
[all...]
/external/libavc/encoder/
H A Dih264e_rc_mem_interface.h51 #define FILL_MEMTAB(m_pv_mem_rec, m_j, m_mem_size, m_align, m_type) \
56 m_pv_mem_rec[m_j].e_mem_type = m_type; \
H A Dirc_mem_req_and_acq.h51 #define FILL_MEMTAB(m_pv_mem_rec, m_j, m_mem_size, m_align, m_type) \
56 m_pv_mem_rec[m_j].e_mem_type = m_type; \
/external/lldb/tools/lldb-perf/lib/
H A DResults.h45 m_type (type)
64 if (m_type == Type::Array)
71 if (m_type == Type::Dictionary)
78 if (m_type == Type::Double)
86 if (m_type == Type::String)
93 if (m_type == Type::Unsigned)
117 return m_type;
123 Type m_type; member in class:lldb_perf::Results::Result
/external/deqp/framework/opengl/
H A DgluVarTypeUtil.hpp142 bool isValid (void) const { return isValidTypePath(m_type, m_path); }
143 VarType getType (void) const { return getVarType(m_type, m_path); }
148 bool operator== (const SubTypeAccess& other) const { return m_path == other.m_path && m_type == other.m_type; }
149 bool operator!= (const SubTypeAccess& other) const { return m_path != other.m_path || m_type != other.m_type; }
152 VarType m_type; member in class:glu::SubTypeAccess
166 bool operator== (const SubTypeIterator<IsExpanded>& other) const { return m_type == other.m_type && m_path == other.m_path; }
167 bool operator!= (const SubTypeIterator<IsExpanded>& other) const { return m_type !
184 const VarType* m_type; member in class:glu::SubTypeIterator
[all...]
H A DgluVarType.cpp32 : m_type(TYPE_LAST)
37 : m_type(TYPE_LAST)
43 : m_type(TYPE_BASIC)
50 : m_type(TYPE_ARRAY)
58 : m_type(TYPE_STRUCT)
65 if (m_type == TYPE_ARRAY)
74 if (m_type == TYPE_ARRAY)
77 m_type = other.m_type;
80 if (m_type
[all...]
/external/lldb/source/Symbol/
H A DSymbol.cpp38 m_type (eSymbolTypeInvalid),
72 m_type (type),
104 m_type (type),
123 m_type (rhs.m_type),
146 m_type = rhs.m_type;
168 m_type = eSymbolTypeInvalid;
188 return m_type == eSymbolTypeTrampoline;
194 return m_type
[all...]

Completed in 589 milliseconds

123456