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 126 Derived &getDerived() { return static_cast<Derived&>(*this); }
129 const Derived &getDerived() const {
179 OldLocation = Self.getDerived().getBaseLocation();
180 OldEntity = Self.getDerived().getBaseEntity();
183 Self.getDerived().setBase(Location, Entity);
187 Self.getDerived().setBase(OldLocation, OldEntity);
411 return getDerived().TransformDecl(Loc, D);
424 return cast_or_null<NamedDecl>(getDerived().TransformDecl(Loc, D));
534 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 76 do { if (!getDerived().CALL_EXPR) return false; } while (0)
143 Derived &getDerived() { return *static_cast<Derived*>(this); }
267 bool WalkUpFromStmt(Stmt *S) { return getDerived().VisitStmt(S); }
340 bool WalkUpFromType(Type *T) { return getDerived().VisitType(T); }
362 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); }
368 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
372 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
396 bool WalkUpFromDecl(Decl *D) { return getDerived().VisitDecl(D); }
451 if (getDerived().shouldUseDataRecursionFor(CurrS)) {
489 return getDerived().WalkUpFrom##NAME(static_cast<CLASS*>(VAR));
    [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h 77 do { if (!getDerived().CALL_EXPR) return false; } while (0)
147 Derived &getDerived() { return *static_cast<Derived*>(this); }
252 bool WalkUpFromStmt(Stmt *S) { return getDerived().VisitStmt(S); }
327 bool WalkUpFromType(Type *T) { return getDerived().VisitType(T); }
349 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); }
355 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
359 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
383 bool WalkUpFromDecl(Decl *D) { return getDerived().VisitDecl(D); }
449 return getDerived().Traverse##NAME(static_cast<CLASS*>(VAR))
545 return getDerived().Traverse##CLASS##TypeLoc(TL.castAs<CLASS##TypeLoc>())
    [all...]

Completed in 319 milliseconds