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

  /external/clang/include/clang/AST/
RecursiveASTVisitor.h 71 if (!getDerived().CALL_EXPR) \
145 Derived &getDerived() { return *static_cast<Derived *>(this); }
300 : getDerived().Traverse##NAME(static_cast<CLASS *>(VAR)))
320 bool WalkUpFromStmt(Stmt *S) { return getDerived().VisitStmt(S); }
393 bool WalkUpFromType(Type *T) { return getDerived().VisitType(T); }
414 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); }
420 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
424 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
447 bool WalkUpFromDecl(Decl *D) { return getDerived().VisitDecl(D); }
569 return getDerived().Traverse##NAME(static_cast<CLASS *>(VAR)
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/clang/lib/Sema/
TreeTransform.h 126 Derived &getDerived() { return static_cast<Derived&>(*this); }
129 const Derived &getDerived() const {
183 OldLocation = Self.getDerived().getBaseLocation();
184 OldEntity = Self.getDerived().getBaseEntity();
187 Self.getDerived().setBase(Location, Entity);
191 Self.getDerived().setBase(OldLocation, OldEntity);
436 return getDerived().TransformDecl(Loc, D);
449 return cast_or_null<NamedDecl>(getDerived().TransformDecl(Loc, D));
563 getDerived().getBaseLocation());
    [all...]

Completed in 494 milliseconds