HomeSort by: relevance | last modified time | path
    Searched refs:NullStmt (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 31 static bool isEmptyARCMTMacroStatement(NullStmt *S,
84 bool VisitNullStmt(NullStmt *S) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 109 friend class NullStmt;
1361 /// NullStmt - This is the null statement ";": C99 6.8.3p3.
1363 class NullStmt : public Stmt {
1365 NullStmt(SourceLocation L, bool hasLeadingEmptyMacro = false)
1372 explicit NullStmt(EmptyShell Empty) : Stmt(NullStmtClass, Empty) {}
1488 // If we don't find something that isn't a NullStmt, just return the last
1492 if (!isa<NullStmt>(B))
RecursiveASTVisitor.h 2260 DEF_TRAVERSE_STMT(NullStmt, {})
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 900 const internal::VariadicDynCastAllOfMatcher<Stmt, NullStmt> nullStmt;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 70 return new (Context) NullStmt(SemiLoc, HasLeadingEmptyMacro);
1659 if (isa<NullStmt>(Body))
2143 if (isa<NullStmt>(Body))
TreeTransform.h 7164 TreeTransform<Derived>::TransformNullStmt(NullStmt *S) {
7371 Then = new (getSema().Context) NullStmt(S->getThen()->getBeginLoc());
8270 return new (getSema().Context) NullStmt(S->getKeywordLoc());
8276 return new (getSema().Context) NullStmt(S->getKeywordLoc());
SemaDecl.cpp 14744 if (!isa<AsmStmt>(S) && !isa<NullStmt>(S)) {
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
BuildTree.cpp 1423 bool WalkUpFromNullStmt(NullStmt *S) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 146 void ASTStmtReader::VisitNullStmt(NullStmt *S) {
2704 S = new (Context) NullStmt(Empty);
ASTWriterStmt.cpp 74 void ASTStmtWriter::VisitNullStmt(NullStmt *S) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtPrinter.cpp 191 void StmtPrinter::VisitNullStmt(NullStmt *Node) {
StmtProfile.cpp 237 void StmtProfiler::VisitNullStmt(const NullStmt *S) {
ASTImporter.cpp 543 ExpectedStmt VisitNullStmt(NullStmt *S);
6110 ExpectedStmt ASTNodeImporter::VisitNullStmt(NullStmt *S) {
6114 return new (Importer.getToContext()) NullStmt(
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 2315 /// nullStmt()
2317 extern const internal::VariadicDynCastAllOfMatcher<Stmt, NullStmt> nullStmt;
7881 /// ``ompExecutableDirective(hasStructuredBlock(nullStmt()))`` will match ``;``
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.cpp 6559 if (isa<AsmStmt>(S) || isa<NullStmt>(S) || isa<OMPFlushDirective>(S) ||

Completed in 206 milliseconds