Home
last modified time | relevance | path

Searched refs:CStmt (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/clang-tools-extra/clang-tidy/readability/
DMisleadingIndentationCheck.cpp57 const CompoundStmt *CStmt) { in missingBracesCheck() argument
59 for (unsigned int i = 0; i < CStmt->size() - 1; i++) { in missingBracesCheck()
60 const Stmt *CurrentStmt = CStmt->body_begin()[i]; in missingBracesCheck()
92 const Stmt *NextStmt = CStmt->body_begin()[i + 1]; in missingBracesCheck()
124 if (const auto *CStmt = Result.Nodes.getNodeAs<CompoundStmt>("compound")) in check() local
125 missingBracesCheck(*Result.SourceManager, CStmt); in check()
DMisleadingIndentationCheck.h34 void missingBracesCheck(const SourceManager &SM, const CompoundStmt *CStmt);