HomeSort by relevance Sort by last modified time
    Searched refs:IfStmt (Results 1 - 25 of 35) sorted by null

1 2

  /external/clang/lib/Tooling/
RefactoringCallbacks.cpp 68 if (const IfStmt *Node = Result.Nodes.getStmtAs<IfStmt>(Id)) {
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 50 bool VisitIfStmt(const IfStmt *I);
107 bool FindIdenticalExprVisitor::VisitIfStmt(const IfStmt *I) {
121 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) {
397 const IfStmt *IStmt1 = cast<IfStmt>(Stmt1);
398 const IfStmt *IStmt2 = cast<IfStmt>(Stmt2);
  /frameworks/compile/slang/
slang_rs_ast_replace.h 74 void VisitIfStmt(clang::IfStmt *IS);
slang_rs_ast_replace.cpp 122 void RSASTReplace::VisitIfStmt(clang::IfStmt *IS) {
slang_rs_object_ref_count.cpp 259 void VisitIfStmt(clang::IfStmt *IS);
327 void DestructorVisitor::VisitIfStmt(clang::IfStmt *IS) {
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 246 IfStmt *If = new (C) IfStmt(C, SourceLocation(), nullptr, UO, CS);
326 // Construct the body of the IfStmt.
350 new (C) IfStmt(C, SourceLocation(), nullptr, Comparison, Body,
Consumed.cpp 949 void splitVarStateForIf(const IfStmt * IfNode, const VarTestResult &Test,
    [all...]
CFG.cpp 382 CFGBlock *VisitIfStmt(IfStmt *I);
    [all...]
  /external/clang/unittests/AST/
ASTTypeTraitsTest.cpp 42 EXPECT_TRUE(DNT<Stmt>().isBaseOf(DNT<IfStmt>(), &Distance));
  /external/clang/lib/AST/
StmtPrinter.cpp 68 void PrintRawIfStmt(IfStmt *If);
178 void StmtPrinter::PrintRawIfStmt(IfStmt *If) {
203 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else)) {
213 void StmtPrinter::VisitIfStmt(IfStmt *If) {
    [all...]
ParentMap.cpp 189 return DirectChild == cast<IfStmt>(P)->getCond();
Stmt.cpp 822 IfStmt::IfStmt(const ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond,
832 VarDecl *IfStmt::getConditionVariable() const {
840 void IfStmt::setConditionVariable(const ASTContext &C, VarDecl *V) {
    [all...]
StmtProfile.cpp 116 void StmtProfiler::VisitIfStmt(const IfStmt *S) {
    [all...]
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 97 bool VisitIfStmt(IfStmt *S) {
Transforms.cpp 272 bool VisitIfStmt(IfStmt *S) {
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 890 const internal::VariadicDynCastAllOfMatcher<Stmt, IfStmt> ifStmt;
    [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 243 IfStmt,
334 return PGOHash::IfStmt;
652 void VisitIfStmt(const IfStmt *S) {
    [all...]
CGStmt.cpp 130 case Stmt::IfStmtClass: EmitIfStmt(cast<IfStmt>(*S)); break;
474 void CodeGenFunction::EmitIfStmt(const IfStmt &S) {
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 865 /// IfStmt - This represents an if/then/else.
867 class IfStmt : public Stmt {
875 IfStmt(const ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond,
880 explicit IfStmt(EmptyShell Empty) : Stmt(IfStmtClass, Empty) { }
893 /// If this IfStmt has a condition variable, return the faux DeclStmt
    [all...]
DataRecursiveASTVisitor.h     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 402 HandleBranch(cast<IfStmt>(Term)->getCond(), Term, B, Pred);
BugReporter.cpp 469 if (cast<IfStmt>(Parent)->getCond() != S)
    [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 877 VISIT(IfStmt);
1032 DECL_VISIT_STMT(IfStmt) {
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 728 const IfStmt *IS = cast<IfStmt>(Term);
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [all...]

Completed in 1410 milliseconds

1 2