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

1 2 3 4 5

  /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;
324 void EnterIf(IfStmt* stmt) {
334 IfStmt* stmt = new IfStmt();
343 bool ParseIfEqCond(StringPiece s, IfStmt* stmt) {
384 IfStmt* stmt = new IfStmt();
  /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)) {
414 const IfStmt *IStmt1 = cast<IfStmt>(Stmt1);
415 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(), false, nullptr, nullptr,
323 // Construct the body of the IfStmt.
346 Stmt *If = new (C) IfStmt(C, SourceLocation(), false, nullptr, nullptr,
  /prebuilts/go/darwin-x86/src/go/types/
return.go 53 case *ast.IfStmt:
142 case *ast.IfStmt:
  /prebuilts/go/linux-x86/src/go/types/
return.go 53 case *ast.IfStmt:
142 case *ast.IfStmt:
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 97 bool VisitIfStmt(IfStmt *S) {
  /external/clang/lib/AST/
ParentMap.cpp 191 return DirectChild == cast<IfStmt>(P)->getCond();
Stmt.cpp 766 IfStmt::IfStmt(const ASTContext &C, SourceLocation IL, bool IsConstexpr,
778 VarDecl *IfStmt::getConditionVariable() const {
786 void IfStmt::setConditionVariable(const ASTContext &C, VarDecl *V) {
    [all...]
StmtPrinter.cpp 70 void PrintRawIfStmt(IfStmt *If);
180 void StmtPrinter::PrintRawIfStmt(IfStmt *If) {
205 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else)) {
215 void StmtPrinter::VisitIfStmt(IfStmt *If) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
nodes.go 367 IfStmt struct {
371 Else Stmt // either *IfStmt or *BlockStmt
  /prebuilts/go/darwin-x86/src/cmd/vet/
deadcode.go 100 case *ast.IfStmt:
228 case *ast.IfStmt:
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
nodes.go 367 IfStmt struct {
371 Else Stmt // either *IfStmt or *BlockStmt
  /prebuilts/go/linux-x86/src/cmd/vet/
deadcode.go 100 case *ast.IfStmt:
228 case *ast.IfStmt:
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 89 IfStmt,
180 return PGOHash::IfStmt;
488 void VisitIfStmt(const IfStmt *S) {
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTraversalTest.cpp 715 TEST(IfStmt, ChildTraversalMatchers) {
717 ifStmt(hasThen(cxxBoolLiteral(equals(true))))));
719 ifStmt(hasThen(cxxBoolLiteral(equals(true))))));
721 ifStmt(hasElse(cxxBoolLiteral(equals(true))))));
723 ifStmt(hasElse(cxxBoolLiteral(equals(true))))));
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]

Completed in 1297 milliseconds

1 2 3 4 5