HomeSort by: relevance | last modified time | path
    Searched defs:HasVar (Results 1 - 3 of 3) 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/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 29 milliseconds