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

  /external/clang/lib/Sema/
TreeTransform.h 125 Derived &getDerived() { return static_cast<Derived&>(*this); }
128 const Derived &getDerived() const {
182 OldLocation = Self.getDerived().getBaseLocation();
183 OldEntity = Self.getDerived().getBaseEntity();
186 Self.getDerived().setBase(Location, Entity);
190 Self.getDerived().setBase(OldLocation, OldEntity);
414 return getDerived().TransformDecl(Loc, D);
427 return cast_or_null<NamedDecl>(getDerived().TransformDecl(Loc, D));
537 getDerived().getBaseLocation());
    [all...]
SemaPseudoObject.cpp 51 T &getDerived() { return static_cast<T&>(*this); }
57 return getDerived().rebuildSpecific(specific);
    [all...]
  /external/clang/include/clang/AST/
DataRecursiveASTVisitor.h 72 if (!getDerived().CALL_EXPR) \
143 Derived &getDerived() { return *static_cast<Derived *>(this); }
272 bool WalkUpFromStmt(Stmt *S) { return getDerived().VisitStmt(S); }
346 bool WalkUpFromType(Type *T) { return getDerived().VisitType(T); }
367 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); }
373 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
377 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
400 bool WalkUpFromDecl(Decl *D) { return getDerived().VisitDecl(D); }
466 return getDerived().Traverse##NAME(static_cast<CLASS *>(VAR))
569 return getDerived().Traverse##CLASS##TypeLoc(TL.castAs<CLASS##TypeLoc>())
    [all...]
RecursiveASTVisitor.h 68 if (!getDerived().CALL_EXPR) \
136 Derived &getDerived() { return *static_cast<Derived *>(this); }
276 bool WalkUpFromStmt(Stmt *S) { return getDerived().VisitStmt(S); }
348 bool WalkUpFromType(Type *T) { return getDerived().VisitType(T); }
369 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); }
375 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
379 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
402 bool WalkUpFromDecl(Decl *D) { return getDerived().VisitDecl(D); }
462 if (getDerived().shouldUseDataRecursionFor(CurrS)) {
501 return getDerived().WalkUpFrom##NAME(static_cast<CLASS *>(VAR));
    [all...]

Completed in 191 milliseconds