reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/RecursiveASTVisitor.h
 1182   TRY_TO(TraverseStmt(TL.getSizeExpr()));
tools/clang/lib/Sema/SemaChecking.cpp
13209       const Expr *SizeExpr = dyn_cast<IntegerLiteral>(CTL.getSizeExpr());
tools/clang/lib/Sema/SemaDecl.cpp
 5824   DstATL.setSizeExpr(SrcATL.getSizeExpr());
tools/clang/lib/Sema/TreeTransform.h
 4761   Expr *OldSize = TL.getSizeExpr();
 4886   Expr *origSize = TL.getSizeExpr();
tools/clang/lib/Serialization/ASTWriter.cpp
  654   Record.push_back(TL.getSizeExpr() ? 1 : 0);
  655   if (TL.getSizeExpr())
  656     Record.AddStmt(TL.getSizeExpr());
tools/clang/tools/extra/clang-tidy/bugprone/NotNullTerminatedResultCheck.cpp
   55         return DestCTL.getSizeExpr();
tools/clang/tools/libclang/CIndex.cpp
 1670   if (Expr *Size = TL.getSizeExpr())