/external/lldb/include/lldb/DataFormatters/ |
D | FormatClasses.h | 43 m_type() in TypeNameSpecifierImpl() 49 m_type() in TypeNameSpecifierImpl() 52 m_type.m_type_name.assign(name); in TypeNameSpecifierImpl() 59 m_type() in TypeNameSpecifierImpl() 63 m_type.m_type_name.assign(type->GetName().GetCString()); in TypeNameSpecifierImpl() 64 m_type.m_typeimpl_sp = lldb::TypeImplSP(new TypeImpl(type)); in TypeNameSpecifierImpl() 70 m_type() in TypeNameSpecifierImpl() 74 m_type.m_type_name.assign(type.GetConstTypeName().GetCString()); in TypeNameSpecifierImpl() 75 m_type.m_typeimpl_sp = lldb::TypeImplSP(new TypeImpl(type)); in TypeNameSpecifierImpl() 82 if (m_type.m_type_name.size()) in GetName() [all …]
|
/external/lldb/include/lldb/Core/ |
D | RegisterValue.h | 50 m_type (eTypeInvalid) in RegisterValue() 56 m_type (eTypeUInt8) in RegisterValue() 63 m_type (eTypeUInt16) in RegisterValue() 70 m_type (eTypeUInt32) in RegisterValue() 77 m_type (eTypeUInt64) in RegisterValue() 85 m_type (eTypeUInt128) in RegisterValue() 92 m_type (eTypeFloat) in RegisterValue() 99 m_type (eTypeDouble) in RegisterValue() 106 m_type (eTypeLongDouble) in RegisterValue() 120 return m_type; in GetType() [all …]
|
D | Opcode.h | 42 Opcode () : m_type (eTypeInvalid) in Opcode() 46 Opcode (uint8_t inst) : m_type (eType8) in Opcode() 51 Opcode (uint16_t inst) : m_type (eType16) in Opcode() 56 Opcode (uint32_t inst) : m_type (eType32) in Opcode() 61 Opcode (uint64_t inst) : m_type (eType64) in Opcode() 74 m_type = Opcode::eTypeInvalid; in Clear() 79 return m_type; in GetType() 85 switch (m_type) 102 switch (m_type) 118 switch (m_type) [all …]
|
D | Scalar.h | 44 Scalar(int v) : m_type(e_sint), m_data() { m_data.sint = v; } in Scalar() 45 Scalar(unsigned int v) : m_type(e_uint), m_data() { m_data.uint = v; } in Scalar() 46 Scalar(long v) : m_type(e_slong), m_data() { m_data.slong = v; } in Scalar() 47 Scalar(unsigned long v) : m_type(e_ulong), m_data() { m_data.ulong = v; } in Scalar() 48 Scalar(long long v) : m_type(e_slonglong), m_data() { m_data.slonglong = v; } in Scalar() 49 Scalar(unsigned long long v): m_type(e_ulonglong), m_data() { m_data.ulonglong = v; } in Scalar() 50 Scalar(float v) : m_type(e_float), m_data() { m_data.flt = v; } in Scalar() 51 Scalar(double v) : m_type(e_double), m_data() { m_data.dbl = v; } in Scalar() 52 Scalar(long double v) : m_type(e_long_double), m_data() { m_data.ldbl = v; } in Scalar() 86 Clear() { m_type = e_void; m_data.ulonglong = 0; } in Clear() [all …]
|
/external/deqp/framework/randomshaders/ |
D | rsgToken.cpp | 32 : m_type(IDENTIFIER) in Token() 41 if (m_type == IDENTIFIER) in ~Token() 47 if (m_type == IDENTIFIER) in operator =() 53 m_type = other.m_type; in operator =() 55 if (m_type == IDENTIFIER) in operator =() 61 else if (m_type == FLOAT_LITERAL) in operator =() 63 else if (m_type == INT_LITERAL) in operator =() 65 else if (m_type == BOOL_LITERAL) in operator =() 72 : m_type(TYPE_LAST) in Token() 79 if (m_type != other.m_type) in operator !=() [all …]
|
D | rsgVariableType.hpp | 67 : m_type(DE_NULL) in Member() 73 : m_type(new VariableType(type)) in Member() 80 delete m_type; in ~Member() 84 : m_type(DE_NULL) in Member() 87 if (other.m_type) in Member() 88 m_type = new VariableType(*other.m_type); in Member() 96 delete m_type; in operator =() 98 m_type = DE_NULL; in operator =() 101 if (other.m_type) in operator =() 102 m_type = new VariableType(*other.m_type); in operator =() [all …]
|
D | rsgVariableValue.hpp | 77 …StridedValueRead (const VariableType& type, const Scalar* value) : m_type(type), m_value(value) {} in StridedValueRead() 79 const VariableType& getType (void) const { return m_type; } in getType() 83 const VariableType& m_type; member in rsg::StridedValueRead 91 ConstStridedValueAccess (void) : m_type(DE_NULL), m_value(DE_NULL) {} in ConstStridedValueAccess() 92 …ConstStridedValueAccess (const VariableType& type, const Scalar* valuePtr) : m_type(&type), m_valu… in ConstStridedValueAccess() 94 const VariableType& getType (void) const { return *m_type; } in getType() 118 const VariableType* m_type; member in rsg::ConstStridedValueAccess 200 ConstValueRangeAccess (void) : m_type(DE_NULL), m_min(DE_NULL), m_max(DE_NULL) {} in ConstValueRangeAccess() 201 …(const VariableType& type, const Scalar* minVal, const Scalar* maxVal) : m_type(&type), m_min(cons… in ConstValueRangeAccess() 203 const VariableType& getType (void) const { return *m_type; } in getType() [all …]
|
D | rsgToken.hpp | 137 inline bool operator== (Type type) const { return m_type == type; } in operator ==() 138 inline bool operator!= (Type type) const { return m_type != type; } in operator !=() 145 inline Type getType (void) const { return m_type; } in getType() 153 Type m_type; member in rsg::Token 165 : m_type(TYPE_LAST) in Token() 171 : m_type(type) in Token() 177 : m_type(FLOAT_LITERAL) in Token() 183 : m_type(INT_LITERAL) in Token() 189 : m_type(BOOL_LITERAL) in Token() 201 DE_ASSERT(m_type == IDENTIFIER); in getIdentifier() [all …]
|
/external/lldb/include/lldb/Symbol/ |
D | UnwindPlan.h | 63 m_type(unspecified), in RegisterLocation() 80 m_type = unspecified; in SetUnspecified() 86 m_type = undefined; in SetUndefined() 92 m_type = same; in SetSame() 98 return m_type == same; in IsSame() 104 return m_type == unspecified; in IsUnspecified() 110 return m_type == isCFAPlusOffset; in IsCFAPlusOffset() 116 return m_type == atCFAPlusOffset; in IsAtCFAPlusOffset() 122 return m_type == inOtherRegister; in IsInOtherRegister() 128 return m_type == atDWARFExpression; in IsAtDWARFExpression() [all …]
|
D | ClangASTType.h | 63 m_type (type), in ClangASTType() 71 m_type (rhs.m_type), in ClangASTType() 77 m_type (0), in ClangASTType() 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 != NULL && m_ast != NULL; in IsValid() 264 return m_type; in GetOpaqueQualType() 274 m_type = type; in SetClangType() 648 m_type = NULL; in Clear() [all …]
|
/external/deqp/modules/gles3/stress/ |
D | es3sVertexArrayTests.cpp | 158 Array::InputType m_type; member in deqp::gles3::Stress::__anon1a6781f10111::SingleVertexArrayStrideGroup 163 , m_type (type) in SingleVertexArrayStrideGroup() 185 …const bool packed = m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUT… in init() 186 … = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)… in init() 187 …t alignment = (packed) ? (Array::inputTypeSize(m_type) * componentCount) : (Array::inputTypeSize(… in init() 192 …if((m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_1… in init() 195 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type, in init() 203 GLValue::getMinValue(m_type), in init() 204 GLValue::getMaxValue(m_type)); in init() 263 Array::InputType m_type; member in deqp::gles3::Stress::__anon1a6781f10111::SingleVertexArrayFirstGroup [all …]
|
/external/lldb/source/Core/ |
D | Error.cpp | 32 m_type (eErrorTypeInvalid), in Error() 42 m_type (type), in Error() 49 m_type (rhs.m_type), in Error() 56 m_type (eErrorTypeInvalid), in Error() 71 m_type = rhs.m_type; in operator =() 85 m_type = eErrorTypeMachKernel; in operator =() 108 switch (m_type) in AsCString() 144 m_type = eErrorTypeGeneric; in Clear() 163 return m_type; in GetType() 258 m_type = eErrorTypeMachKernel; in SetMachError() [all …]
|
D | Scalar.cpp | 78 m_type(e_void), in Scalar() 87 m_type(rhs.m_type), in Scalar() 170 switch (m_type) in GetByteSize() 190 switch (m_type) in IsZero() 213 switch (m_type) in GetValue() 232 switch (m_type) in GetTypeAsCString() 258 m_type = rhs.m_type; in operator =() 267 m_type = e_sint; in operator =() 276 m_type = e_uint; in operator =() 284 m_type = e_slong; in operator =() [all …]
|
D | RegisterValue.cpp | 237 switch (m_type) in GetScalarValue() 268 m_type = eTypeInvalid; in Clear() 274 m_type = eTypeInvalid; in SetType() 284 m_type = eTypeUInt8; in SetType() 286 m_type = eTypeUInt16; in SetType() 288 m_type = eTypeUInt32; in SetType() 290 m_type = eTypeUInt64; in SetType() 293 m_type = eTypeUInt128; in SetType() 299 m_type = eTypeFloat; in SetType() 301 m_type = eTypeDouble; in SetType() [all …]
|
/external/deqp/modules/gles3/functional/ |
D | es3fVertexArrayTest.cpp | 155 Array::InputType m_type; member in deqp::gles3::Functional::SingleVertexArrayStrideGroup 160 , m_type (type) in SingleVertexArrayStrideGroup() 182 …const bool packed = m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUT… in init() 183 … = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)… in init() 184 …t alignment = (packed) ? (Array::inputTypeSize(m_type) * componentCount) : (Array::inputTypeSize(… in init() 189 …if((m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_1… in init() 192 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type, in init() 200 GLValue::getMinValue(m_type), in init() 201 GLValue::getMaxValue(m_type)); in init() 260 Array::InputType m_type; member in deqp::gles3::Functional::SingleVertexArrayFirstGroup [all …]
|
/external/deqp/framework/opengl/ |
D | gluVarTypeUtil.hpp | 142 bool isValid (void) const { return isValidTypePath(m_type, m_path); } in isValid() 143 VarType getType (void) const { return getVarType(m_type, m_path); } in getType() 148 …= (const SubTypeAccess& other) const { return m_path == other.m_path && m_type == other.m_type; } in operator ==() 149 …= (const SubTypeAccess& other) const { return m_path != other.m_path || m_type != other.m_type; } in operator !=() 152 VarType m_type; member in glu::SubTypeAccess 166 …or== (const SubTypeIterator<IsExpanded>& other) const { return m_type == other.m_type && m_path … in operator ==() 167 …or!= (const SubTypeIterator<IsExpanded>& other) const { return m_type != other.m_type || m_path … in operator !=() 172 void toStream (std::ostream& str) const { str << TypeAccessFormat(*m_type, m_path); } in toStream() 173 …VarType getType (void) const { return getVarType(*m_type, m_path.begin(), m_path.end());… in getType() 184 const VarType* m_type; member in glu::SubTypeIterator [all …]
|
D | gluVarType.cpp | 32 : m_type(TYPE_LAST) in VarType() 37 : m_type(TYPE_LAST) in VarType() 43 : m_type(TYPE_BASIC) in VarType() 50 : m_type(TYPE_ARRAY) in VarType() 58 : m_type(TYPE_STRUCT) in VarType() 65 if (m_type == TYPE_ARRAY) in ~VarType() 74 if (m_type == TYPE_ARRAY) in operator =() 77 m_type = other.m_type; in operator =() 80 if (m_type == TYPE_ARRAY) in operator =() 93 switch (m_type) in getScalarSize() [all …]
|
/external/deqp/modules/glshared/ |
D | glsTextureStateQueryTests.cpp | 578 const QueryType m_type; member in deqp::gls::TextureStateQueryTests::__anonc22dbc7d0111::TextureTest 593 , m_type (type) in TextureTest() 611 if (!isCoreQuery(m_renderCtx.getType(), m_type)) in init() 612 extensions.add(getQueryExtension(m_renderCtx.getType(), m_type)); in init() 711 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_DEPTH_COMPONENT, m_type); in test() 722 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_STENCIL_INDEX, m_type); in test() 726 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_DEPTH_COMPONENT, m_type); in test() 730 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_STENCIL_INDEX, m_type); in test() 734 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_DEPTH_COMPONENT, m_type); in test() 744 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_STENCIL_INDEX, m_type); in test() [all …]
|
D | glsAttributeLocationTests.hpp | 102 const AttribType getType (void) const { return m_type; } in getType() 109 AttribType m_type; member in deqp::gls::AttributeLocationTestUtil::Attribute 146 const AttribType m_type; member in deqp::gls::BindAttributeTest 165 const AttribType m_type; member in deqp::gls::BindMaxAttributesTest 184 const AttribType m_type; member in deqp::gls::BindAliasingAttributeTest 203 const AttribType m_type; member in deqp::gls::BindMaxAliasingAttributeTest 221 const AttribType m_type; member in deqp::gls::BindInactiveAliasingAttributeTest 239 const AttribType m_type; member in deqp::gls::BindHoleAttributeTest 311 const AttribType m_type; member in deqp::gls::LocationAttributeTest 329 const AttribType m_type; member in deqp::gls::LocationMaxAttributesTest [all …]
|
D | glsUniformBlockCase.hpp | 81 bool isBasicType (void) const { return m_type == TYPE_BASIC; } in isBasicType() 82 bool isArrayType (void) const { return m_type == TYPE_ARRAY; } in isArrayType() 83 bool isStructType (void) const { return m_type == TYPE_STRUCT; } in isStructType() 105 Type m_type; member in deqp::gls::ub::VarType 128 …StructMember (const char* name, const VarType& type, deUint32 flags) : m_name(name), m_type(type),… in StructMember() 132 const VarType& getType (void) const { return m_type; } in getType() 137 VarType m_type; member in deqp::gls::ub::StructMember 170 const VarType& getType (void) const { return m_type; } in getType() 175 VarType m_type; member in deqp::gls::ub::Uniform
|
/external/deqp/modules/gles31/functional/ |
D | es31fProgramInterfaceDefinitionUtil.hpp | 45 VariablePathComponent (void) :m_type(TYPE_LAST) { } in VariablePathComponent() 46 …VariablePathComponent (const glu::VarType* type) :m_type(TYPE_TYPE) { m_data.type = type; } in VariablePathComponent() 47 …VariablePathComponent (const glu::InterfaceBlock* block) :m_type(TYPE_INTERFACEBLOCK) { m_data.bl… in VariablePathComponent() 48 …VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.d… in VariablePathComponent() 50 …PathComponent (const VariablePathComponent& other) : m_data(other.m_data), m_type(other.m_type) { } in VariablePathComponent() 51 …VariablePathComponent& operator= (const VariablePathComponent& other) { m_type = other.m_type… in operator =() 53 bool isVariableType (void) const { return m_type == TYPE_TYPE; } in isVariableType() 54 bool isInterfaceBlock (void) const { return m_type == TYPE_INTERFACEBLOCK; } in isInterfaceBlock() 55 bool isDeclaration (void) const { return m_type == TYPE_DECLARATION; } in isDeclaration() 80 Type m_type; member in deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
|
D | es31fTextureBufferTests.cpp | 141 const QueryType m_type; member in deqp::gles31::Functional::__anonf1739d030411::LimitQueryCase 148 , m_type (type) in LimitQueryCase() 160 verifyStateIntegerMin(result, gl, m_target, m_minValue, m_type); in iterate() 176 const QueryType m_type; member in deqp::gles31::Functional::__anonf1739d030411::AlignmentQueryCase 183 , m_type (type) in AlignmentQueryCase() 195 verifyStateIntegerMax(result, gl, m_target, m_maxValue, m_type); in iterate() 209 const QueryType m_type; member in deqp::gles31::Functional::__anonf1739d030411::TextureBufferBindingQueryCase 214 , m_type (type) in TextureBufferBindingQueryCase() 231 verifyStateInteger(result, gl, GL_TEXTURE_BUFFER_BINDING, 0, m_type); in iterate() 244 verifyStateInteger(result, gl, GL_TEXTURE_BUFFER_BINDING, buffer, m_type); in iterate() [all …]
|
/external/lldb/source/Symbol/ |
D | Symbol.cpp | 38 m_type (eSymbolTypeInvalid), in Symbol() 72 m_type (type), in Symbol() 104 m_type (type), in Symbol() 123 m_type (rhs.m_type), in Symbol() 146 m_type = rhs.m_type; in operator =() 168 m_type = eSymbolTypeInvalid; in Clear() 188 return m_type == eSymbolTypeTrampoline; in IsTrampoline() 194 return m_type == eSymbolTypeResolver; in IsIndirect() 286 if (m_type == eSymbolTypeCode || m_type == eSymbolTypeResolver) in GetPrologueByteSize() 368 if (type == eSymbolTypeAny || m_type == type) in Compare() [all …]
|
D | SymbolContext.cpp | 666 m_type (eNothingSpecified) in SymbolContextSpecifier() 685 m_type |= eLineStartSpecified; in AddLineSpecification() 689 m_type |= eLineEndSpecified; in AddLineSpecification() 713 m_type |= eModuleSpecified; in AddSpecification() 724 m_type |= eFileSpecified; in AddSpecification() 729 m_type |= eLineStartSpecified; in AddSpecification() 734 m_type |= eLineEndSpecified; in AddSpecification() 738 m_type |= eFunctionSpecified; in AddSpecification() 743 m_type = eClassOrNamespaceSpecified; in AddSpecification() 764 m_type = eNothingSpecified; in Clear() [all …]
|
/external/lldb/tools/lldb-perf/lib/ |
D | Results.h | 45 m_type (type) in Result() 64 if (m_type == Type::Array) in GetAsArray() 71 if (m_type == Type::Dictionary) in GetAsDictionary() 78 if (m_type == Type::Double) in GetAsDouble() 86 if (m_type == Type::String) in GetAsString() 93 if (m_type == Type::Unsigned) in GetAsUnsigned() 117 return m_type; in GetType() 123 Type m_type; variable
|