Home
last modified time | relevance | path

Searched refs:ThisType (Results 1 – 19 of 19) sorted by relevance

/freebsd-12-stable/sys/contrib/dev/acpica/components/executer/
Dexresop.c168 ACPI_OBJECT_TYPE ThisType,
189 ACPI_OBJECT_TYPE ThisType, in AcpiExCheckObjectType() argument
209 if ((ThisType == ACPI_TYPE_INTEGER) && in AcpiExCheckObjectType()
217 if (TypeNeeded != ThisType) in AcpiExCheckObjectType()
222 AcpiUtGetTypeName (ThisType), Object)); in AcpiExCheckObjectType()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGVTables.cpp245 QualType ThisType = MD->getThisType(); in StartThunk() local
250 ResultType = ThisType; in StartThunk()
326 QualType ThisType = MD->getThisType(); in EmitCallAndReturnForThunk() local
327 CallArgs.add(RValue::get(AdjustedThisPtr), ThisType); in EmitCallAndReturnForThunk()
360 ? ThisType in EmitCallAndReturnForThunk()
408 llvm::Type *ThisType = Args[ThisArgNo]->getType(); in EmitMustTailThunk() local
409 if (ThisType != AdjustedThisPtr->getType()) in EmitMustTailThunk()
410 AdjustedThisPtr = Builder.CreateBitCast(AdjustedThisPtr, ThisType); in EmitMustTailThunk()
415 llvm::Type *ThisType = ThisAddr.getElementType(); in EmitMustTailThunk() local
416 if (ThisType != AdjustedThisPtr->getType()) in EmitMustTailThunk()
[all …]
DCGClass.cpp2060 QualType ThisType = D->getThisType(); in EmitCXXConstructorCall() local
2061 LangAS ThisAS = ThisType.getTypePtr()->getPointeeType().getAddressSpace(); in EmitCXXConstructorCall()
2923 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda)); in EmitLambdaBlockInvokeBody() local
2925 CallArgs.add(RValue::get(ThisPtr.getPointer()), ThisType); in EmitLambdaBlockInvokeBody()
2942 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda)); in EmitLambdaDelegatingInvokeBody() local
2943 llvm::Value *ThisPtr = llvm::UndefValue::get(getTypes().ConvertType(ThisType)); in EmitLambdaDelegatingInvokeBody()
2944 CallArgs.add(RValue::get(ThisPtr), ThisType); in EmitLambdaDelegatingInvokeBody()
DCGExprCXX.cpp464 QualType ThisType = in EmitCXXMemberPointerCallExpr() local
468 Args.add(RValue::get(ThisPtrForCall), ThisType); in EmitCXXMemberPointerCallExpr()
DCGCall.cpp294 const CXXRecordDecl *ThisType = TheCXXABI.getThisArgumentTypeForMethod(MD); in arrangeCXXMethodDeclaration() local
295 return arrangeCXXMethodType(ThisType, prototype.getTypePtr(), MD); in arrangeCXXMethodDeclaration()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h176 TypeIndex ThisType, CallingConvention CallConv, in MemberFunctionRecord() argument
180 ClassType(ClassType), ThisType(ThisType), CallConv(CallConv), in MemberFunctionRecord()
187 TypeIndex getThisType() const { return ThisType; } in getThisType()
196 TypeIndex ThisType; variable
/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
DConsumed.cpp774 QualType ThisType = Constructor->getThisType()->getPointeeType(); in VisitCXXConstructExpr() local
776 if (!isConsumableType(ThisType)) in VisitCXXConstructExpr()
797 ConsumedState RetState = mapConsumableAttrState(ThisType); in VisitCXXConstructExpr()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
DMinimalTypeDumper.cpp417 MF.ClassType, MF.ThisType, MF.ThisPointerAdjustment); in visitKnownRecord()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
DTypeRecordMapping.cpp328 error(IO.mapInteger(Record.ThisType, "ThisType")); in visitKnownRecord()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
DCodeViewYAMLTypes.cpp415 IO.mapRequired("ThisType", Record.ThisType); in map()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaCodeComplete.cpp1632 auto ThisType = Results.getSema().getCurrentThisType(); in CodeCompletionDeclConsumer() local
1633 if (!ThisType.isNull()) { in CodeCompletionDeclConsumer()
1634 assert(ThisType->isPointerType()); in CodeCompletionDeclConsumer()
1635 BaseType = ThisType->getPointeeType(); in CodeCompletionDeclConsumer()
4220 auto ThisType = getCurrentThisType(); in CodeCompleteOrdinaryName() local
4221 if (!ThisType.isNull()) in CodeCompleteOrdinaryName()
4222 Results.setObjectTypeQualifiers(ThisType->getPointeeType().getQualifiers(), in CodeCompleteOrdinaryName()
DSemaChecking.cpp4938 void Sema::CheckConstructorCall(FunctionDecl *FDecl, QualType ThisType, in CheckConstructorCall() argument
4946 CheckArgAlignment(Loc, FDecl, "'this'", Context.getPointerType(ThisType), in CheckConstructorCall()
4981 QualType ThisType = ImplicitThis->getType(); in CheckFunctionCall() local
4982 if (!ThisType->isPointerType()) { in CheckFunctionCall()
4983 assert(!ThisType->isReferenceType()); in CheckFunctionCall()
4984 ThisType = Context.getPointerType(ThisType); in CheckFunctionCall()
4990 CheckArgAlignment(TheCall->getRParenLoc(), FDecl, "'this'", ThisType, in CheckFunctionCall()
DSemaOverload.cpp3372 QualType ThisType = Constructor->getThisType(); in IsInitializerListConstructorConversion() local
3379 User.After.setFromType(ThisType->castAs<PointerType>()->getPointeeType()); in IsInitializerListConstructorConversion()
3559 QualType ThisType = Constructor->getThisType(); in IsUserDefinedConversion() local
3575 User.After.setFromType(ThisType->castAs<PointerType>()->getPointeeType()); in IsUserDefinedConversion()
13723 QualType ThisType = Context.getPointerType(ImplicitThis->getType()); in CreateOverloadedBinOp() local
13727 CheckArgAlignment(OpLoc, FnDecl, "'this'", ThisType, in CreateOverloadedBinOp()
DSemaExpr.cpp2393 QualType ThisType = S.getCurrentThisType(); in recoverFromMSUnqualifiedLookup() local
2395 if (!ThisType.isNull()) in recoverFromMSUnqualifiedLookup()
2396 RD = ThisType->getPointeeType()->getAsCXXRecordDecl(); in recoverFromMSUnqualifiedLookup()
2408 if (!ThisType.isNull()) { in recoverFromMSUnqualifiedLookup()
2411 Context, /*This=*/nullptr, ThisType, /*IsArrow=*/true, in recoverFromMSUnqualifiedLookup()
DSemaDeclAttr.cpp1126 QualType ThisType = MD->getThisType()->getPointeeType(); in checkForConsumableClass() local
1128 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) { in checkForConsumableClass()
DSemaTemplate.cpp751 QualType ThisType = cast<CXXMethodDecl>(DC)->getThisType(); in ActOnDependentIdExpression() local
758 Context, /*This*/ nullptr, ThisType, /*IsArrow*/ true, in ActOnDependentIdExpression()
DTreeTransform.h3056 QualType ThisType, in RebuildCXXThisExpr() argument
3058 return getSema().BuildCXXThisExpr(ThisLoc, ThisType, isImplicit); in RebuildCXXThisExpr()
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DExprConstant.cpp666 const LValue &This, QualType ThisType);
6547 const LValue &This, QualType ThisType) { in HandleDestruction() argument
6548 CompleteObject Obj = findCompleteObject(Info, E, AK_Destroy, This, ThisType); in HandleDestruction()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
DSema.h12522 void CheckConstructorCall(FunctionDecl *FDecl, QualType ThisType,