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

1 2

  /build/kati/
stmt.cc 76 string IfStmt::DebugString() const {
84 return StringPrintf("IfStmt(op=%s, lhs=%s, rhs=%s t=%zu f=%zu loc=%s:%d)",
137 IfStmt::~IfStmt() {
142 void IfStmt::Eval(Evaluator* ev) const {
stmt.h 115 struct IfStmt : public Stmt {
122 virtual ~IfStmt();
eval.h 42 void EvalIf(const IfStmt* stmt);
parser.cc 39 IfStmt* stmt;
309 void EnterIf(IfStmt* stmt) {
319 IfStmt* stmt = new IfStmt();
328 bool ParseIfEqCond(StringPiece s, IfStmt* stmt) {
369 IfStmt* stmt = new IfStmt();
eval.cc 182 void Evaluator::EvalIf(const IfStmt* stmt) {
  /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) {
118 const IfStmt *InnerIf = dyn_cast<IfStmt>(*CS->body_begin());
139 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) {
416 const IfStmt *IStmt1 = cast<IfStmt>(Stmt1);
417 const IfStmt *IStmt2 = cast<IfStmt>(Stmt2)
    [all...]
LocalizationChecker.cpp     [all...]
  /external/clang/unittests/AST/
ASTTypeTraitsTest.cpp 48 EXPECT_TRUE(DNT<Stmt>().isBaseOf(DNT<IfStmt>(), &Distance));
79 ASTNodeKind::getMostDerivedType(DNT<IfStmt>(), DNT<VarDecl>()).isNone());
80 EXPECT_TRUE(ASTNodeKind::getMostDerivedType(DNT<IfStmt>(),
99 DNT<IfStmt>(), DNT<VarDecl>()).isNone());
  /frameworks/compile/slang/
slang_rs_ast_replace.h 75 void VisitIfStmt(clang::IfStmt *IS);
slang_rs_ast_replace.cpp 134 void RSASTReplace::VisitIfStmt(clang::IfStmt *IS) {
  /external/clang/lib/Analysis/
BodyFarm.cpp 242 IfStmt *If = new (C) IfStmt(C, SourceLocation(), nullptr, UO, CS);
322 // Construct the body of the IfStmt.
346 new (C) IfStmt(C, SourceLocation(), nullptr, Comparison, Body,
Consumed.cpp 949 static void splitVarStateForIf(const IfStmt *IfNode, const VarTestResult &Test,
    [all...]
CFG.cpp 459 CFGBlock *VisitIfStmt(IfStmt *I);
    [all...]
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 97 bool VisitIfStmt(IfStmt *S) {
Transforms.cpp 268 bool VisitIfStmt(IfStmt *S) {
  /external/clang/lib/AST/
ParentMap.cpp 189 return DirectChild == cast<IfStmt>(P)->getCond();
Stmt.cpp 759 IfStmt::IfStmt(const ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond,
769 VarDecl *IfStmt::getConditionVariable() const {
777 void IfStmt::setConditionVariable(const ASTContext &C, VarDecl *V) {
    [all...]
StmtPrinter.cpp 69 void PrintRawIfStmt(IfStmt *If);
179 void StmtPrinter::PrintRawIfStmt(IfStmt *If) {
204 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else)) {
214 void StmtPrinter::VisitIfStmt(IfStmt *If) {
    [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 84 IfStmt,
175 return PGOHash::IfStmt;
482 void VisitIfStmt(const IfStmt *S) {
CGStmt.cpp 134 case Stmt::IfStmtClass: EmitIfStmt(cast<IfStmt>(*S)); break;
540 void CodeGenFunction::EmitIfStmt(const IfStmt &S) {
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/include/clang/AST/
Stmt.h 867 /// IfStmt - This represents an if/then/else.
869 class IfStmt : public Stmt {
877 IfStmt(const ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond,
882 explicit IfStmt(EmptyShell Empty) : Stmt(IfStmtClass, Empty) { }
895 /// If this IfStmt has a condition variable, return the faux DeclStmt
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 408 HandleBranch(cast<IfStmt>(Term)->getCond(), Term, B, Pred);
  /external/v8/tools/gcmole/
gcmole.cc 877 VISIT(IfStmt);
1032 DECL_VISIT_STMT(IfStmt) {
    [all...]

Completed in 677 milliseconds

1 2