Searched defs:RetType (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/Target/Mips/
H A DMipsOs16.cpp36 Type* RetType = F.getReturnType(); local
37 switch (RetType->getTypeID()) {
H A DMips16HardFloat.cpp168 Type* RetType = F.getReturnType(); local
169 return whichFPReturnVariant(RetType) != NoFPRet;
173 Type* RetType = FT.getReturnType(); local
174 return whichFPReturnVariant(RetType) != NoFPRet;
H A DMipsAsmPrinter.cpp836 const char *RetType; local
844 RetType = "float";
847 RetType = "double";
850 RetType = "complex";
853 RetType = "double complex";
856 RetType = "";
883 OutStreamer.AddComment("\t# Stub function to call " + Twine(RetType) + " " +
/external/llvm/include/llvm/Support/
H A DCasting.h44 RetType; typedef in struct:llvm::simplify_type
45 static RetType getSimplifiedValue(const From& Val) {
/external/clang/test/CodeGen/
H A Dxcore-stringtype.c86 typedef int RetType[2]; typedef
87 RetType* arrayType(int A1[], int const volatile A2[2], int A3[][2],
/external/clang/lib/Analysis/
H A DConsumed.cpp684 QualType RetType = Fun->getCallResultType(); local
685 if (RetType->isReferenceType())
686 RetType = RetType->getPointeeType();
688 if (isConsumableType(RetType)) {
693 ReturnState = mapConsumableAttrState(RetType);
/external/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp350 Type *RetType = T->getReturnType(); local
351 if (!RetType->isVoidTy())
352 RetType = StructType::get(RetType, ShadowTy, (Type *)nullptr);
353 return FunctionType::get(RetType, ArgTypes, T->isVarArg());
363 Type *RetType = T->getReturnType(); local
364 if (!RetType->isVoidTy())
385 Type *RetType = T->getReturnType(); local
386 if (!RetType->isVoidTy())
/external/clang/lib/Sema/
H A DSemaStmt.cpp2974 QualType RetType = RelatedRetType.isNull() ? FnRetType : RelatedRetType; local
2987 RetType,
2990 RetType, RetValExp);
H A DSemaDecl.cpp7225 QualType RetType = NewFD->getReturnType(); local
7226 const CXXRecordDecl *Ret = RetType->isRecordType() ?
7227 RetType->getAsCXXRecordDecl() : RetType->getPointeeCXXRecordDecl();
7241 unsigned AddressSpace = RetType.getAddressSpace();
H A DSemaDeclCXX.cpp9498 QualType RetType = Context.getLValueReferenceType(ArgType); local
9524 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));
9878 QualType RetType = Context.getLValueReferenceType(ArgType); local
9901 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));

Completed in 335 milliseconds