HomeSort by: relevance | last modified time | path
    Searched refs:ComplexType (Results 1 - 25 of 48) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprComplex.cpp 34 static const ComplexType *getComplexType(QualType type) {
36 if (const ComplexType *comp = dyn_cast<ComplexType>(type)) {
39 return cast<ComplexType>(cast<AtomicType>(type)->getValueType());
238 QualType Elem = E->getType()->castAs<ComplexType>()->getElementType();
244 QualType Elem = E->getType()->castAs<ComplexType>()->getElementType();
338 QualType complexType) {
343 QualType complexType) {
431 SrcType = SrcType->castAs<ComplexType>()->getElementType();
432 DestType = DestType->castAs<ComplexType>()->getElementType()
    [all...]
TargetInfo.cpp 1382 if (const ComplexType *CTy = Ty->getAs<ComplexType>())
2937 if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
3890 } else if (IsRegCall && FI.getReturnType()->getAs<ComplexType>() &&
3892 ->getAs<ComplexType>()
4557 if (const ComplexType *CTy = Ty->getAs<ComplexType>())
4639 if (const ComplexType *CTy = Ty->getAs<ComplexType>())
    [all...]
SwiftCallingConv.cpp 84 } else if (auto complexType = type->getAs<ComplexType>()) {
85 auto eltType = complexType->getElementType();
833 if (isa<ComplexType>(type)) {
CGDebugInfo.h 178 llvm::DIType *CreateType(const ComplexType *Ty);
CodeGenTypes.cpp 626 llvm::Type *EltTy = ConvertType(cast<ComplexType>(Ty)->getElementType());
CGCall.cpp 958 if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
1564 if (const ComplexType *CT = ResultType->getAs<ComplexType>()) {
1953 if (const ComplexType *Complex = dyn_cast<ComplexType>(QTy))
  /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/include/clang/AST/
CanonicalType.h 419 struct CanProxyAdaptor<ComplexType> : public CanProxyBase<ComplexType> {
ASTNodeTraverser.h 317 void VisitComplexType(const ComplexType *T) { Visit(T->getElementType()); }
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/utils/ABITest/
TypeGen.py 157 class ComplexType(Type):
295 return ComplexType(N, self.typeGen.get(N))
ABITestGen.py 241 elif isinstance(t, ComplexType):
302 elif isinstance(t, ComplexType):
332 elif isinstance(t, ComplexType):
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Program.cpp 358 if (auto *CT = Ty->getAs<ComplexType>()) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 602 if (const auto *CT = dyn_cast<ComplexType>(CanonicalType))
618 const ComplexType *Type::getAsComplexIntegerType() const {
619 if (const auto *Complex = getAs<ComplexType>())
881 QualType VisitComplexType(const ComplexType *T) {
2098 if (const auto *CT = dyn_cast<ComplexType>(CanonicalType))
2138 return isa<ComplexType>(CanonicalType) || isExtIntType();
2163 } else if (const auto *CT = dyn_cast<ComplexType>(T)) {
3865 return Cache::get(cast<ComplexType>(T)->getElementType());
3952 return computeTypeLinkageInfo(cast<ComplexType>(T)->getElementType());
TypePrinter.cpp 369 void TypePrinter::printComplexBefore(const ComplexType *T, raw_ostream &OS) {
374 void TypePrinter::printComplexAfter(const ComplexType *T, raw_ostream &OS) {
ExprConstant.cpp 216 const ComplexType *CT = Type->castAs<ComplexType>();
3733 ObjType, ObjType->castAs<ComplexType>()->getElementType());
3900 ObjType = ObjType->castAs<ComplexType>()->getElementType();
4458 SubobjType->castAs<ComplexType>()->getElementType()
4462 SubobjType->castAs<ComplexType>()->getElementType()
11253 const auto *CT = BaseType->castAs<ComplexType>();
13833 QualType ElemTy = E->getType()->castAs<ComplexType>()->getElementType();
13955 QualType To = E->getType()->castAs<ComplexType>()->getElementType();
13957 = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType()
    [all...]
ODRHash.cpp 838 void VisitComplexType(const ComplexType *T) {
ItaniumMangle.cpp 3385 void CXXNameMangler::mangleType(const ComplexType *T) {
5619 const ComplexType *CT = T->castAs<ComplexType>();
5633 const ComplexType *CT = T->castAs<ComplexType>();
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
coff2yaml.cpp 287 Sym.ComplexType = COFF::SymbolComplexType(Symbol.getComplexType());
  /src/external/apache2/llvm/dist/clang/lib/Index/
USRGeneration.cpp 826 if (const ComplexType *CT = T->getAs<ComplexType>()) {
  /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/lib/ASTMatchers/
ASTMatchersInternal.cpp 1019 const AstTypeMatcher<ComplexType> complexType;
1052 ComplexType));
  /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...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
COFFEmitter.cpp 124 Sym.Header.Type |= Sym.ComplexType << COFF::SCT_COMPLEX_TYPE_SHIFT;
COFFYAML.cpp 549 IO.mapRequired("ComplexType", S.ComplexType);

Completed in 112 milliseconds

1 2