HomeSort by: relevance | last modified time | path
    Searched refs:CXXConstCastExpr (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprCXX.cpp 814 CXXConstCastExpr *CXXConstCastExpr::Create(const ASTContext &C, QualType T,
820 return new (C) CXXConstCastExpr(T, VK, Op, WrittenTy, L, RParenLoc, AngleBrackets);
823 CXXConstCastExpr *CXXConstCastExpr::CreateEmpty(const ASTContext &C) {
824 return new (C) CXXConstCastExpr(EmptyShell());
StmtPrinter.cpp 1771 void StmtPrinter::VisitCXXConstCastExpr(CXXConstCastExpr *Node) {
StmtProfile.cpp 1808 void StmtProfiler::VisitCXXConstCastExpr(const CXXConstCastExpr *S) {
ASTImporter.cpp 8009 } else if (isa<CXXConstCastExpr>(E)) {
8010 return CXXConstCastExpr::Create(
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprCXX.h 371 /// reinterpret_cast, CXXConstCastExpr for \c const_cast and
562 class CXXConstCastExpr final
564 private llvm::TrailingObjects<CXXConstCastExpr, CXXBaseSpecifier *> {
565 CXXConstCastExpr(QualType ty, ExprValueKind VK, Expr *op,
572 explicit CXXConstCastExpr(EmptyShell Empty)
580 static CXXConstCastExpr *Create(const ASTContext &Context, QualType T,
585 static CXXConstCastExpr *CreateEmpty(const ASTContext &Context);
RecursiveASTVisitor.h 2342 DEF_TRAVERSE_STMT(CXXConstCastExpr, {
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 952 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXConstCastExpr>
953 cxxConstCastExpr;
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 1776 void ASTStmtReader::VisitCXXConstCastExpr(CXXConstCastExpr *E) {
3588 S = CXXConstCastExpr::CreateEmpty(Context);
ASTWriterStmt.cpp 1666 void ASTStmtWriter::VisitCXXConstCastExpr(CXXConstCastExpr *E) {
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 2575 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXConstCastExpr>
2576 cxxConstCastExpr;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCast.cpp 321 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType,
TreeTransform.h 11511 TreeTransform<Derived>::TransformCXXConstCastExpr(CXXConstCastExpr *E) {

Completed in 86 milliseconds