Searched defs:ComplexType (Results 1 - 4 of 4) sorted by relevance

/external/clang/utils/ABITest/
H A DTypeGen.py155 class ComplexType(Type): class in inherits:Type
293 return ComplexType(N, self.typeGen.get(N))
/external/llvm/include/llvm/Object/
H A DCOFFYAML.h67 COFF::SymbolComplexType ComplexType; member in struct:llvm::COFFYAML::Symbol
/external/clang/include/clang/AST/
H A DType.h1698 const ComplexType *getAsComplexIntegerType() const; // GCC complex int type.
1934 /// ComplexType - C99 6.2.5p11 - Complex values. This supports the C99 complex
1937 class ComplexType : public Type, public llvm::FoldingSetNode { class in namespace:clang
1939 ComplexType(QualType Element, QualType CanonicalPtr) : function in class:clang::ComplexType
4996 return isa<ComplexType>(CanonicalType);
5172 isa<ComplexType>(CanonicalType) ||
/external/clang/lib/Sema/
H A DSemaExpr.cpp976 QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType();
1016 auto *LHSComplexType = dyn_cast<ComplexType>(LHSType);
1017 auto *RHSComplexType = dyn_cast<ComplexType>(RHSType);
1180 const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType();
1181 const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType();
1198 QualType ComplexType = S.Context.getComplexType(ScalarType); local
1199 RHS = S.ImpCastExprToType(RHS.get(), ComplexType,
1202 return ComplexType;
1211 QualType ComplexType = S.Context.getComplexType(ScalarType); local
1214 LHS = S.ImpCastExprToType(LHS.get(), ComplexType,
[all...]

Completed in 168 milliseconds