/external/clang/lib/AST/ |
D | MicrosoftCXXABI.cpp | 56 QualType Pointee = MPT->getPointeeType(); in getMemberPointerSize() local 59 if (Pointee->isFunctionType()) in getMemberPointerSize() 63 } else if (RD->getNumBases() > 1 && Pointee->isFunctionType()) in getMemberPointerSize()
|
D | ItaniumCXXABI.cpp | 37 QualType Pointee = MPT->getPointeeType(); in getMemberPointerSize() local 38 if (Pointee->isFunctionType()) return 2; in getMemberPointerSize()
|
D | Type.cpp | 2344 QualType Pointee = Pointer->getPointeeType(); in isCARCBridgableType() local 2345 return Pointee->isVoidType() || Pointee->isRecordType(); in isCARCBridgableType()
|
D | Expr.cpp | 3021 QualType Pointee = PT->getPointeeType(); in isNullPointerConstant() local 3022 if (!Pointee.hasQualifiers() && in isNullPointerConstant() 3023 Pointee->isVoidType() && // to void* in isNullPointerConstant()
|
D | ASTContext.cpp | 1944 QualType Pointee = ptr->getPointeeType(); in getObjCGCQualType() local 1945 if (Pointee->isAnyPointerType()) { in getObjCGCQualType() 1946 QualType ResultType = getObjCGCQualType(Pointee, GCAttr); in getObjCGCQualType()
|
D | ExprConstant.cpp | 3050 QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType(); in VisitBinaryOperator() local 3051 return HandleLValueArrayAdjustment(Info, E, Result, Pointee, in VisitBinaryOperator()
|
/external/chromium/chrome/browser/webdata/ |
D | web_data_service_unittest.cc | 44 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/ |
D | autofill_profile_model_associator_unittest.cc | 18 using ::testing::Pointee; 124 EXPECT_CALL(associator_, Associate(Pointee(guid), 1)); in TEST_F() 249 Associate(Pointee(guid), 1)); in TEST_F()
|
D | data_type_manager_impl2_unittest.cc | 42 using testing::Pointee;
|
/external/chromium/chrome/browser/safe_browsing/ |
D | client_side_detection_host_unittest.cc | 34 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/ |
D | password_store_default_unittest.cc | 32 using testing::Pointee; 465 Pointee(ElementsAreArray( in TEST_F() 489 Pointee(ElementsAreArray( in TEST_F() 508 Pointee(ElementsAreArray( in TEST_F()
|
D | password_store_x_unittest.cc | 27 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/ |
D | Type.h | 1956 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/ |
D | pref_observer_mock.cc | 17 Pointee(pref_name)))) in Expect()
|
D | pref_observer_mock.h | 18 using testing::Pointee;
|
/external/chromium/testing/gmock/test/ |
D | gmock_link_test.h | 160 using testing::Pointee; 635 Matcher<int*> m = Pointee(Eq(1)); in TEST()
|
D | gmock-matchers_test.cc | 107 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 …]
|
D | gmock-generated-matchers_test.cc | 74 using testing::Pointee; 488 EXPECT_THAT(&v, Pointee(ElementsAre(0, 1, _))); in TEST() 489 EXPECT_THAT(&v, Not(Pointee(ElementsAre(0, _, 3)))); in TEST()
|
D | gmock-generated-actions_test.cc | 1109 HAS_1_TEMPLATE_PARAMS(template <typename Pointee> class, in ACTION_TEMPLATE()
|
/external/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 2092 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()
|
D | SemaTemplateDeduction.cpp | 3549 QualType Pointee = Ty->getPointeeType(); in isDependentAutoType() local 3550 if (!Pointee.isNull()) { in isDependentAutoType() 3551 Ty = Pointee; in isDependentAutoType()
|
/external/chromium/chrome/browser/translate/ |
D | translate_manager_browsertest.cc | 39 using testing::Pointee; 195 Property(&Details<std::string>::ptr, Pointee(path)))); in SetPrefObserverExpectation()
|
/external/chromium/testing/gmock/include/gmock/ |
D | gmock-matchers.h | 1632 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/ |
D | ASTReader.cpp | 4540 QualType Pointee = readType(*Loc.F, Record, Idx); in readTypeRecord() local 4541 return Context.getObjCObjectPointerType(Pointee); in readTypeRecord()
|
/external/ceres-solver/internal/ceres/gmock/ |
D | gmock.h | 6244 GTEST_REMOVE_REFERENCE_(Pointer))>::type Pointee; 6247 : matcher_(MatcherCast<const Pointee&>(matcher)) {} 6269 const Matcher<const Pointee&> matcher_; 7294 inline internal::PointeeMatcher<InnerMatcher> Pointee(
|