Home
last modified time | relevance | path

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

/netbsd-src/sys/external/bsd/acpica/dist/executer/
H A Dexresop.c60 ACPI_OBJECT_TYPE ThisType,
81 ACPI_OBJECT_TYPE ThisType, in AcpiExCheckObjectType() argument
101 if ((ThisType == ACPI_TYPE_INTEGER) && in AcpiExCheckObjectType()
109 if (TypeNeeded != ThisType) in AcpiExCheckObjectType()
114 AcpiUtGetTypeName (ThisType), Object)); in AcpiExCheckObjectType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A 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 …]
H A DCGClass.cpp2062 QualType ThisType = D->getThisType(); in EmitCXXConstructorCall() local
2063 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()
H A DCGExprCXX.cpp464 QualType ThisType = in EmitCXXMemberPointerCallExpr() local
468 Args.add(RValue::get(ThisPtrForCall), ThisType); in EmitCXXMemberPointerCallExpr()
H A DCGCall.cpp292 const CXXRecordDecl *ThisType = TheCXXABI.getThisArgumentTypeForMethod(MD); in arrangeCXXMethodDeclaration() local
293 return arrangeCXXMethodType(ThisType, prototype.getTypePtr(), MD); in arrangeCXXMethodDeclaration()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A 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
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DConsumed.cpp774 QualType ThisType = Constructor->getThisType()->getPointeeType(); in VisitCXXConstructExpr() local
776 if (!isConsumableType(ThisType)) in VisitCXXConstructExpr()
797 ConsumedState RetState = mapConsumableAttrState(ThisType); in VisitCXXConstructExpr()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp417 MF.ClassType, MF.ThisType, MF.ThisPointerAdjustment); in visitKnownRecord()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp328 error(IO.mapInteger(Record.ThisType, "ThisType")); in visitKnownRecord()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp415 IO.mapRequired("ThisType", Record.ThisType); in map()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A 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()
4217 auto ThisType = getCurrentThisType(); in CodeCompleteOrdinaryName() local
4218 if (!ThisType.isNull()) in CodeCompleteOrdinaryName()
4219 Results.setObjectTypeQualifiers(ThisType->getPointeeType().getQualifiers(), in CodeCompleteOrdinaryName()
H A DSemaChecking.cpp4689 void Sema::CheckConstructorCall(FunctionDecl *FDecl, QualType ThisType, in CheckConstructorCall() argument
4697 CheckArgAlignment(Loc, FDecl, "'this'", Context.getPointerType(ThisType), in CheckConstructorCall()
4732 QualType ThisType = ImplicitThis->getType(); in CheckFunctionCall() local
4733 if (!ThisType->isPointerType()) { in CheckFunctionCall()
4734 assert(!ThisType->isReferenceType()); in CheckFunctionCall()
4735 ThisType = Context.getPointerType(ThisType); in CheckFunctionCall()
4741 CheckArgAlignment(TheCall->getRParenLoc(), FDecl, "'this'", ThisType, in CheckFunctionCall()
H A 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()
13705 QualType ThisType = Context.getPointerType(ImplicitThis->getType()); in CreateOverloadedBinOp() local
13709 CheckArgAlignment(OpLoc, FnDecl, "'this'", ThisType, in CreateOverloadedBinOp()
H A DSemaExpr.cpp2383 QualType ThisType = S.getCurrentThisType(); in recoverFromMSUnqualifiedLookup() local
2385 if (!ThisType.isNull()) in recoverFromMSUnqualifiedLookup()
2386 RD = ThisType->getPointeeType()->getAsCXXRecordDecl(); in recoverFromMSUnqualifiedLookup()
2398 if (!ThisType.isNull()) { in recoverFromMSUnqualifiedLookup()
2401 Context, /*This=*/nullptr, ThisType, /*IsArrow=*/true, in recoverFromMSUnqualifiedLookup()
H A DSemaDeclAttr.cpp1125 QualType ThisType = MD->getThisType()->getPointeeType(); in checkForConsumableClass() local
1127 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) { in checkForConsumableClass()
H A DSemaTemplate.cpp751 QualType ThisType = cast<CXXMethodDecl>(DC)->getThisType(); in ActOnDependentIdExpression() local
758 Context, /*This*/ nullptr, ThisType, /*IsArrow*/ true, in ActOnDependentIdExpression()
H A DTreeTransform.h3035 QualType ThisType, in RebuildCXXThisExpr() argument
3037 return getSema().BuildCXXThisExpr(ThisLoc, ThisType, isImplicit); in RebuildCXXThisExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A 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()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h12418 void CheckConstructorCall(FunctionDecl *FDecl, QualType ThisType,