Searched refs:ClsD (Results 1 – 2 of 2) sorted by relevance
43 class ClsD : public foo::ClsB { class45 ClsD& operator=(int x) { a = x; return *this; } in operator =()46 ClsD& operator=(double x) { a = (int) x; return *this; } in operator =()47 ClsD& operator=(const ClsD &x) { a = x.a; return *this; } in operator =()50 bool operator==(const ClsD &x) const { return a == x.a; } in operator ==()
123 const ObjCInterfaceDecl *ClsD = dyn_cast<ObjCInterfaceDecl>(D); in getSymbolInfo() local124 if (!ClsD) in getSymbolInfo()125 ClsD = cast<ObjCImplementationDecl>(D)->getClassInterface(); in getSymbolInfo()126 if (isUnitTestCase(ClsD)) in getSymbolInfo()