/external/clang/test/CodeGen/ |
D | xcore-stringtype.c | 94 typedef int RetType[2]; typedef 95 RetType* arrayType(int A1[], int const volatile A2[2], int A3[][2], in arrayType()
|
/external/llvm/lib/Target/Mips/ |
D | MipsOs16.cpp | 53 Type* RetType = F.getReturnType(); in needsFPFromSig() local 54 switch (RetType->getTypeID()) { in needsFPFromSig()
|
D | Mips16HardFloat.cpp | 181 Type* RetType = F.getReturnType(); in needsFPReturnHelper() local 182 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper() 186 Type* RetType = FT.getReturnType(); in needsFPReturnHelper() local 187 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
|
D | MipsAsmPrinter.cpp | 904 const char *RetType; in EmitFPCallStub() local 912 RetType = "float"; in EmitFPCallStub() 915 RetType = "double"; in EmitFPCallStub() 918 RetType = "complex"; in EmitFPCallStub() 921 RetType = "double complex"; in EmitFPCallStub() 924 RetType = ""; in EmitFPCallStub() 951 OutStreamer.AddComment("\t# Stub function to call " + Twine(RetType) + " " + in EmitFPCallStub()
|
/external/clang/lib/Analysis/ |
D | Consumed.cpp | 684 QualType RetType = Fun->getCallResultType(); in propagateReturnType() local 685 if (RetType->isReferenceType()) in propagateReturnType() 686 RetType = RetType->getPointeeType(); in propagateReturnType() 688 if (isConsumableType(RetType)) { in propagateReturnType() 693 ReturnState = mapConsumableAttrState(RetType); in propagateReturnType()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | DataFlowSanitizer.cpp | 377 Type *RetType = T->getReturnType(); in getArgsFunctionType() local 378 if (!RetType->isVoidTy()) in getArgsFunctionType() 379 RetType = StructType::get(RetType, ShadowTy, (Type *)nullptr); in getArgsFunctionType() 380 return FunctionType::get(RetType, ArgTypes, T->isVarArg()); in getArgsFunctionType() 389 Type *RetType = T->getReturnType(); in getTrampolineFunctionType() local 390 if (!RetType->isVoidTy()) in getTrampolineFunctionType() 412 Type *RetType = T->getReturnType(); in getCustomFunctionType() local 413 if (!RetType->isVoidTy()) in getCustomFunctionType()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 4045 Type *RetType = nullptr; in ParseFunctionHeader() local 4052 ParseType(RetType, RetTypeLoc, true /*void allowed*/)) in ParseFunctionHeader() 4082 if (!FunctionType::isValidReturnType(RetType)) in ParseFunctionHeader() 4151 Attrs.push_back(AttributeSet::get(RetType->getContext(), in ParseFunctionHeader() 4159 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B)); in ParseFunctionHeader() 4164 Attrs.push_back(AttributeSet::get(RetType->getContext(), in ParseFunctionHeader() 4170 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy()) in ParseFunctionHeader() 4174 FunctionType::get(RetType, ParamTypeList, isVarArg); in ParseFunctionHeader() 4723 Type *RetType = nullptr; in ParseInvoke() local 4731 ParseType(RetType, RetTypeLoc, true /*void allowed*/) || in ParseInvoke() [all …]
|
/external/llvm/include/llvm/Support/ |
D | Casting.h | 44 RetType; 45 static RetType getSimplifiedValue(const From& Val) {
|
/external/llvm/lib/DebugInfo/PDB/DIA/ |
D | DIARawSymbol.cpp | 85 template <typename ArgType, typename RetType> 86 RetType PrivateGetDIAValue(IDiaSymbol *Symbol, in PrivateGetDIAValue() 90 return static_cast<RetType>(Value); in PrivateGetDIAValue() 92 return RetType(); in PrivateGetDIAValue()
|
/external/clang/lib/AST/ |
D | Decl.cpp | 2825 QualType RetType = getReturnType(); in hasUnusedResultAttr() local 2826 if (RetType->isRecordType()) { in hasUnusedResultAttr() 2827 const CXXRecordDecl *Ret = RetType->getAsCXXRecordDecl(); in hasUnusedResultAttr()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 3223 QualType RetType = RelatedRetType.isNull() ? FnRetType : RelatedRetType; in BuildReturnStmt() local 3236 RetType, in BuildReturnStmt() 3239 RetType, RetValExp); in BuildReturnStmt()
|
D | SemaDeclCXX.cpp | 9997 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitCopyAssignment() local 10030 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); in DeclareImplicitCopyAssignment() 10389 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitMoveAssignment() local 10419 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); in DeclareImplicitMoveAssignment()
|