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

/external/clang/lib/AST/
H A DMicrosoftCXXABI.cpp56 QualType Pointee = MPT->getPointeeType(); local
59 if (Pointee->isFunctionType())
63 } else if (RD->getNumBases() > 1 && Pointee->isFunctionType())
H A DItaniumCXXABI.cpp37 QualType Pointee = MPT->getPointeeType(); local
38 if (Pointee->isFunctionType()) return 2;
H A DType.cpp2239 QualType Pointee = Pointer->getPointeeType();
2240 return Pointee->isVoidType() || Pointee->isRecordType();
H A DExpr.cpp2913 QualType Pointee = PT->getPointeeType(); local
2914 if (!Pointee.hasQualifiers() &&
2915 Pointee->isVoidType() && // to void*
H A DASTContext.cpp1798 QualType Pointee = ptr->getPointeeType(); local
1799 if (Pointee->isAnyPointerType()) {
1800 QualType ResultType = getObjCGCQualType(Pointee, GCAttr);
H A DExprConstant.cpp3047 QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType(); local
3048 return HandleLValueArrayAdjustment(Info, E, Result, Pointee,
/external/chromium/chrome/browser/prefs/
H A Dpref_observer_mock.cc17 Pointee(pref_name))))
H A Dpref_observer_mock.h18 using testing::Pointee;
/external/chromium/chrome/browser/webdata/
H A Dweb_data_service_unittest.cc44 using testing::Pointee;
167 Pointee(ElementsAreArray(expected_changes))))).
213 Pointee(ElementsAreArray(expected_changes))))).
246 Pointee(ElementsAreArray(expected_changes))))).
265 Pointee(expected_change)))).
308 Pointee(expected_change)))).
356 Pointee(expected_change)))).
386 Pointee(expected_change)))).
429 Pointee(expected_change)))).
477 Pointee(expected_chang
[all...]
/external/chromium/chrome/browser/sync/glue/
H A Dautofill_profile_model_associator_unittest.cc18 using ::testing::Pointee;
124 EXPECT_CALL(associator_, Associate(Pointee(guid), 1));
249 Associate(Pointee(guid), 1));
H A Ddata_type_manager_impl2_unittest.cc42 using testing::Pointee;
/external/chromium/chrome/browser/safe_browsing/
H A Dclient_side_detection_host_unittest.cc34 using ::testing::Pointee;
237 SendClientReportPhishingRequest(Pointee(EqualsProto(verdict)), _))
268 SendClientReportPhishingRequest(Pointee(EqualsProto(verdict)), _))
298 SendClientReportPhishingRequest(Pointee(EqualsProto(verdict)), _))
354 SendClientReportPhishingRequest(Pointee(EqualsProto(verdict)), _))
371 SendClientReportPhishingRequest(Pointee(EqualsProto(verdict)), _))
/external/chromium/chrome/browser/password_manager/
H A Dpassword_store_default_unittest.cc32 using testing::Pointee;
465 Pointee(ElementsAreArray(
489 Pointee(ElementsAreArray(
508 Pointee(ElementsAreArray(
H A Dpassword_store_x_unittest.cc27 using testing::Pointee;
545 Pointee(ElementsAreArray(
569 Pointee(ElementsAreArray(
588 Pointee(ElementsAreArray(
/external/clang/include/clang/AST/
H A DType.h1909 PointerType(QualType Pointee, QualType CanonicalPtr) : argument
1910 Type(Pointer, CanonicalPtr, Pointee->isDependentType(),
1911 Pointee->isInstantiationDependentType(),
1912 Pointee->isVariablyModifiedType(),
1913 Pointee->containsUnexpandedParameterPack()),
1914 PointeeType(Pointee) {
1928 static void Profile(llvm::FoldingSetNodeID &ID, QualType Pointee) { argument
1929 ID.AddPointer(Pointee.getAsOpaquePtr());
1938 /// "void (^)(int)", etc. Pointee is required to always be a function type.
1942 BlockPointerType(QualType Pointee, QualTyp argument
1962 Profile(llvm::FoldingSetNodeID &ID, QualType Pointee) argument
2063 MemberPointerType(QualType Pointee, const Type *Cls, QualType CanonicalPtr) argument
2098 Profile(llvm::FoldingSetNodeID &ID, QualType Pointee, const Type *Class) argument
4369 ObjCObjectPointerType(QualType Canonical, QualType Pointee) argument
[all...]
/external/chromium/testing/gmock/test/
H A Dgmock_link_test.h93 // Pointee
160 using testing::Pointee;
635 Matcher<int*> m = Pointee(Eq(1));
H A Dgmock-matchers_test.cc107 using testing::Pointee;
2715 const Matcher<int*> m = Pointee(Ge(0));
2725 const Matcher<const double*> m = Pointee(Ge(0));
2735 const Matcher<int* const &> m = Pointee(Ge(0));
2745 const Matcher<double* &> m = Pointee(Ge(0));
2757 const Matcher<const char*> m = Pointee(_);
2761 // Tests that we can write Pointee(value) instead of Pointee(Eq(value)).
2763 const Matcher<int*> m = Pointee(5);
2773 const Matcher<int*> m = Pointee(G
[all...]
H A Dgmock-generated-matchers_test.cc74 using testing::Pointee;
488 EXPECT_THAT(&v, Pointee(ElementsAre(0, 1, _)));
489 EXPECT_THAT(&v, Not(Pointee(ElementsAre(0, _, 3))));
H A Dgmock-generated-actions_test.cc1109 HAS_1_TEMPLATE_PARAMS(template <typename Pointee> class,
/external/chromium/chrome/browser/translate/
H A Dtranslate_manager_browsertest.cc39 using testing::Pointee;
195 Property(&Details<std::string>::ptr, Pointee(path))));
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp2115 QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
2116 QualType PointeeElem = Context.getBaseElementType(Pointee);
2118 if (unsigned AddressSpace = Pointee.getAddressSpace())
2121 << Pointee.getUnqualifiedType() << AddressSpace;
2124 if (Pointee->isVoidType() && !isSFINAEContext()) {
2130 } else if (Pointee->isFunctionType() || Pointee->isVoidType()) {
2133 } else if (!Pointee->isDependentType()) {
2134 if (!RequireCompleteType(StartLoc, Pointee,
2147 if (Pointee
[all...]
H A DSemaTemplateDeduction.cpp3497 QualType Pointee = Ty->getPointeeType(); local
3498 if (!Pointee.isNull()) {
3499 Ty = Pointee;
H A DSemaDecl.cpp3800 QualType Pointee = PTy->getPointeeType(); local
3802 TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative,
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-matchers.h117 // example, the MatchAndExplain() method of the Pointee(...) matcher
1606 // Implements the Pointee(m) matcher for matching a pointer whose
1613 // This type conversion operator template allows Pointee(m) to be
1620 // enough for implementing the DescribeTo() method of Pointee().
1632 GTEST_REMOVE_REFERENCE_(Pointer))>::type Pointee; typedef in class:testing::internal::PointeeMatcher::Impl
1635 : matcher_(MatcherCast<const Pointee&>(matcher)) {}
1657 const Matcher<const Pointee&> matcher_;
2682 inline internal::PointeeMatcher<InnerMatcher> Pointee( function in namespace:testing
/external/clang/lib/Serialization/
H A DASTReader.cpp4049 QualType Pointee = readType(*Loc.F, Record, Idx); local
4050 return Context.getObjCObjectPointerType(Pointee);

Completed in 8640 milliseconds