/external/llvm-project/lldb/source/Symbol/ |
D | CompilerType.cpp | 33 return m_type_system->IsAggregateType(m_type); in IsAggregateType() 39 return m_type_system->IsAnonymousType(m_type); in IsAnonymousType() 46 return m_type_system->IsArrayType(m_type, element_type_ptr, size, in IsArrayType() 61 return m_type_system->IsVectorType(m_type, element_type, size); in IsVectorType() 67 return m_type_system->IsRuntimeGeneratedType(m_type); in IsRuntimeGeneratedType() 73 return m_type_system->IsCharType(m_type); in IsCharType() 79 return m_type_system->IsCompleteType(m_type); in IsCompleteType() 85 return m_type_system->IsConst(m_type); in IsConst() 91 return m_type_system->IsCStringType(m_type, length); in IsCStringType() 97 return m_type_system->IsFunctionType(m_type); in IsFunctionType() [all …]
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | UnwindPlan.h | 74 RegisterLocation() : m_type(unspecified), m_location() {} in RegisterLocation() 82 void SetUnspecified() { m_type = unspecified; } in SetUnspecified() 84 void SetUndefined() { m_type = undefined; } in SetUndefined() 86 void SetSame() { m_type = same; } in SetSame() 88 bool IsSame() const { return m_type == same; } in IsSame() 90 bool IsUnspecified() const { return m_type == unspecified; } in IsUnspecified() 92 bool IsUndefined() const { return m_type == undefined; } in IsUndefined() 94 bool IsCFAPlusOffset() const { return m_type == isCFAPlusOffset; } in IsCFAPlusOffset() 96 bool IsAtCFAPlusOffset() const { return m_type == atCFAPlusOffset; } in IsAtCFAPlusOffset() 98 bool IsAFAPlusOffset() const { return m_type == isAFAPlusOffset; } in IsAFAPlusOffset() [all …]
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | RegisterValue.h | 47 : m_type(eTypeInvalid), m_scalar(static_cast<unsigned long>(0)) {} in RegisterValue() 49 explicit RegisterValue(uint8_t inst) : m_type(eTypeUInt8) { m_scalar = inst; } in RegisterValue() 51 explicit RegisterValue(uint16_t inst) : m_type(eTypeUInt16) { in RegisterValue() 55 explicit RegisterValue(uint32_t inst) : m_type(eTypeUInt32) { in RegisterValue() 59 explicit RegisterValue(uint64_t inst) : m_type(eTypeUInt64) { in RegisterValue() 63 explicit RegisterValue(llvm::APInt inst) : m_type(eTypeUInt128) { in RegisterValue() 67 explicit RegisterValue(float value) : m_type(eTypeFloat) { m_scalar = value; } in RegisterValue() 69 explicit RegisterValue(double value) : m_type(eTypeDouble) { in RegisterValue() 73 explicit RegisterValue(long double value) : m_type(eTypeLongDouble) { in RegisterValue() 82 RegisterValue::Type GetType() const { return m_type; } in GetType() [all …]
|
D | Scalar.h | 52 Scalar() : m_type(e_void), m_float(0.0f) {} in Scalar() 53 Scalar(int v) : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 55 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 56 Scalar(long v) : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 58 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 60 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 62 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 63 Scalar(float v) : m_type(e_float), m_float(v) {} in Scalar() 64 Scalar(double v) : m_type(e_float), m_float(v) {} in Scalar() 65 Scalar(long double v) : m_type(e_float), m_float(double(v)) { in Scalar() [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/pdfium/xfa/fxfa/fm2js/ |
D | cxfa_fmlexer_unittest.cpp | 16 EXPECT_EQ(TOKeof, token.m_type); in TEST() 23 EXPECT_EQ(TOKeof, token.m_type); in TEST() 31 EXPECT_EQ(TOKminus, token.m_type); in TEST() 35 EXPECT_EQ(TOKeof, token.m_type); in TEST() 39 EXPECT_EQ(TOKnumber, token.m_type); in TEST() 44 EXPECT_EQ(TOKnumber, token.m_type); in TEST() 49 EXPECT_EQ(TOKnumber, token.m_type); in TEST() 54 EXPECT_EQ(TOKnumber, token.m_type); in TEST() 59 EXPECT_EQ(TOKnumber, token.m_type); in TEST() 66 EXPECT_EQ(TOKnumber, token.m_type); in TEST() [all …]
|
D | cxfa_fmparser.cpp | 53 while (!HasError() && m_token.m_type == TOKreserver) in NextToken() 62 if (m_token.m_type != op) { in CheckThenNext() 81 if (m_token.m_type == TOKeof || m_token.m_type == TOKendfunc || in ParseExpressionList() 82 m_token.m_type == TOKendif || m_token.m_type == TOKelseif || in ParseExpressionList() 83 m_token.m_type == TOKelse || m_token.m_type == TOKendwhile || in ParseExpressionList() 84 m_token.m_type == TOKendfor || m_token.m_type == TOKend || in ParseExpressionList() 85 m_token.m_type == TOKendfunc || m_token.m_type == TOKreserver) { in ParseExpressionList() 90 m_token.m_type == TOKfunc ? ParseFunction() : ParseExpression(); in ParseExpressionList() 115 if (m_token.m_type != TOKidentifier) in ParseFunction() 127 if (m_token.m_type == TOKrparen) in ParseFunction() [all …]
|
/external/llvm-project/lldb/source/Utility/ |
D | Scalar.cpp | 31 switch (m_type) { in GetPromoKey() 119 switch (m_type) { in GetBytes() 132 switch (m_type) { in GetByteSize() 144 switch (m_type) { in IsZero() 159 switch (m_type) { in GetValue() 179 switch (m_type) { in IntegralPromote() 195 switch (m_type) { in FloatPromote() 213 m_type = e_float; in FloatPromote() 230 switch (m_type) { in IsSigned() 244 switch (m_type) { in MakeSigned() [all …]
|
D | Status.cpp | 40 Status::Status() : m_code(0), m_type(eErrorTypeInvalid), m_string() {} in Status() 43 : m_code(err), m_type(type), m_string() {} in Status() 50 m_type(EC.category() == std::generic_category() ? eErrorTypePOSIX in Status() 55 : m_code(0), m_type(eErrorTypeInvalid), m_string() { in Status() 75 m_type = ErrorType::eErrorTypePOSIX; in operator =() 93 if (m_type == ErrorType::eErrorTypePOSIX) in ToError() 136 switch (m_type) { in AsCString() 170 m_type = eErrorTypeInvalid; in Clear() 178 ErrorType Status::GetType() const { return m_type; } in GetType() 188 m_type = eErrorTypeMachKernel; in SetMachError() [all …]
|
D | RegisterValue.cpp | 137 switch (m_type) { in GetScalarValue() 160 void RegisterValue::Clear() { m_type = eTypeInvalid; } in Clear() 169 return m_type; in SetType() 205 m_type = eTypeInvalid; in SetValueFromData() 241 m_type = eTypeBytes; in SetValueFromData() 261 if (m_type == eTypeInvalid) in SetValueFromData() 343 m_type = eTypeInvalid; in SetValueFromString() 426 m_type = eTypeFloat; in SetValueFromString() 434 m_type = eTypeDouble; in SetValueFromString() 442 m_type = eTypeLongDouble; in SetValueFromString() [all …]
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | Opcode.h | 41 Opcode() : m_byte_order(lldb::eByteOrderInvalid), m_type(eTypeInvalid) {} in Opcode() 44 : m_byte_order(order), m_type(eType8) { in Opcode() 49 : m_byte_order(order), m_type(eType16) { in Opcode() 54 : m_byte_order(order), m_type(eType32) { in Opcode() 59 : m_byte_order(order), m_type(eType64) { in Opcode() 70 m_type = Opcode::eTypeInvalid; in Clear() 73 Opcode::Type GetType() const { return m_type; } in GetType() 76 switch (m_type) { 96 switch (m_type) { 116 switch (m_type) { [all …]
|
/external/strace/ |
D | mpers.sh | 49 for m_type; do 50 f_h="${BITS_DIR}/${m_type}.h" 51 f_c="${BITS_DIR}/${m_type}.c" 52 f_i="${BITS_DIR}/${m_type}.i" 53 f_o="${BITS_DIR}/${m_type}.o" 54 f_d1="${BITS_DIR}/${m_type}.d1" 55 f_d2="${BITS_DIR}/${m_type}.d2" 57 /DEF_MPERS_TYPE('"${m_type}"')$/n 60 /^#[[:space:]]*include[[:space:]][[:space:]]*MPERS_DEFS$/ {s//'"${m_type} ${VAR_NAME}"';/;q} 63 grep -F -q "${m_type}.h" "${f_i}" ||
|
/external/llvm-project/lldb/include/lldb/DataFormatters/ |
D | FormatClasses.h | 108 TypeNameSpecifierImpl() : m_is_regex(false), m_type() {} in TypeNameSpecifierImpl() 111 : m_is_regex(is_regex), m_type() { in TypeNameSpecifierImpl() 112 m_type.m_type_name = std::string(name); in TypeNameSpecifierImpl() 117 TypeNameSpecifierImpl(lldb::TypeSP type) : m_is_regex(false), m_type() { in TypeNameSpecifierImpl() 119 m_type.m_type_name = std::string(type->GetName().GetStringRef()); in TypeNameSpecifierImpl() 120 m_type.m_compiler_type = type->GetForwardCompilerType(); in TypeNameSpecifierImpl() 124 TypeNameSpecifierImpl(CompilerType type) : m_is_regex(false), m_type() { in TypeNameSpecifierImpl() 126 m_type.m_type_name.assign(type.GetTypeName().GetCString()); in TypeNameSpecifierImpl() 127 m_type.m_compiler_type = type; in TypeNameSpecifierImpl() 132 if (m_type.m_type_name.size()) in GetName() [all …]
|
/external/deqp/modules/gles3/stress/ |
D | es3sVertexArrayTests.cpp | 158 Array::InputType m_type; member in deqp::gles3::Stress::__anoneb4702780111::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::__anoneb4702780111::SingleVertexArrayFirstGroup [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(VARTYPE_LAST) in VarType() 37 : m_type(VARTYPE_LAST) in VarType() 43 : m_type(VARTYPE_BASIC) in VarType() 50 : m_type(VARTYPE_ARRAY) in VarType() 58 : m_type(VARTYPE_STRUCT) in VarType() 65 if (m_type == VARTYPE_ARRAY) in ~VarType() 74 VarType *oldElementType = m_type == VARTYPE_ARRAY ? m_data.array.elementType : DE_NULL; in operator =() 76 m_type = other.m_type; in operator =() 79 if (m_type == VARTYPE_ARRAY) in operator =() 94 switch (m_type) in getScalarSize() [all …]
|
/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 | 150 const QueryType m_type; member in deqp::gles31::Functional::__anond772b48a0411::LimitQueryCase 157 , m_type (type) in LimitQueryCase() 169 verifyStateIntegerMin(result, gl, m_target, m_minValue, m_type); in iterate() 185 const QueryType m_type; member in deqp::gles31::Functional::__anond772b48a0411::AlignmentQueryCase 192 , m_type (type) in AlignmentQueryCase() 204 verifyStateIntegerMax(result, gl, m_target, m_maxValue, m_type); in iterate() 218 const QueryType m_type; member in deqp::gles31::Functional::__anond772b48a0411::TextureBufferBindingQueryCase 223 , m_type (type) in TextureBufferBindingQueryCase() 240 verifyStateInteger(result, gl, GL_TEXTURE_BUFFER_BINDING, 0, m_type); in iterate() 253 verifyStateInteger(result, gl, GL_TEXTURE_BUFFER_BINDING, buffer, m_type); in iterate() [all …]
|
/external/deqp/modules/glshared/ |
D | glsTextureStateQueryTests.cpp | 764 const QueryType m_type; member in deqp::gls::TextureStateQueryTests::__anonaefd4de40111::TextureTest 779 , m_type (type) in TextureTest() 797 if (!isCoreQuery(m_renderCtx.getType(), m_type)) in init() 798 extensions.add(getQueryExtension(m_renderCtx.getType(), m_type)); in init() 897 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_DEPTH_COMPONENT, m_type); in test() 908 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_STENCIL_INDEX, m_type); in test() 912 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_DEPTH_COMPONENT, m_type); in test() 916 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_STENCIL_INDEX, m_type); in test() 920 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_DEPTH_COMPONENT, m_type); in test() 930 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_STENCIL_INDEX, m_type); in test() [all …]
|
/external/pdfium/xfa/fxgraphics/ |
D | cxfa_gecolor.h | 26 Type GetType() const { return m_type; } in GetType() 28 ASSERT(m_type == Solid || m_type == Pattern); in GetArgb() 32 ASSERT(m_type == Pattern); in GetPattern() 36 ASSERT(m_type == Shading); in GetShading() 43 Type m_type = Invalid;
|
/external/deqp/external/vulkancts/modules/vulkan/image/ |
D | vktImageTexture.cpp | 38 switch (m_type) in checkInvariants() 86 , m_type (imageType) in Texture() 96 , m_type (other.m_type) in Texture() 118 switch (m_type) in layerSize() 144 switch (m_type) in size() 168 switch (m_type) in dimension() 192 switch (m_type) in layerDimension()
|