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

  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 914 bool HasVar = Var != nullptr;
917 IfStmtBits.HasVar = HasVar;
926 if (HasVar)
936 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit)
939 IfStmtBits.HasVar = HasVar;
948 bool HasVar = Var != nullptr;
952 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse),
958 IfStmt *IfStmt::CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar,
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 170 unsigned HasVar : 1;
188 unsigned HasVar : 1;
206 unsigned HasVar : 1;
1958 explicit IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit);
1970 static IfStmt *CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar,
1977 bool hasVarStorage() const { return IfStmtBits.HasVar; }
2166 explicit SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar);
2177 bool HasVar);
2183 bool hasVarStorage() const { return SwitchStmtBits.HasVar; }
2350 explicit WhileStmt(EmptyShell Empty, bool HasVar);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriterStmt.cpp 138 bool HasVar = S->getConditionVariableDeclStmt() != nullptr;
143 Record.push_back(HasVar);
150 if (HasVar)
168 bool HasVar = S->getConditionVariableDeclStmt() != nullptr;
170 Record.push_back(HasVar);
177 if (HasVar)
193 bool HasVar = S->getConditionVariableDeclStmt() != nullptr;
194 Record.push_back(HasVar);
198 if (HasVar)
ASTReaderStmt.cpp 218 bool HasVar = Record.readInt();
225 if (HasVar)
241 bool HasVar = Record.readInt();
250 if (HasVar)
272 bool HasVar = Record.readInt();
276 if (HasVar)
2736 /* HasVar=*/Record[ASTStmtReader::NumStmtFields + 2],
2744 /* HasVar=*/Record[ASTStmtReader::NumStmtFields + 1]);
2750 /* HasVar=*/Record[ASTStmtReader::NumStmtFields]);

Completed in 76 milliseconds