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

  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprCXX.cpp 252 bool HasInit = Initializer != nullptr;
257 IsArray + HasInit + NumPlacementArgs, IsParenTypeId),
267 bool HasInit, unsigned NumPlacementArgs,
271 IsArray + HasInit + NumPlacementArgs, IsParenTypeId),
ODRHash.cpp 297 const bool HasInit = D->hasInit();
298 Hash.AddBoolean(HasInit);
299 if (HasInit) {
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...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
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)
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...]

Completed in 20 milliseconds