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

  /external/clang/lib/Sema/
TreeTransform.h 125 Derived &getDerived() { return static_cast<Derived&>(*this); }
128 const Derived &getDerived() const {
178 OldLocation = Self.getDerived().getBaseLocation();
179 OldEntity = Self.getDerived().getBaseEntity();
182 Self.getDerived().setBase(Location, Entity);
186 Self.getDerived().setBase(OldLocation, OldEntity);
394 return getDerived().TransformDecl(Loc, D);
407 return cast_or_null<NamedDecl>(getDerived().TransformDecl(Loc, D));
517 getDerived().getBaseLocation());
    [all...]
SemaPseudoObject.cpp 47 T &getDerived() { return static_cast<T&>(*this); }
53 return getDerived().rebuildSpecific(specific);
    [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); }
252 bool WalkUpFromStmt(Stmt *S) { return getDerived().VisitStmt(S); }
325 bool WalkUpFromType(Type *T) { return getDerived().VisitType(T); }
347 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); }
353 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
357 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
381 bool WalkUpFromDecl(Decl *D) { return getDerived().VisitDecl(D); }
435 if (getDerived().shouldUseDataRecursionFor(CurrS)) {
461 return getDerived().WalkUpFrom##NAME(static_cast<CLASS*>(VAR))
    [all...]

Completed in 60 milliseconds