Searched defs:ReturnType (Results 26 - 48 of 48) sorted by relevance

12

/external/clang/lib/Frontend/
H A DMultiplexConsumer.cpp102 virtual void DeducedReturnType(const FunctionDecl *FD, QualType ReturnType);
151 QualType ReturnType) {
153 Listeners[i]->DeducedReturnType(FD, ReturnType);
150 DeducedReturnType(const FunctionDecl *FD, QualType ReturnType) argument
/external/eigen/Eigen/src/Core/
H A DPermutationMatrix.h536 typedef typename MatrixType::PlainObject ReturnType; typedef in struct:Eigen::internal::traits
H A DVectorwiseOp.h177 typename Scalar=typename internal::traits<ExpressionType>::Scalar> struct ReturnType struct in class:Eigen::VectorwiseOp
263 const typename ReturnType<internal::member_minCoeff>::Type minCoeff() const
273 const typename ReturnType<internal::member_maxCoeff>::Type maxCoeff() const
283 const typename ReturnType<internal::member_squaredNorm,RealScalar>::Type squaredNorm() const
293 const typename ReturnType<internal::member_norm,RealScalar>::Type norm() const
302 const typename ReturnType<internal::member_blueNorm,RealScalar>::Type blueNorm() const
311 const typename ReturnType<internal::member_stableNorm,RealScalar>::Type stableNorm() const
320 const typename ReturnType<internal::member_hypotNorm,RealScalar>::Type hypotNorm() const
330 const typename ReturnType<internal::member_sum>::Type sum() const
337 const typename ReturnType<interna
[all...]
/external/eigen/Eigen/src/QR/
H A DFullPivHouseholderQR.h23 typedef typename MatrixType::PlainObject ReturnType; typedef in struct:Eigen::internal::traits
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h494 typedef Matrix<A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols> ReturnType; typedef in struct:Eigen::internal::scalar_product_traits
499 typedef Matrix<A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols> ReturnType; typedef in struct:Eigen::internal::scalar_product_traits
505 typedef AutoDiffScalar<DerType> ReturnType; typedef in struct:Eigen::internal::scalar_product_traits
516 typedef AutoDiffScalar<CwiseUnaryOp<Eigen::internal::scalar_multiple_op<Scalar>, const typename Eigen::internal::remove_all<DerType>::type> > ReturnType; \
539 return ReturnType(abs(x.value()), x.derivatives() * (sign(x.value())));)
543 return ReturnType(abs2(x.value()), x.derivatives() * (Scalar(2)*x.value()));)
548 return ReturnType(sqrtx,x.derivatives() * (Scalar(0.5) / sqrtx));)
553 return ReturnType(cos(x.value()), x.derivatives() * (-sin(x.value())));)
558 return ReturnType(sin(x.value()),x.derivatives() * cos(x.value()));)
563 return ReturnType(exp
[all...]
/external/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1123 void llvm::GetReturnInfo(Type* ReturnType, AttributeSet attr, argument
1127 ComputeValueVTs(TLI, ReturnType, ValueVTs);
1145 MVT MinVT = TLI.getRegisterType(ReturnType->getContext(), MVT::i32);
1150 unsigned NumParts = TLI.getNumRegisters(ReturnType->getContext(), VT);
1151 MVT PartVT = TLI.getRegisterType(ReturnType->getContext(), VT);
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixFunction.h541 typedef typename Derived::PlainObject ReturnType; typedef in struct:Eigen::internal::traits
/external/clang/include/clang/Sema/
H A DScopeInfo.h459 /// ReturnType - The target type of return statements in this context,
461 QualType ReturnType; member in class:clang::sema::CapturingScopeInfo
/external/clang/lib/Sema/
H A DSemaLambda.cpp197 LSI->ReturnType = CallOperator->getResultType();
199 if (!LSI->ReturnType->isDependentType() &&
200 !LSI->ReturnType->isVoidType()) {
201 if (RequireCompleteType(CallOperator->getLocStart(), LSI->ReturnType,
385 if (CSI.ReturnType.isNull())
386 CSI.ReturnType = Ctx.VoidTy;
392 assert(!CSI.ReturnType.isNull() && "We should have a tentative return type.");
393 if (CSI.ReturnType->isDependentType())
401 CSI.ReturnType = Context.getTypeDeclType(ED);
402 adjustBlockReturnsToEnum(*this, CSI.Returns, CSI.ReturnType);
423 QualType ReturnType = (RetE ? RetE->getType() : Context.VoidTy); local
[all...]
H A DSemaPseudoObject.cpp1122 S.Context.getObjCIdType() /*ReturnType*/,
1233 QualType ReturnType = S.Context.VoidTy; local
1236 ReturnType,
H A DSemaCodeComplete.cpp1789 !SemaRef.getCurBlock()->ReturnType.isNull())
1790 isVoid = SemaRef.getCurBlock()->ReturnType->isVoidType();
3981 ResultType = BSI->ReturnType;
6125 QualType ReturnType,
6141 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
6149 FindImplementableMethods(Context, *Cat, WantInstanceMethods, ReturnType,
6156 WantInstanceMethods, ReturnType,
6167 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
6173 WantInstanceMethods, ReturnType, KnownMethods,
6190 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
6122 FindImplementableMethods(ASTContext &Context, ObjCContainerDecl *Container, bool WantInstanceMethods, QualType ReturnType, KnownMethodsMap &KnownMethods, bool InOriginalClass = true) argument
6242 AddObjCKeyValueCompletions(ObjCPropertyDecl *Property, bool IsInstanceMethod, QualType ReturnType, ASTContext &Context, VisitedSelectorSet &KnownSelectors, ResultBuilder &Results) argument
6872 QualType ReturnType = GetTypeFromParser(ReturnTy); local
[all...]
H A DSemaDeclObjC.cpp3066 ObjCDeclSpec &ReturnQT, ParsedType ReturnType,
3086 if (ReturnType) {
3087 resultDeclType = GetTypeFromParser(ReturnType, &ResultTInfo);
3062 ActOnMethodDeclaration( Scope *S, SourceLocation MethodLoc, SourceLocation EndLoc, tok::TokenKind MethodType, ObjCDeclSpec &ReturnQT, ParsedType ReturnType, ArrayRef<SourceLocation> SelectorLocs, Selector Sel, ObjCArgInfo *ArgInfo, DeclaratorChunk::ParamInfo *CParamInfo, unsigned CNumArgs, AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind, bool isVariadic, bool MethodDefinition) argument
H A DSemaExprObjC.cpp155 QualType ReturnType = Method->getResultType(); local
156 if (!ReturnType->isObjCObjectPointerType()) {
160 << ReturnType;
1203 QualType &ReturnType, ExprValueKind &VK) {
1263 ReturnType = Context.UnknownAnyTy;
1265 ReturnType = Context.getObjCIdType();
1271 ReturnType = getMessageSendResultType(ReceiverType, Method, isClassMessage,
2096 QualType ReturnType; local
2105 ReturnType, VK))
2116 Result = ObjCMessageExpr::Create(Context, ReturnType, V
1196 CheckMessageArgumentTypes(QualType ReceiverType, MultiExprArg Args, Selector Sel, ArrayRef<SourceLocation> SelectorLocs, ObjCMethodDecl *Method, bool isClassMessage, bool isSuperMessage, SourceLocation lbrac, SourceLocation rbrac, QualType &ReturnType, ExprValueKind &VK) argument
2443 QualType ReturnType; local
[all...]
H A DSemaStmt.cpp2319 /// \param ReturnType If we're determining the copy elision candidate for
2334 const VarDecl *Sema::getCopyElisionCandidate(QualType ReturnType, argument
2340 if (!ReturnType.isNull()) {
2341 if (!ReturnType->isRecordType())
2344 if (!Context.hasSameUnqualifiedType(ReturnType, ExprType))
2465 QualType FnRetType = CurCap->ReturnType;
2487 FnRetType = CurCap->ReturnType = Context.DependentTy;
2502 if (CurCap->ReturnType.isNull())
2503 CurCap->ReturnType = FnRetType;
2513 CurCap->ReturnType
[all...]
H A DSemaChecking.cpp5165 QualType ReturnType; local
5167 S.tryExprAsCall(*E, ReturnType, NonTemplateOverloads);
5168 if (!ReturnType.isNull()
5169 && ReturnType->isSpecificBuiltinType(BuiltinType::Bool))
H A DSemaDeclCXX.cpp4509 QualType ReturnType = Context.VoidTy; local
4512 ReturnType = Type->getResultType();
4515 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4610 MD->setType(Context.getFunctionType(ReturnType,
H A DSemaExpr.cpp10075 CurBlock->ReturnType = RetTy;
10165 if (!BSI->ReturnType.isNull())
10166 RetTy = BSI->ReturnType;
12051 bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, argument
12053 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType())
12086 if (RequireCompleteType(Loc, ReturnType, Diagnoser))
/external/llvm/lib/IR/
H A DLLVMContextImpl.h143 const Type *ReturnType; member in struct:llvm::FunctionTypeKeyInfo::KeyTy
147 ReturnType(R), Params(P), isVarArg(V) {}
149 ReturnType(FT->getReturnType()),
153 if (ReturnType != that.ReturnType)
172 return hash_combine(Key.ReturnType,
H A DType.cpp361 FunctionType *FunctionType::get(Type *ReturnType, argument
363 LLVMContextImpl *pImpl = ReturnType->getContext().pImpl;
364 FunctionTypeKeyInfo::KeyTy Key(ReturnType, Params, isVarArg);
373 new (FT) FunctionType(ReturnType, Params, isVarArg);
H A DCore.cpp305 LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType, argument
309 return wrap(FunctionType::get(unwrap(ReturnType), Tys, IsVarArg != 0));
/external/clang/lib/Parse/
H A DParseObjc.cpp988 /*ReturnType=*/ ParsedType());
994 ParsedType ReturnType; local
997 ReturnType = ParseObjCTypeName(DSRet, Declarator::ObjCResultContext, 0);
1006 ReturnType); local
1033 mType, DSRet, ReturnType,
1080 ReturnType, KeyIdents); local
1106 ReturnType, KeyIdents); local
1165 mType, DSRet, ReturnType,
/external/clang/lib/Serialization/
H A DASTWriter.cpp5282 void ASTWriter::DeducedReturnType(const FunctionDecl *FD, QualType ReturnType) { argument
5290 Record.push_back(reinterpret_cast<uint64_t>(ReturnType.getAsOpaquePtr()));
/external/clang/lib/AST/
H A DASTContext.cpp7502 QualType ReturnType) {}
7501 DeducedReturnType(const FunctionDecl *FD, QualType ReturnType) argument

Completed in 489 milliseconds

12