| /freebsd-13.1/contrib/llvm-project/clang/lib/ARCMigrate/ |
| H A D | TransAPIUses.cpp | 72 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 D | TransAutoreleasePool.cpp | 393 QualType pointee = Ty->getPointeeType(); in isNSAutoreleasePool() local 394 if (pointee.isNull()) in isNSAutoreleasePool() 396 if (const ObjCInterfaceType *interT = pointee->getAs<ObjCInterfaceType>()) in isNSAutoreleasePool()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ExprMutationAnalyzer.cpp | 105 referenceType(pointee(unless(isConstQualified())))); in __anon0c1b38f70402() 110 pointerType(pointee(unless(isConstQualified())))); in __anon0c1b38f70502() 447 hasUnqualifiedDesugaredType(referenceType(pointee(arrayType()))))))); in findRangeLoopMutation() 476 pointee(hasDeclaration(cxxRecordDecl(HasAnyNonConstIterator))))))))); in findRangeLoopMutation()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NumberObjectConversionChecker.cpp | 211 pointerType(pointee(hasCanonicalType( in checkASTCodeBody() 223 objcObjectPointerType(pointee( in checkASTCodeBody()
|
| H A D | OSObjectCStyleCast.cpp | 77 return hasType(pointerType(pointee(hasDeclaration(DeclM)))); in hasTypePointingTo()
|
| H A D | ObjCAutoreleaseWriteChecker.cpp | 174 pointee(hasCanonicalType(objcObjectPointerType())))))) in checkASTCodeBody()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | StackFrame.cpp | 1413 ValueObjectSP pointee = base->Dereference(error); in GetValueForDereferincingOffset() local 1415 if (!pointee) { in GetValueForDereferincingOffset() 1419 if (offset >= 0 && uint64_t(offset) >= pointee->GetByteSize()) { in GetValueForDereferincingOffset() 1420 int64_t index = offset / pointee->GetByteSize().getValueOr(1); in GetValueForDereferincingOffset() 1421 offset = offset % pointee->GetByteSize().getValueOr(1); in GetValueForDereferincingOffset() 1423 pointee = base->GetSyntheticArrayMember(index, can_create); in GetValueForDereferincingOffset() 1426 if (!pointee || error.Fail()) { in GetValueForDereferincingOffset() 1430 return GetValueForOffset(frame, pointee, offset); in GetValueForDereferincingOffset()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectExpression.cpp | 348 CompilerType pointee; in CanBeUsedForElementCountPrinting() local 349 if (!type.IsPointerType(&pointee)) in CanBeUsedForElementCountPrinting() 351 if (pointee.IsVoidType()) in CanBeUsedForElementCountPrinting()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | FormatString.cpp | 484 QualType pointee = PT->getPointeeType(); in matchesType() local 485 if (pointee->getAsStructureType() || pointee->isVoidType()) in matchesType()
|
| /freebsd-13.1/contrib/googletest/googlemock/test/ |
| H A D | gmock-generated-actions_test.cc | 1128 AND_1_VALUE_PARAMS(pointee)) { in ACTION_TEMPLATE() argument 1129 return Pointer<pointee_type>(new pointee_type(pointee)); in ACTION_TEMPLATE()
|
| H A D | gmock-generated-matchers_test.cc | 1323 MATCHER_P(UniquePointee, pointee, "") { 1324 return *arg == pointee;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.cpp | 451 TypeSP pointee = GetOrCreateType(pr.ReferentType); in CreatePointerType() local 452 if (!pointee) in CreatePointerType()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Registry.cpp | 504 REGISTER_MATCHER(pointee); in RegistryMaps()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 1057 pointee,
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/ |
| H A D | Checkers.td | 172 "Check whether the pointee of a pass-by-reference or " 656 "the pointee of pointer/reference fields, and will only "
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DiagnosticASTKinds.td | 239 "%select{alignment of|offset of the aligned pointer from}0 the base pointee "
|
| H A D | AttrDocs.td | 2723 determines the pointee type of some other pointer argument. 2729 argument will have a pointer type. The expected pointee type of this pointer 2731 ``type_tag_idx``. In the code example below, "1" means that the pointee type 2734 argument will be a type tag. The type tag will determine the expected pointee 2737 argument should agree with the pointee type of the pointer argument specified 2748 // determine the expected pointee type of the function's 1st argument. 2797 attribute, the pointee type of the function argument specified by ``ptr_idx`` is 3078 pointer is considered to refer to its pointee, a ``std::initializer_list<T>``
|
| H A D | DiagnosticSemaKinds.td | 11278 "the pointee of the 2nd argument must match the element type of the 1st argument (%0 != %1)">;
|
| /freebsd-13.1/contrib/googletest/googlemock/docs/ |
| H A D | FrequentlyAskedQuestions.md | 595 ## I'm using the set-argument-pointee action, and the compiler complains about "conflicting return …
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaType.cpp | 6588 QualType pointee = ptr->getPointeeType(); in handleObjCOwnershipTypeAttr() local 6589 if (pointee->isObjCRetainableType() || pointee->isPointerType()) in handleObjCOwnershipTypeAttr()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 6764 pointee, getPointee,
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjCMac.cpp | 2294 bool pointee = false) { in GetGCAttrTypeForType() argument 2306 if (pointee) return Qualifiers::GCNone; in GetGCAttrTypeForType()
|