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

  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 915 bool HasInit = Init != nullptr;
918 IfStmtBits.HasInit = HasInit;
928 if (HasInit)
936 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit)
940 IfStmtBits.HasInit = HasInit;
949 bool HasInit = Init != nullptr;
952 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse),
959 bool HasInit) {
    [all...]
ODRHash.cpp 297 const bool HasInit = D->hasInit();
298 Hash.AddBoolean(HasInit);
299 if (HasInit) {
ExprCXX.cpp 252 bool HasInit = Initializer != nullptr;
257 IsArray + HasInit + NumPlacementArgs, IsParenTypeId),
267 bool HasInit, unsigned NumPlacementArgs,
271 IsArray + HasInit + NumPlacementArgs, IsParenTypeId),
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 173 unsigned HasInit : 1;
185 unsigned HasInit : 1;
1958 explicit IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit);
1971 bool HasInit);
1974 bool hasInitStorage() const { return IfStmtBits.HasInit; }
2166 explicit SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar);
2176 static SwitchStmt *CreateEmpty(const ASTContext &Ctx, bool HasInit,
2180 bool hasInitStorage() const { return SwitchStmtBits.HasInit; }
ExprCXX.h 2229 bool HasInit, unsigned NumPlacementArgs,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 219 bool HasInit = Record.readInt();
227 if (HasInit)
240 bool HasInit = Record.readInt();
248 if (HasInit)
1860 bool HasInit = Record.readInt();
1870 assert((HasInit == E->hasInitializer()) && "Wrong HasInit!");
1875 (void)HasInit;
2737 /* HasInit=*/Record[ASTStmtReader::NumStmtFields + 3]);
2743 /* HasInit=*/Record[ASTStmtReader::NumStmtFields]
    [all...]
ASTWriterStmt.cpp 139 bool HasInit = S->getInit() != nullptr;
144 Record.push_back(HasInit);
152 if (HasInit)
167 bool HasInit = S->getInit() != nullptr;
169 Record.push_back(HasInit);
175 if (HasInit)

Completed in 28 milliseconds