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

/external/clang/utils/ABITest/
H A DTypeGen.py151 class ComplexType(Type): class in inherits:Type
289 return ComplexType(N, self.typeGen.get(N))
/external/clang/include/clang/AST/
H A DType.h1663 const ComplexType *getAsComplexIntegerType() const; // GCC complex int type.
1890 /// ComplexType - C99 6.2.5p11 - Complex values. This supports the C99 complex
1893 class ComplexType : public Type, public llvm::FoldingSetNode { class in namespace:clang
1895 ComplexType(QualType Element, QualType CanonicalPtr) : function in class:clang::ComplexType
4825 return isa<ComplexType>(CanonicalType);
5001 isa<ComplexType>(CanonicalType) ||
/external/clang/lib/Sema/
H A DSemaExpr.cpp766 QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType();
815 QualType fp = cast<ComplexType>(ComplexTy)->getElementType();
1023 const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType();
1024 const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType();
1041 QualType ComplexType = S.Context.getComplexType(ScalarType); local
1042 RHS = S.ImpCastExprToType(RHS.take(), ComplexType,
1045 return ComplexType;
1054 QualType ComplexType = S.Context.getComplexType(ScalarType); local
1057 LHS = S.ImpCastExprToType(LHS.take(), ComplexType,
1059 return ComplexType;
[all...]

Completed in 57 milliseconds