Home
last modified time | relevance | path

Searched refs:RetType (Results 1 – 18 of 18) sorted by relevance

/external/libbrillo/brillo/dbus/
Ddbus_object_test_helpers.h80 template<typename RetType>
91 static RetType Call( in Call()
94 void(Class::*method)(std::unique_ptr<DBusMethodResponse<RetType>>, in Call()
100 std::unique_ptr<DBusMethodResponse<RetType>> method_response{ in Call()
101 new DBusMethodResponse<RetType>( in Call()
108 RetType ret_val; in Call()
/external/clang/test/CodeGen/
Dxcore-stringtype.c94 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/
DMipsOs16.cpp53 Type* RetType = F.getReturnType(); in needsFPFromSig() local
54 switch (RetType->getTypeID()) { in needsFPFromSig()
DMips16HardFloat.cpp172 Type* RetType = F.getReturnType(); in needsFPReturnHelper() local
173 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
177 Type* RetType = FT.getReturnType(); in needsFPReturnHelper() local
178 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
DMipsAsmPrinter.cpp907 const char *RetType; in EmitFPCallStub() local
915 RetType = "float"; in EmitFPCallStub()
918 RetType = "double"; in EmitFPCallStub()
921 RetType = "complex"; in EmitFPCallStub()
924 RetType = "double complex"; in EmitFPCallStub()
927 RetType = ""; in EmitFPCallStub()
954 OutStreamer->AddComment("\t# Stub function to call " + Twine(RetType) + " " + in EmitFPCallStub()
/external/guice/core/test/com/google/inject/
DMethodInterceptionTest.java275 static class RetType extends ErasedType {} class in MethodInterceptionTest
280 RetType aMethod(RetType obj); in aMethod()
282 public static class Impl extends Superclass<RetType> implements Interface {
/external/clang/lib/Sema/
DSemaCoroutine.cpp427 QualType RetType = FD->getReturnType(); in CheckCompletedCoroutineBody() local
428 if (!RetType->isDependentType()) { in CheckCompletedCoroutineBody()
430 InitializedEntity::InitializeResult(Loc, RetType, false); in CheckCompletedCoroutineBody()
431 ReturnObject = PerformMoveOrCopyInitialization(Entity, nullptr, RetType, in CheckCompletedCoroutineBody()
DSemaStmt.cpp3270 QualType RetType = RelatedRetType.isNull() ? FnRetType : RelatedRetType; in BuildReturnStmt() local
3283 RetType, in BuildReturnStmt()
3286 RetType, RetValExp); in BuildReturnStmt()
DSemaDeclCXX.cpp10034 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitCopyAssignment() local
10067 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); in DeclareImplicitCopyAssignment()
10428 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitMoveAssignment() local
10458 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); in DeclareImplicitMoveAssignment()
DSemaDecl.cpp11068 QualType RetType = in ActOnFinishFunctionBody() local
11074 FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(), in ActOnFinishFunctionBody()
/external/clang/lib/Analysis/
DConsumed.cpp684 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/
DDataFlowSanitizer.cpp385 Type *RetType = T->getReturnType(); in getArgsFunctionType() local
386 if (!RetType->isVoidTy()) in getArgsFunctionType()
387 RetType = StructType::get(RetType, ShadowTy, (Type *)nullptr); in getArgsFunctionType()
388 return FunctionType::get(RetType, ArgTypes, T->isVarArg()); in getArgsFunctionType()
397 Type *RetType = T->getReturnType(); in getTrampolineFunctionType() local
398 if (!RetType->isVoidTy()) in getTrampolineFunctionType()
420 Type *RetType = T->getReturnType(); in getCustomFunctionType() local
421 if (!RetType->isVoidTy()) in getCustomFunctionType()
/external/llvm/lib/AsmParser/
DLLParser.cpp4335 Type *RetType = nullptr; in ParseFunctionHeader() local
4342 ParseType(RetType, RetTypeLoc, true /*void allowed*/)) in ParseFunctionHeader()
4372 if (!FunctionType::isValidReturnType(RetType)) in ParseFunctionHeader()
4444 Attrs.push_back(AttributeSet::get(RetType->getContext(), in ParseFunctionHeader()
4452 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B)); in ParseFunctionHeader()
4457 Attrs.push_back(AttributeSet::get(RetType->getContext(), in ParseFunctionHeader()
4463 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy()) in ParseFunctionHeader()
4467 FunctionType::get(RetType, ParamTypeList, isVarArg); in ParseFunctionHeader()
5030 Type *RetType = nullptr; in ParseInvoke() local
5038 ParseType(RetType, RetTypeLoc, true /*void allowed*/) || in ParseInvoke()
[all …]
/external/llvm/include/llvm/Support/
DCasting.h44 RetType;
45 static RetType getSimplifiedValue(const From& Val) {
/external/llvm/lib/DebugInfo/PDB/DIA/
DDIARawSymbol.cpp85 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/StaticAnalyzer/Checkers/
DNullabilityChecker.cpp700 QualType RetType = Decl->getReturnType(); in checkPostObjCMessage() local
701 if (!RetType->isAnyPointerType()) in checkPostObjCMessage()
786 Nullability RetNullability = getNullabilityAnnotation(RetType); in checkPostObjCMessage()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp1061 auto RetType = cast<VectorType>(II->getType()); in visitCallInst() local
1063 unsigned RetWidth = RetType->getNumElements(); in visitCallInst()
1068 assert(RetType->getScalarType()->isFloatTy() && in visitCallInst()
1073 return ReplaceInstUsesWith(*II, ConstantAggregateZero::get(RetType)); in visitCallInst()
1089 auto VectorFloats = Builder->CreateFPExt(VectorHalfs, RetType); in visitCallInst()
/external/clang/lib/AST/
DDecl.cpp2851 QualType RetType = getReturnType(); in hasUnusedResultAttr() local
2852 if (RetType->isRecordType()) { in hasUnusedResultAttr()
2853 const CXXRecordDecl *Ret = RetType->getAsCXXRecordDecl(); in hasUnusedResultAttr()