Home
last modified time | relevance | path

Searched refs:Pointee (Results 1 – 15 of 15) sorted by relevance

/external/clang/include/clang/AST/
DType.h2000 PointerType(QualType Pointee, QualType CanonicalPtr) :
2001 Type(Pointer, CanonicalPtr, Pointee->isDependentType(),
2002 Pointee->isInstantiationDependentType(),
2003 Pointee->isVariablyModifiedType(),
2004 Pointee->containsUnexpandedParameterPack()),
2005 PointeeType(Pointee) {
2035 static void Profile(llvm::FoldingSetNodeID &ID, QualType Pointee) {
2036 ID.AddPointer(Pointee.getAsOpaquePtr());
2106 BlockPointerType(QualType Pointee, QualType CanonicalCls) :
2107 Type(BlockPointer, CanonicalCls, Pointee->isDependentType(),
[all …]
/external/google-breakpad/src/common/dwarf/
Ddwarf2reader_die_unittest.cc66 using testing::Pointee;
344 Pointee('*'), 258)) in TEST_P()
407 Pointee(173), 29)) in TEST_P()
/external/llvm/bindings/go/llvm/
Ddibuilder.go277 Pointee Metadata member
289 t.Pointee.C,
/external/google-breakpad/src/testing/test/
Dgmock_link_test.h160 using testing::Pointee;
635 Matcher<int*> m = Pointee(Eq(1)); in TEST()
Dgmock-matchers_test.cc109 using testing::Pointee;
2786 const Matcher<int*> m = Pointee(Ge(0)); in TEST()
2796 const Matcher<const double*> m = Pointee(Ge(0)); in TEST()
2806 const Matcher<int* const &> m = Pointee(Ge(0)); in TEST()
2816 const Matcher<double* &> m = Pointee(Ge(0)); in TEST()
2848 const Matcher< ConstPropagatingPtr<int> > m = Pointee(Lt(5)); in TEST()
2860 const Matcher<const char*> m = Pointee(_); in TEST()
2866 const Matcher<int*> m = Pointee(5); in TEST()
2876 const Matcher<int*> m = Pointee(Gt(3)); in TEST()
2883 const Matcher<const string*> m = Pointee(StartsWith("Hi")); in TEST()
[all …]
Dgmock-generated-matchers_test.cc74 using testing::Pointee;
488 EXPECT_THAT(&v, Pointee(ElementsAre(0, 1, _))); in TEST()
489 EXPECT_THAT(&v, Not(Pointee(ElementsAre(0, _, 3)))); in TEST()
Dgmock-generated-actions_test.cc1109 HAS_1_TEMPLATE_PARAMS(template <typename Pointee> class, in ACTION_TEMPLATE()
/external/clang/lib/Sema/
DSemaExprCXX.cpp2431 QualType Pointee = Type->getAs<PointerType>()->getPointeeType(); in ActOnCXXDelete() local
2432 QualType PointeeElem = Context.getBaseElementType(Pointee); in ActOnCXXDelete()
2434 if (unsigned AddressSpace = Pointee.getAddressSpace()) in ActOnCXXDelete()
2437 << Pointee.getUnqualifiedType() << AddressSpace; in ActOnCXXDelete()
2440 if (Pointee->isVoidType() && !isSFINAEContext()) { in ActOnCXXDelete()
2446 } else if (Pointee->isFunctionType() || Pointee->isVoidType()) { in ActOnCXXDelete()
2449 } else if (!Pointee->isDependentType()) { in ActOnCXXDelete()
2450 if (!RequireCompleteType(StartLoc, Pointee, in ActOnCXXDelete()
2463 if (Pointee->isArrayType() && !ArrayForm) { in ActOnCXXDelete()
2531 StartLoc, !RequireCompleteType(StartLoc, Pointee, 0) && in ActOnCXXDelete()
[all …]
DSemaDecl.cpp4843 QualType Pointee = PTy->getPointeeType(); in TryToFixInvalidVariablyModifiedType() local
4845 TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative, in TryToFixInvalidVariablyModifiedType()
/external/google-breakpad/src/testing/include/gmock/
Dgmock-matchers.h1679 GTEST_REMOVE_REFERENCE_(Pointer))>::type Pointee; typedef
1682 : matcher_(MatcherCast<const Pointee&>(matcher)) {} in Impl()
1704 const Matcher<const Pointee&> matcher_;
2803 inline internal::PointeeMatcher<InnerMatcher> Pointee(
/external/clang/lib/AST/
DType.cpp2417 QualType Pointee = Pointer->getPointeeType(); in isCARCBridgableType() local
2418 return Pointee->isVoidType() || Pointee->isRecordType(); in isCARCBridgableType()
DExpr.cpp3212 QualType Pointee = PT->getPointeeType(); in isNullPointerConstant() local
3213 if (!Pointee.hasQualifiers() && in isNullPointerConstant()
3214 Pointee->isVoidType() && // to void* in isNullPointerConstant()
DASTContext.cpp2082 QualType Pointee = ptr->getPointeeType(); in getObjCGCQualType() local
2083 if (Pointee->isAnyPointerType()) { in getObjCGCQualType()
2084 QualType ResultType = getObjCGCQualType(Pointee, GCAttr); in getObjCGCQualType()
DExprConstant.cpp4824 QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType(); in VisitBinaryOperator() local
4825 return HandleLValueArrayAdjustment(Info, E, Result, Pointee, in VisitBinaryOperator()
/external/clang/lib/Serialization/
DASTReader.cpp5565 QualType Pointee = readType(*Loc.F, Record, Idx); in readTypeRecord() local
5566 return Context.getObjCObjectPointerType(Pointee); in readTypeRecord()