/freebsd/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()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ExprMutationAnalyzer.cpp | 165 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 D | NumberObjectConversionChecker.cpp | 209 pointerType(pointee(hasCanonicalType( in checkASTCodeBody() 221 objcObjectPointerType(pointee( in checkASTCodeBody()
|
H A D | OSObjectCStyleCast.cpp | 77 return hasType(pointerType(pointee(hasDeclaration(DeclM)))); in hasTypePointingTo()
|
H A D | ObjCAutoreleaseWriteChecker.cpp | 176 pointee(hasCanonicalType(objcObjectPointerType())))))) in checkASTCodeBody()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectExpression.cpp | 393 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 D | StackFrame.cpp | 1427 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 D | FormatString.cpp | 592 QualType pointee = PT->getPointeeType(); in matchesType() local 593 if (pointee->getAsStructureType() || pointee->isVoidType()) in matchesType()
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-more-actions_test.cc | 1500 AND_1_VALUE_PARAMS(pointee)) { in ACTION_TEMPLATE() argument 1501 return Pointer<pointee_type>(new pointee_type(pointee)); in ACTION_TEMPLATE()
|
H A D | gmock-matchers-misc_test.cc | 1614 MATCHER_P(UniquePointee, pointee, "") { return *arg == pointee; }
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/ |
H A D | UncheckedOptionalAccessModel.cpp | 305 referenceType(pointee(desugarsToOptionalOrDerivedType())))))); in isCallReturningOptional()
|
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
H A D | Registry.cpp | 541 REGISTER_MATCHER(pointee); in RegistryMaps()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | SymbolFileNativePDB.cpp | 568 TypeSP pointee = GetOrCreateType(pr.ReferentType); in CreatePointerType() local 569 if (!pointee) in CreatePointerType()
|
/freebsd/contrib/googletest/docs/ |
H A D | gmock_faq.md | 73 function parameter is passed by pointer or reference, declaring the pointee or
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/ |
H A D | Checkers.td | 193 "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 D | AttrDocs.td | 3224 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 D | DiagnosticASTKinds.td | 266 "%select{alignment of|offset of the aligned pointer from}0 the base pointee "
|
H A D | DiagnosticSemaKinds.td | 6602 "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 D | SemaType.cpp | 6574 QualType pointee = ptr->getPointeeType(); in handleObjCOwnershipTypeAttr() local 6575 if (pointee->isObjCRetainableType() || pointee->isPointerType()) in handleObjCOwnershipTypeAttr()
|
H A D | OpenCLBuiltins.td | 365 // (extensionless) pointee type of these pointer-to-half types from the "half"
|
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 7434 pointee, getPointee,
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGObjCMac.cpp | 2234 bool pointee = false) { in GetGCAttrTypeForType() argument 2246 if (pointee) return Qualifiers::GCNone; in GetGCAttrTypeForType()
|