Searched defs:Pointee (Results 1 - 6 of 6) sorted by relevance

/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/AST/
H A DExpr.cpp3027 QualType Pointee = PT->getPointeeType(); local
3028 if (!Pointee.hasQualifiers() &&
3029 Pointee->isVoidType() && // to void*
H A DASTContext.cpp2031 QualType Pointee = ptr->getPointeeType(); local
2032 if (Pointee->isAnyPointerType()) {
2033 QualType ResultType = getObjCGCQualType(Pointee, GCAttr);
/external/clang/include/clang/AST/
H A DType.h1969 PointerType(QualType Pointee, QualType CanonicalPtr) : argument
1970 Type(Pointer, CanonicalPtr, Pointee->isDependentType(),
1971 Pointee->isInstantiationDependentType(),
1972 Pointee->isVariablyModifiedType(),
1973 Pointee->containsUnexpandedParameterPack()),
1974 PointeeType(Pointee) {
1988 static void Profile(llvm::FoldingSetNodeID &ID, QualType Pointee) { argument
1989 ID.AddPointer(Pointee.getAsOpaquePtr());
2035 /// "void (^)(int)", etc. Pointee is required to always be a function type.
2039 BlockPointerType(QualType Pointee, QualTyp argument
2059 Profile(llvm::FoldingSetNodeID &ID, QualType Pointee) argument
2156 MemberPointerType(QualType Pointee, const Type *Cls, QualType CanonicalPtr) argument
2191 Profile(llvm::FoldingSetNodeID &ID, QualType Pointee, const Type *Class) argument
4428 ObjCObjectPointerType(QualType Canonical, QualType Pointee) argument
[all...]
/external/clang/lib/Sema/
H A DSemaDecl.cpp4300 QualType Pointee = PTy->getPointeeType(); local
4302 TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative,
/external/clang/lib/Serialization/
H A DASTReader.cpp4829 QualType Pointee = readType(*Loc.F, Record, Idx); local
4830 return Context.getObjCObjectPointerType(Pointee);

Completed in 174 milliseconds