Home
last modified time | relevance | path

Searched refs:pointee (Results 1 – 22 of 22) 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()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp165 referenceType(pointee(unless(isConstQualified())))); in __anon2875c4430902()
170 pointerType(pointee(unless(isConstQualified())))); in __anon2875c4430a02()
529 hasUnqualifiedDesugaredType(referenceType(pointee(arrayType()))))))); in findRangeLoopMutation()
560 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.cpp393 CompilerType pointee; in CanBeUsedForElementCountPrinting() local
394 if (!type.IsPointerType(&pointee)) in CanBeUsedForElementCountPrinting()
396 if (pointee.IsVoidType()) in CanBeUsedForElementCountPrinting()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp1427 ValueObjectSP pointee = base->Dereference(error); in GetValueForDereferincingOffset() local
1429 if (!pointee) { in GetValueForDereferincingOffset()
1433 if (offset >= 0 && uint64_t(offset) >= pointee->GetByteSize()) { in GetValueForDereferincingOffset()
1434 int64_t index = offset / pointee->GetByteSize().value_or(1); in GetValueForDereferincingOffset()
1435 offset = offset % pointee->GetByteSize().value_or(1); in GetValueForDereferincingOffset()
1437 pointee = base->GetSyntheticArrayMember(index, can_create); in GetValueForDereferincingOffset()
1440 if (!pointee || error.Fail()) { in GetValueForDereferincingOffset()
1444 return GetValueForOffset(frame, pointee, offset); in GetValueForDereferincingOffset()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DFormatString.cpp592 QualType pointee = PT->getPointeeType(); in matchesType() local
593 if (pointee->getAsStructureType() || pointee->isVoidType()) in matchesType()
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc1500 AND_1_VALUE_PARAMS(pointee)) { in ACTION_TEMPLATE() argument
1501 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/Analysis/FlowSensitive/Models/
H A DUncheckedOptionalAccessModel.cpp305 referenceType(pointee(desugarsToOptionalOrDerivedType())))))); in isCallReturningOptional()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp541 REGISTER_MATCHER(pointee); in RegistryMaps()
/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.td193 "Check whether the pointee of a pass-by-reference or "
734 "the pointee of pointer/reference fields, and will only "
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttrDocs.td3224 determines the pointee type of some other pointer argument.
3230 argument will have a pointer type. The expected pointee type of this pointer
3232 ``type_tag_idx``. In the code example below, "1" means that the pointee type
3235 argument will be a type tag. The type tag will determine the expected pointee
3238 argument should agree with the pointee type of the pointer argument specified
3249 // determine the expected pointee type of the function's 1st argument.
3298 attribute, the pointee type of the function argument specified by ``ptr_idx`` is
3612 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.td6602 "a pointer with pointee|" // pointer
12191 "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.cpp6574 QualType pointee = ptr->getPointeeType(); in handleObjCOwnershipTypeAttr() local
6575 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.h7434 pointee, getPointee,
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp2234 bool pointee = false) { in GetGCAttrTypeForType() argument
2246 if (pointee) return Qualifiers::GCNone; in GetGCAttrTypeForType()