Searched refs:Derived (Results 76 - 83 of 83) sorted by relevance

1234

/external/zlib/contrib/pascal/
H A Dzlibpas.pas4 * Derived from original sources by Bob Dellaca.
/external/chromium/testing/gmock/test/
H A Dgmock-matchers_test.cc545 class Derived : public Base {}; class in namespace:testing::gmock_matchers_test
571 Derived d, d2;
573 Matcher<Derived*> m2 = SafeMatcherCast<Derived*>(m1);
578 Matcher<Derived&> m4 = SafeMatcherCast<Derived&>(m3);
971 Derived derived;
H A Dgmock-internal-utils_test.cc127 class Derived : public Base {}; class in namespace:testing::internal::__anon2410
/external/clang/lib/AST/
H A DExprConstant.cpp374 template <class Derived, typename RetTy=void>
376 : public ConstStmtVisitor<Derived, RetTy> {
379 return static_cast<Derived*>(this)->Success(V, E);
382 return static_cast<Derived*>(this)->Error(E);
385 return static_cast<Derived*>(this)->ValueInitialization(E);
390 typedef ConstStmtVisitor<Derived, RetTy> StmtVisitorTy;
/external/clang/lib/CodeGen/
H A DCodeGenFunction.h1655 const CXXRecordDecl *Derived,
1662 const CXXRecordDecl *Derived,
1668 const CXXRecordDecl *Derived,
H A DCGExpr.cpp326 CXXRecordDecl *Derived local
328 Adjustments.push_back(SubobjectAdjustment(CE, Derived));
2129 llvm::Value *Derived = local
2134 return MakeAddrLValue(Derived, E->getType());
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp1190 /// \brief Determine whether the type \p Derived is a C++ class that is
1192 bool Sema::IsDerivedFrom(QualType Derived, QualType Base) { argument
1196 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1208 /// \brief Determine whether the type \p Derived is a C++ class that is
1210 bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) { argument
1214 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1260 /// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1261 /// conversion (where Derived and Base are class types) is
1269 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base, argument
1275 // First, determine whether the path from Derived t
1330 CheckDerivedToBaseConversion(QualType Derived, QualType Base, SourceLocation Loc, SourceRange Range, CXXCastPath *BasePath, bool IgnoreAccess) argument
[all...]
/external/clang/include/clang/Sema/
H A DSema.h3598 // C++ Derived Classes
3620 bool IsDerivedFrom(QualType Derived, QualType Base);
3621 bool IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths);
3628 bool CheckDerivedToBaseConversion(QualType Derived, QualType Base,
3632 bool CheckDerivedToBaseConversion(QualType Derived, QualType Base,
3709 QualType Base, QualType Derived,

Completed in 321 milliseconds

1234