Home
last modified time | relevance | path

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

12

/external/clang/lib/AST/
DMicrosoftCXXABI.cpp56 QualType Pointee = MPT->getPointeeType(); in getMemberPointerSize() local
59 if (Pointee->isFunctionType()) in getMemberPointerSize()
63 } else if (RD->getNumBases() > 1 && Pointee->isFunctionType()) in getMemberPointerSize()
DItaniumCXXABI.cpp37 QualType Pointee = MPT->getPointeeType(); in getMemberPointerSize() local
38 if (Pointee->isFunctionType()) return 2; in getMemberPointerSize()
DType.cpp2344 QualType Pointee = Pointer->getPointeeType(); in isCARCBridgableType() local
2345 return Pointee->isVoidType() || Pointee->isRecordType(); in isCARCBridgableType()
DExpr.cpp3021 QualType Pointee = PT->getPointeeType(); in isNullPointerConstant() local
3022 if (!Pointee.hasQualifiers() && in isNullPointerConstant()
3023 Pointee->isVoidType() && // to void* in isNullPointerConstant()
DASTContext.cpp1944 QualType Pointee = ptr->getPointeeType(); in getObjCGCQualType() local
1945 if (Pointee->isAnyPointerType()) { in getObjCGCQualType()
1946 QualType ResultType = getObjCGCQualType(Pointee, GCAttr); in getObjCGCQualType()
DExprConstant.cpp3050 QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType(); in VisitBinaryOperator() local
3051 return HandleLValueArrayAdjustment(Info, E, Result, Pointee, in VisitBinaryOperator()
/external/chromium/chrome/browser/webdata/
Dweb_data_service_unittest.cc44 using testing::Pointee;
167 Pointee(ElementsAreArray(expected_changes))))). in TEST_F()
213 Pointee(ElementsAreArray(expected_changes))))). in TEST_F()
246 Pointee(ElementsAreArray(expected_changes))))). in TEST_F()
265 Pointee(expected_change)))). in TEST_F()
308 Pointee(expected_change)))). in TEST_F()
356 Pointee(expected_change)))). in TEST_F()
386 Pointee(expected_change)))). in TEST_F()
429 Pointee(expected_change)))). in TEST_F()
477 Pointee(expected_change)))). in TEST_F()
[all …]
/external/chromium/chrome/browser/sync/glue/
Dautofill_profile_model_associator_unittest.cc18 using ::testing::Pointee;
124 EXPECT_CALL(associator_, Associate(Pointee(guid), 1)); in TEST_F()
249 Associate(Pointee(guid), 1)); in TEST_F()
Ddata_type_manager_impl2_unittest.cc42 using testing::Pointee;
/external/chromium/chrome/browser/safe_browsing/
Dclient_side_detection_host_unittest.cc34 using ::testing::Pointee;
237 SendClientReportPhishingRequest(Pointee(EqualsProto(verdict)), _)) in TEST_F()
268 SendClientReportPhishingRequest(Pointee(EqualsProto(verdict)), _)) in TEST_F()
298 SendClientReportPhishingRequest(Pointee(EqualsProto(verdict)), _)) in TEST_F()
354 SendClientReportPhishingRequest(Pointee(EqualsProto(verdict)), _)) in TEST_F()
371 SendClientReportPhishingRequest(Pointee(EqualsProto(verdict)), _)) in TEST_F()
/external/chromium/chrome/browser/password_manager/
Dpassword_store_default_unittest.cc32 using testing::Pointee;
465 Pointee(ElementsAreArray( in TEST_F()
489 Pointee(ElementsAreArray( in TEST_F()
508 Pointee(ElementsAreArray( in TEST_F()
Dpassword_store_x_unittest.cc27 using testing::Pointee;
545 Pointee(ElementsAreArray( in TEST_P()
569 Pointee(ElementsAreArray( in TEST_P()
588 Pointee(ElementsAreArray( in TEST_P()
/external/clang/include/clang/AST/
DType.h1956 PointerType(QualType Pointee, QualType CanonicalPtr) :
1957 Type(Pointer, CanonicalPtr, Pointee->isDependentType(),
1958 Pointee->isInstantiationDependentType(),
1959 Pointee->isVariablyModifiedType(),
1960 Pointee->containsUnexpandedParameterPack()),
1961 PointeeType(Pointee) {
1975 static void Profile(llvm::FoldingSetNodeID &ID, QualType Pointee) {
1976 ID.AddPointer(Pointee.getAsOpaquePtr());
1988 BlockPointerType(QualType Pointee, QualType CanonicalCls) :
1989 Type(BlockPointer, CanonicalCls, Pointee->isDependentType(),
[all …]
/external/chromium/chrome/browser/prefs/
Dpref_observer_mock.cc17 Pointee(pref_name)))) in Expect()
Dpref_observer_mock.h18 using testing::Pointee;
/external/chromium/testing/gmock/test/
Dgmock_link_test.h160 using testing::Pointee;
635 Matcher<int*> m = Pointee(Eq(1)); in TEST()
Dgmock-matchers_test.cc107 using testing::Pointee;
2715 const Matcher<int*> m = Pointee(Ge(0)); in TEST()
2725 const Matcher<const double*> m = Pointee(Ge(0)); in TEST()
2735 const Matcher<int* const &> m = Pointee(Ge(0)); in TEST()
2745 const Matcher<double* &> m = Pointee(Ge(0)); in TEST()
2757 const Matcher<const char*> m = Pointee(_); in TEST()
2763 const Matcher<int*> m = Pointee(5); in TEST()
2773 const Matcher<int*> m = Pointee(Gt(3)); in TEST()
2780 const Matcher<const string*> m = Pointee(StartsWith("Hi")); in TEST()
2784 const Matcher<long*> m2 = Pointee(GreaterThan(1)); // NOLINT 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.cpp2092 QualType Pointee = Type->getAs<PointerType>()->getPointeeType(); in ActOnCXXDelete() local
2093 QualType PointeeElem = Context.getBaseElementType(Pointee); in ActOnCXXDelete()
2095 if (unsigned AddressSpace = Pointee.getAddressSpace()) in ActOnCXXDelete()
2098 << Pointee.getUnqualifiedType() << AddressSpace; in ActOnCXXDelete()
2101 if (Pointee->isVoidType() && !isSFINAEContext()) { in ActOnCXXDelete()
2107 } else if (Pointee->isFunctionType() || Pointee->isVoidType()) { in ActOnCXXDelete()
2110 } else if (!Pointee->isDependentType()) { in ActOnCXXDelete()
2111 if (!RequireCompleteType(StartLoc, Pointee, in ActOnCXXDelete()
2124 if (Pointee->isArrayType() && !ArrayForm) { in ActOnCXXDelete()
DSemaTemplateDeduction.cpp3549 QualType Pointee = Ty->getPointeeType(); in isDependentAutoType() local
3550 if (!Pointee.isNull()) { in isDependentAutoType()
3551 Ty = Pointee; in isDependentAutoType()
/external/chromium/chrome/browser/translate/
Dtranslate_manager_browsertest.cc39 using testing::Pointee;
195 Property(&Details<std::string>::ptr, Pointee(path)))); in SetPrefObserverExpectation()
/external/chromium/testing/gmock/include/gmock/
Dgmock-matchers.h1632 GTEST_REMOVE_REFERENCE_(Pointer))>::type Pointee; typedef
1635 : matcher_(MatcherCast<const Pointee&>(matcher)) {} in Impl()
1657 const Matcher<const Pointee&> matcher_;
2682 inline internal::PointeeMatcher<InnerMatcher> Pointee(
/external/clang/lib/Serialization/
DASTReader.cpp4540 QualType Pointee = readType(*Loc.F, Record, Idx); in readTypeRecord() local
4541 return Context.getObjCObjectPointerType(Pointee); in readTypeRecord()
/external/ceres-solver/internal/ceres/gmock/
Dgmock.h6244 GTEST_REMOVE_REFERENCE_(Pointer))>::type Pointee;
6247 : matcher_(MatcherCast<const Pointee&>(matcher)) {}
6269 const Matcher<const Pointee&> matcher_;
7294 inline internal::PointeeMatcher<InnerMatcher> Pointee(

12