Searched defs:ComplexType (Results 1 - 4 of 4) 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/llvm/include/llvm/Object/
H A DCOFFYAML.h61 COFF::SymbolComplexType ComplexType; member in struct:llvm::COFFYAML::Symbol
/external/clang/include/clang/AST/
H A DType.h1675 const ComplexType *getAsComplexIntegerType() const; // GCC complex int type.
1906 /// ComplexType - C99 6.2.5p11 - Complex values. This supports the C99 complex
1909 class ComplexType : public Type, public llvm::FoldingSetNode { class in namespace:clang
1911 ComplexType(QualType Element, QualType CanonicalPtr) : function in class:clang::ComplexType
4940 return isa<ComplexType>(CanonicalType);
5116 isa<ComplexType>(CanonicalType) ||
/external/clang/lib/Sema/
H A DSemaExpr.cpp924 QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType();
973 QualType fp = cast<ComplexType>(ComplexTy)->getElementType();
1181 const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType();
1182 const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType();
1199 QualType ComplexType = S.Context.getComplexType(ScalarType); local
1200 RHS = S.ImpCastExprToType(RHS.get(), ComplexType,
1203 return ComplexType;
1212 QualType ComplexType = S.Context.getComplexType(ScalarType); local
1215 LHS = S.ImpCastExprToType(LHS.get(), ComplexType,
1217 return ComplexType;
[all...]

Completed in 367 milliseconds