Searched defs:getDerived (Results 1 - 4 of 4) sorted by relevance

/external/clang/include/clang/AST/
H A DDataRecursiveASTVisitor.h72 if (!getDerived().CALL_EXPR) \
143 Derived &getDerived() { return *static_cast<Derived *>(this); } function in class:clang::RecursiveASTVisitor
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); }
467 return getDerived().Traverse##NAME(static_cast<CLASS *>(VAR))
570 return getDerived()
[all...]
H A DRecursiveASTVisitor.h68 if (!getDerived().CALL_EXPR) \
136 Derived &getDerived() { return *static_cast<Derived *>(this); } function in class:clang::RecursiveASTVisitor
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); }
463 if (getDerived().shouldUseDataRecursionFor(CurrS)) {
502 return getDerived()
[all...]
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp51 T &getDerived() { return static_cast<T&>(*this); } function in struct:__anon1221::Rebuilder
57 return getDerived().rebuildSpecific(specific);
H A DTreeTransform.h125 Derived &getDerived() { return static_cast<Derived&>(*this); } function in class:clang::TreeTransform
128 const Derived &getDerived() const { function in class:clang::TreeTransform
182 OldLocation = Self.getDerived().getBaseLocation();
183 OldEntity = Self.getDerived().getBaseEntity();
186 Self.getDerived().setBase(Location, Entity);
190 Self.getDerived().setBase(OldLocation, OldEntity);
435 return getDerived().TransformDecl(Loc, D);
448 return cast_or_null<NamedDecl>(getDerived().TransformDecl(Loc, D));
558 getDerived().getBaseLocation());
885 = getDerived()
[all...]

Completed in 931 milliseconds