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 {
178 OldLocation = Self.getDerived().getBaseLocation();
179 OldEntity = Self.getDerived().getBaseEntity();
182 Self.getDerived().setBase(Location, Entity);
186 Self.getDerived().setBase(OldLocation, OldEntity);
400 return getDerived().TransformDecl(Loc, D);
413 return cast_or_null<NamedDecl>(getDerived().TransformDecl(Loc, D));
523 getDerived().getBaseLocation());
    [all...]
SemaPseudoObject.cpp 50 T &getDerived() { return static_cast<T&>(*this); }
56 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); }
257 bool WalkUpFromStmt(Stmt *S) { return getDerived().VisitStmt(S); }
330 bool WalkUpFromType(Type *T) { return getDerived().VisitType(T); }
352 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); }
358 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
362 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
386 bool WalkUpFromDecl(Decl *D) { return getDerived().VisitDecl(D); }
436 if (getDerived().shouldUseDataRecursionFor(CurrS)) {
474 return getDerived().WalkUpFrom##NAME(static_cast<CLASS*>(VAR));
    [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h 75 do { if (!getDerived().CALL_EXPR) return false; } while (0)
145 Derived &getDerived() { return *static_cast<Derived*>(this); }
250 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); }
442 return getDerived().Traverse##NAME(static_cast<CLASS*>(VAR))
538 return getDerived().Traverse##CLASS##TypeLoc(TL.castAs<CLASS##TypeLoc>())
    [all...]

Completed in 61 milliseconds