Home
last modified time | relevance | path

Searched refs:pointee (Results 1 – 24 of 24) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransAPIUses.cpp72 QualType pointee = parm->getType()->getPointeeType(); in VisitObjCMessageExpr() local
73 if (pointee.isNull()) in VisitObjCMessageExpr()
76 if (pointee.getObjCLifetime() > Qualifiers::OCL_ExplicitNone) in VisitObjCMessageExpr()
H A DTransAutoreleasePool.cpp394 QualType pointee = Ty->getPointeeType(); in isNSAutoreleasePool() local
395 if (pointee.isNull()) in isNSAutoreleasePool()
397 if (const ObjCInterfaceType *interT = pointee->getAs<ObjCInterfaceType>()) in isNSAutoreleasePool()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp165 referenceType(pointee(unless(isConstQualified())))); in __anon6308470b0902()
170 pointerType(pointee(unless(isConstQualified())))); in __anon6308470b0a02()
515 hasUnqualifiedDesugaredType(referenceType(pointee(arrayType()))))))); in findRangeLoopMutation()
546 pointee(hasDeclaration(cxxRecordDecl(HasAnyNonConstIterator))))))))); in findRangeLoopMutation()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNumberObjectConversionChecker.cpp209 pointerType(pointee(hasCanonicalType( in checkASTCodeBody()
221 objcObjectPointerType(pointee( in checkASTCodeBody()
H A DOSObjectCStyleCast.cpp77 return hasType(pointerType(pointee(hasDeclaration(DeclM)))); in hasTypePointingTo()
H A DObjCAutoreleaseWriteChecker.cpp176 pointee(hasCanonicalType(objcObjectPointerType())))))) in checkASTCodeBody()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp405 CompilerType pointee; in CanBeUsedForElementCountPrinting() local
406 if (!type.IsPointerType(&pointee)) in CanBeUsedForElementCountPrinting()
408 if (pointee.IsVoidType()) in CanBeUsedForElementCountPrinting()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp1434 ValueObjectSP pointee = base->Dereference(error); in GetValueForDereferincingOffset() local
1436 if (!pointee) { in GetValueForDereferincingOffset()
1440 if (offset >= 0 && uint64_t(offset) >= pointee->GetByteSize()) { in GetValueForDereferincingOffset()
1441 int64_t index = offset / pointee->GetByteSize().value_or(1); in GetValueForDereferincingOffset()
1442 offset = offset % pointee->GetByteSize().value_or(1); in GetValueForDereferincingOffset()
1444 pointee = base->GetSyntheticArrayMember(index, can_create); in GetValueForDereferincingOffset()
1447 if (!pointee || error.Fail()) { in GetValueForDereferincingOffset()
1451 return GetValueForOffset(frame, pointee, offset); in GetValueForDereferincingOffset()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DFormatString.cpp579 QualType pointee = PT->getPointeeType(); in matchesType() local
580 if (pointee->getAsStructureType() || pointee->isVoidType()) in matchesType()
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/
H A DUncheckedOptionalAccessModel.cpp98 hasType(pointerType(pointee(optionalOrAliasType())))))), in isOptionalMemberCallWithNameMatcher()
216 optionalOrAliasType(), referenceType(pointee(optionalOrAliasType())))))); in isCallReturningOptional()
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc1462 AND_1_VALUE_PARAMS(pointee)) { in ACTION_TEMPLATE() argument
1463 return Pointer<pointee_type>(new pointee_type(pointee)); in ACTION_TEMPLATE()
H A Dgmock-matchers-misc_test.cc1614 MATCHER_P(UniquePointee, pointee, "") { return *arg == pointee; }
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp540 REGISTER_MATCHER(pointee); in RegistryMaps()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp1087 pointee,
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp568 TypeSP pointee = GetOrCreateType(pr.ReferentType); in CreatePointerType() local
569 if (!pointee) in CreatePointerType()
/freebsd/contrib/googletest/docs/
H A Dgmock_faq.md73 function parameter is passed by pointer or reference, declaring the pointee or
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckers.td189 "Check whether the pointee of a pass-by-reference or "
731 "the pointee of pointer/reference fields, and will only "
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttrDocs.td3143 determines the pointee type of some other pointer argument.
3149 argument will have a pointer type. The expected pointee type of this pointer
3151 ``type_tag_idx``. In the code example below, "1" means that the pointee type
3154 argument will be a type tag. The type tag will determine the expected pointee
3157 argument should agree with the pointee type of the pointer argument specified
3168 // determine the expected pointee type of the function's 1st argument.
3217 attribute, the pointee type of the function argument specified by ``ptr_idx`` is
3531 pointer is considered to refer to its pointee, a ``std::initializer_list<T>``
H A DDiagnosticASTKinds.td266 "%select{alignment of|offset of the aligned pointer from}0 the base pointee "
H A DDiagnosticSemaKinds.td11974 "the pointee of the 2nd argument must match the element type of the 1st argument (%0 != %1)">;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp6991 QualType pointee = ptr->getPointeeType(); in handleObjCOwnershipTypeAttr() local
6992 if (pointee->isObjCRetainableType() || pointee->isPointerType()) in handleObjCOwnershipTypeAttr()
H A DOpenCLBuiltins.td365 // (extensionless) pointee type of these pointer-to-half types from the "half"
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7404 pointee, getPointee,
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp2227 bool pointee = false) { in GetGCAttrTypeForType() argument
2239 if (pointee) return Qualifiers::GCNone; in GetGCAttrTypeForType()