Home
last modified time | relevance | path

Searched refs:ResType (Results 1 – 8 of 8) sorted by relevance

/external/eigen/Eigen/src/SPQRSupport/
DSuiteSparseQRSupport.h247 template<typename ResType>
248 void evalTo(ResType& res) const
256 …res = Matrix<Scalar,ResType::RowsAtCompileTime,ResType::ColsAtCompileTime>::Map(reinterpret_cast<S…
/external/clang/lib/CodeGen/
DTargetInfo.cpp2213 llvm::Type *ResType = nullptr; in classifyReturnType() local
2236 ResType = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0); in classifyReturnType()
2240 if (Hi == NoClass && isa<llvm::IntegerType>(ResType)) { in classifyReturnType()
2254 ResType = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0); in classifyReturnType()
2260 ResType = llvm::Type::getX86_FP80Ty(getVMContext()); in classifyReturnType()
2268 ResType = llvm::StructType::get(llvm::Type::getX86_FP80Ty(getVMContext()), in classifyReturnType()
2304 ResType = GetByteVectorType(RetTy); in classifyReturnType()
2326 ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getDataLayout()); in classifyReturnType()
2328 return ABIArgInfo::getDirect(ResType); in classifyReturnType()
2346 llvm::Type *ResType = nullptr; in classifyArgumentType() local
[all …]
DCGBuiltin.cpp406 llvm::Type *ResType = ConvertType(E->getType()); in EmitBuiltinExpr() local
416 llvm::Type *Tys[] = { ResType, Builder.getInt8PtrTy(0) }; in EmitBuiltinExpr()
/external/clang/lib/Sema/
DSemaExpr.cpp8762 QualType ResType = Op->getType(); in CheckIncrementDecrementOperand() local
8766 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) in CheckIncrementDecrementOperand()
8767 ResType = ResAtomicType->getValueType(); in CheckIncrementDecrementOperand()
8769 assert(!ResType.isNull() && "no type for increment/decrement expression"); in CheckIncrementDecrementOperand()
8771 if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) { in CheckIncrementDecrementOperand()
8779 } else if (S.getLangOpts().CPlusPlus && ResType->isEnumeralType()) { in CheckIncrementDecrementOperand()
8781 S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType; in CheckIncrementDecrementOperand()
8783 } else if (ResType->isRealType()) { in CheckIncrementDecrementOperand()
8785 } else if (ResType->isPointerType()) { in CheckIncrementDecrementOperand()
8789 } else if (ResType->isObjCObjectPointerType()) { in CheckIncrementDecrementOperand()
[all …]
/external/llvm/lib/AsmParser/
DLLParser.cpp3579 Type *ResType = PFS.getFunction().getReturnType(); in ParseRet() local
3582 if (!ResType->isVoidTy()) in ParseRet()
3584 getTypeString(ResType) + "'"); in ParseRet()
3593 if (ResType != RV->getType()) in ParseRet()
3595 getTypeString(ResType) + "'"); in ParseRet()
/external/clang/lib/ARCMigrate/
DObjCMT.cpp392 QualType ResType = Context.getCanonicalType(Getter->getReturnType()); in rewriteToObjCProperty() local
393 if (const char *MemoryManagementAttr = PropertyMemoryAttribute(Context, ResType)) in rewriteToObjCProperty()
/external/clang/include/clang/AST/
DExpr.h3108 CompoundAssignOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResType, in CompoundAssignOperator() argument
3112 : BinaryOperator(lhs, rhs, opc, ResType, VK, OK, OpLoc, fpContractable, in CompoundAssignOperator()
/external/clang/lib/AST/
DASTContext.cpp7714 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error, in GetBuiltinType() local
7748 return getFunctionNoProtoType(ResType, EI); in GetBuiltinType()
7754 return getFunctionType(ResType, ArgTypes, EPI); in GetBuiltinType()