Searched refs:RetType (Results 1 – 7 of 7) sorted by relevance
/external/llvm/lib/Target/Mips/ |
D | MipsOs16.cpp | 27 Type* RetType = F.getReturnType(); in needsFPFromSig() local 28 switch (RetType->getTypeID()) { in needsFPFromSig()
|
D | Mips16HardFloat.cpp | 165 Type* RetType = F.getReturnType(); in needsFPReturnHelper() local 166 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 2931 Type *RetType = 0; in ParseFunctionHeader() local 2937 ParseType(RetType, RetTypeLoc, true /*void allowed*/)) in ParseFunctionHeader() 2968 if (!FunctionType::isValidReturnType(RetType)) in ParseFunctionHeader() 3029 Attrs.push_back(AttributeSet::get(RetType->getContext(), in ParseFunctionHeader() 3037 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B)); in ParseFunctionHeader() 3042 Attrs.push_back(AttributeSet::get(RetType->getContext(), in ParseFunctionHeader() 3048 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy()) in ParseFunctionHeader() 3052 FunctionType::get(RetType, ParamTypeList, isVarArg); in ParseFunctionHeader() 3532 Type *RetType = 0; in ParseInvoke() local 3540 ParseType(RetType, RetTypeLoc, true /*void allowed*/) || in ParseInvoke() [all …]
|
/external/llvm/include/llvm/Support/ |
D | Casting.h | 43 RetType; 44 static RetType getSimplifiedValue(const From& Val) {
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 2795 QualType RetType = (RelatedRetType.isNull() ? FnRetType : RelatedRetType); in ActOnReturnStmt() local 2805 RetType, in ActOnReturnStmt() 2808 RetType, RetValExp); in ActOnReturnStmt()
|
D | SemaDecl.cpp | 6839 QualType RetType = NewFD->getResultType(); in ActOnFunctionDeclarator() local 6840 const CXXRecordDecl *Ret = RetType->isRecordType() ? in ActOnFunctionDeclarator() 6841 RetType->getAsCXXRecordDecl() : RetType->getPointeeCXXRecordDecl(); in ActOnFunctionDeclarator()
|
D | SemaDeclCXX.cpp | 8856 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitCopyAssignment() local 8883 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); in DeclareImplicitCopyAssignment() 9373 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitMoveAssignment() local 9397 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); in DeclareImplicitMoveAssignment()
|