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

  /external/clang/lib/Sema/
TreeTransform.h 120 Derived &getDerived() { return static_cast<Derived&>(*this); }
123 const Derived &getDerived() const {
173 OldLocation = Self.getDerived().getBaseLocation();
174 OldEntity = Self.getDerived().getBaseEntity();
177 Self.getDerived().setBase(Location, Entity);
181 Self.getDerived().setBase(OldLocation, OldEntity);
363 return getDerived().TransformDecl(Loc, D);
376 return cast_or_null<NamedDecl>(getDerived().TransformDecl(Loc, D));
486 getDerived().getBaseLocation());
    [all...]
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h 74 do { if (!getDerived().CALL_EXPR) return false; } while (0)
141 Derived &getDerived() { return *static_cast<Derived*>(this); }
236 bool WalkUpFromStmt(Stmt *S) { return getDerived().VisitStmt(S); }
309 bool WalkUpFromType(Type *T) { return getDerived().VisitType(T); }
331 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); }
337 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
341 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
365 bool WalkUpFromDecl(Decl *D) { return getDerived().VisitDecl(D); }
393 return getDerived().Traverse##NAME(static_cast<CLASS*>(VAR))
468 return getDerived().Traverse##CLASS##TypeLoc(*cast<CLASS##TypeLoc>(&TL))
    [all...]

Completed in 141 milliseconds