HomeSort by: relevance | last modified time | path
    Searched refs:CStyleCastExpr (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 363 const CStyleCastExpr* CastExpr1 = cast<CStyleCastExpr>(Stmt1);
364 const CStyleCastExpr* CastExpr2 = cast<CStyleCastExpr>(Stmt2);
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransUnbridgedCasts.cpp 229 if (CStyleCastExpr *CCE = dyn_cast<CStyleCastExpr>(E)) {
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 367 void RewriteCastExpr(CStyleCastExpr *CE);
584 // Helper function: create a CStyleCastExpr with trivial type source info.
585 CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty,
588 return CStyleCastExpr::Create(*Ctx, Ty, VK_RValue, Kind, E, nullptr,
2171 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) {
2298 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E))
2749 CStyleCastExpr * ArrayLiteralObjects =
2878 CStyleCastExpr * DictValueObjects
    [all...]
RewriteObjC.cpp 310 void RewriteCastExpr(CStyleCastExpr *CE);
490 // Helper function: create a CStyleCastExpr with trivial type source info.
491 CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty,
494 return CStyleCastExpr::Create(*Ctx, Ty, VK_RValue, Kind, E, nullptr,
2089 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) {
2212 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E))
2844 while (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(recExpr)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ReachableCode.cpp 588 const CStyleCastExpr *CSC = cast<CStyleCastExpr>(S);
CalledOnceCheck.cpp 1621 void VisitCStyleCastExpr(const CStyleCastExpr *Cast) {
UninitializedValues.cpp 449 else if (const auto *CSE = dyn_cast<CStyleCastExpr>(CE)) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 1924 return static_cast<CStyleCastExpr *>(this)
1968 CStyleCastExpr *CStyleCastExpr::Create(const ASTContext &C, QualType T,
1978 CStyleCastExpr *E =
1979 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, FPO, WrittenTy, L, R);
1986 CStyleCastExpr *CStyleCastExpr::CreateEmpty(const ASTContext &C,
1992 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize, HasFPFeatures);
2724 const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this)
    [all...]
StmtPrinter.cpp 1438 void StmtPrinter::VisitCStyleCastExpr(CStyleCastExpr *Node) {
StmtProfile.cpp 1335 void StmtProfiler::VisitCStyleCastExpr(const CStyleCastExpr *S) {
ASTImporter.cpp 7128 auto *CCE = cast<CStyleCastExpr>(E);
7135 return CStyleCastExpr::Create(
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 3654 /// CStyleCastExpr - An explicit cast in C (C99 6.5.4) or a C-style
3657 class CStyleCastExpr final
3659 private llvm::TrailingObjects<CStyleCastExpr, CXXBaseSpecifier *,
3664 CStyleCastExpr(QualType exprTy, ExprValueKind vk, CastKind kind, Expr *op,
3675 explicit CStyleCastExpr(EmptyShell Shell, unsigned PathSize,
3684 static CStyleCastExpr *
3689 static CStyleCastExpr *CreateEmpty(const ASTContext &Context,
RecursiveASTVisitor.h 2330 DEF_TRAVERSE_STMT(CStyleCastExpr, {
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 954 const internal::VariadicDynCastAllOfMatcher<Stmt, CStyleCastExpr>
955 cStyleCastExpr;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprObjC.cpp 3784 if (CStyleCastExpr *CCE = dyn_cast<CStyleCastExpr>(castedE))
4521 if (CStyleCastExpr *cast = dyn_cast<CStyleCastExpr>(realCast)) {
SemaChecking.cpp 2649 const auto *CE = dyn_cast<CStyleCastExpr>(UO->getSubExpr());
4428 if (const CStyleCastExpr *CSCE = dyn_cast<CStyleCastExpr>(FormatExpr))
8950 if (const CStyleCastExpr *CCast = dyn_cast<CStyleCastExpr>(E)) {
Sema.cpp 2373 return (!isa<CStyleCastExpr>(E) &&
SemaStmt.cpp 360 else if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(E)) {
SemaCast.cpp 3201 return Op.complete(CStyleCastExpr::Create(
SemaTemplate.cpp 7635 E = CStyleCastExpr::Create(Context, OrigT, VK_RValue, CK_IntegralCast, E,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 1152 void ASTStmtReader::VisitCStyleCastExpr(CStyleCastExpr *E) {
2940 S = CStyleCastExpr::CreateEmpty(
ASTWriterStmt.cpp 1022 void ASTStmtWriter::VisitCStyleCastExpr(CStyleCastExpr *E) {
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 2584 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CStyleCastExpr>
2585 cStyleCastExpr;
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 4028 CStyleCastExpr *CC = static_cast<CStyleCastExpr *>(expr);
5292 return cxstring::createRef("CStyleCastExpr");
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 2399 if (const auto *Exp = dyn_cast<CStyleCastExpr>(E)) {

Completed in 151 milliseconds

1 2