HomeSort by: relevance | last modified time | path
    Searched defs:ComplexType (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/utils/ABITest/
TypeGen.py 157 class ComplexType(Type):
295 return ComplexType(N, self.typeGen.get(N))
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
COFFYAML.h 86 COFF::SymbolComplexType ComplexType = COFF::IMAGE_SYM_DTYPE_NULL;
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
RISCVVEmitter.cpp 642 StringRef ComplexType = Transformer.slice(1, Idx);
670 auto ComplexTT = ComplexType.split(":");
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h 2235 const ComplexType *getAsComplexIntegerType() const; // GCC complex int type.
2581 class ComplexType : public Type, public llvm::FoldingSetNode {
2586 ComplexType(QualType Element, QualType CanonicalPtr)
6774 return isa<ComplexType>(CanonicalType);
7052 isa<ComplexType>(CanonicalType) ||
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 1037 QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType();
1077 auto *LHSComplexType = dyn_cast<ComplexType>(LHSType);
1078 auto *RHSComplexType = dyn_cast<ComplexType>(RHSType);
1200 auto *LHSComplex = LHSType->getAs<ComplexType>();
1201 auto *RHSComplex = RHSType->getAs<ComplexType>();
1298 const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType();
1299 const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType();
1316 QualType ComplexType = S.Context.getComplexType(ScalarType);
1317 RHS = S.ImpCastExprToType(RHS.get(), ComplexType,
1320 return ComplexType;
    [all...]

Completed in 37 milliseconds