Searched refs:isDerivedFrom (Results 1 - 22 of 22) sorted by relevance

/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp39 DeclarationMatcher IsDerivedFromEmpty = recordDecl(isDerivedFrom(""));
125 DeclarationMatcher IsDerivedFromX = recordDecl(isDerivedFrom("X"));
142 recordDecl(hasName("Z"), isDerivedFrom("X"));
261 recordDecl(isDerivedFrom(recordDecl(hasName("Some"))))));
268 recordDecl(hasName("B"), isDerivedFrom(recordDecl(hasName("A"))))));
285 hasInitializer(hasType(recordDecl(isDerivedFrom("Base1")))))));
289 hasInitializer(hasType(recordDecl(isDerivedFrom("Base2")))))));
293 hasInitializer(hasType(recordDecl(isDerivedFrom("Base1"),
294 isDerivedFrom("Base2")))))));
310 hasInitializer(hasType(recordDecl(isDerivedFrom("Base
[all...]
/external/clang/lib/AST/
H A DCXXInheritance.cpp76 bool CXXRecordDecl::isDerivedFrom(const CXXRecordDecl *Base) const { function in class:CXXRecordDecl
79 return isDerivedFrom(Base, Paths);
82 bool CXXRecordDecl::isDerivedFrom(const CXXRecordDecl *Base, function in class:CXXRecordDecl
H A DExprCXX.cpp668 return !DestRD->isDerivedFrom(SrcRD);
H A DVTableBuilder.cpp264 if (!DerivedRD->isDerivedFrom(BaseRD, Paths))
1231 if (!DerivedRD->isDerivedFrom(BaseRD, Paths))
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java123 * @see or.gw3c.dom.TypeInfo#isDerivedFrom(String,String,int)
125 public boolean isDerivedFrom( String ns, String localName, int derivationMethod ) { method in class:DOM2DTMdefaultNamespaceDeclarationNode
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1571 /// In the following example, Bar matches isDerivedFrom(hasName("X")):
1577 AST_MATCHER_P(CXXRecordDecl, isDerivedFrom,
1582 /// \brief Overloaded method as shortcut for \c isDerivedFrom(hasName(...)).
1583 AST_MATCHER_P_OVERLOAD(CXXRecordDecl, isDerivedFrom, StringRef, BaseName, 1) {
1585 return isDerivedFrom(hasName(BaseName)).matches(Node, Finder, Builder);
1588 /// \brief Similar to \c isDerivedFrom(), but also matches classes that directly
1592 return Matcher<CXXRecordDecl>(anyOf(Base, isDerivedFrom(Base)))
/external/doclava/src/com/google/doclava/
H A DClassInfo.java1020 public boolean isDerivedFrom(ClassInfo cl) { method in class:ClassInfo
1021 return isDerivedFrom(cl.qualifiedName());
1025 public boolean isDerivedFrom(String qualifiedName) { method in class:ClassInfo
1031 if (dad.isDerivedFrom(qualifiedName)) {
1040 if (iface.isDerivedFrom(qualifiedName)) {
1287 } else if (cl.isDerivedFrom(this)) {
H A DStubs.java1327 && !ex.isDerivedFrom("java.lang.RuntimeException")) {
/external/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp336 if (MRClass->isDerivedFrom(TargetClass, Paths))
H A DCallEvent.cpp457 assert(!RD->isDerivedFrom(MD->getParent()) && "Couldn't find known method");
464 //assert(!MD->getParent()->isDerivedFrom(RD) && "Bad DynamicTypeInfo");
H A DExprEngineCallAndReturn.cpp147 if (ActualClass->isDerivedFrom(ExpectedClass, Paths) &&
/external/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp89 REGISTER_OVERLOADED_2(isDerivedFrom);
/external/clang/include/clang/AST/
H A DDeclCXX.h1405 bool isDerivedFrom(const CXXRecordDecl *Base) const;
1423 bool isDerivedFrom(const CXXRecordDecl *Base, CXXBasePaths &Paths) const;
/external/clang/lib/Sema/
H A DSemaCast.cpp743 if (SrcRD->isDerivedFrom(DestRD, BasePaths))
745 else if (DestRD->isDerivedFrom(SrcRD, BasePaths))
H A DSemaAccess.cpp936 bool isDerived = Derived->isDerivedFrom(const_cast<CXXRecordDecl*>(Base),
H A DSemaLookup.cpp4533 if (!CurRD || (CurRD != RD && !CurRD->isDerivedFrom(RD)))
H A DSemaExprCXX.cpp3782 ->isDerivedFrom(cast<CXXRecordDecl>(lhsRecord->getDecl()));
H A DSemaDeclCXX.cpp1634 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
1651 return DerivedRD->isDerivedFrom(BaseRD, Paths);
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.cc1077 return (record == base) || record->isDerivedFrom(base);
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/external/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp898 if (!Dst->isDerivedFrom(Src, Paths))
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 603 milliseconds