HomeSort by relevance Sort by last modified time
    Searched refs:ClsD (Results 1 - 2 of 2) sorted by null

  /external/clang/test/Index/
usrs.cpp 43 class ClsD : public foo::ClsB {
45 ClsD& operator=(int x) { a = x; return *this; }
46 ClsD& operator=(double x) { a = (int) x; return *this; }
47 ClsD& operator=(const ClsD &x) { a = x.a; return *this; }
50 bool operator==(const ClsD &x) const { return a == x.a; }
134 // CHECK: usrs.cpp c:@N@foo@N@taz@S@ClsD Extent=[43:3 - 51:4]
136 // CHECK: usrs.cpp c:@N@foo@N@taz@S@ClsD@F@operator=#I# Extent=[45:5 - 45:52]
137 // CHECK: usrs.cpp c:usrs.cpp@638@N@foo@N@taz@S@ClsD@F@operator=#I#@x Extent=[45:21 - 45:26]
138 // CHECK: usrs.cpp c:@N@foo@N@taz@S@ClsD@F@operator=#d# Extent=[46:5 - 46:61
    [all...]
  /external/clang/lib/Index/
IndexSymbol.cpp 123 const ObjCInterfaceDecl *ClsD = dyn_cast<ObjCInterfaceDecl>(D);
124 if (!ClsD)
125 ClsD = cast<ObjCImplementationDecl>(D)->getClassInterface();
126 if (isUnitTestCase(ClsD))

Completed in 237 milliseconds