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

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprObjC.h 1572 // unsigned ObjCIndirectCopyRestoreBits.ShouldCopy : 1;
1577 void setShouldCopy(bool shouldCopy) {
1578 ObjCIndirectCopyRestoreExprBits.ShouldCopy = shouldCopy;
1582 ObjCIndirectCopyRestoreExpr(Expr *operand, QualType type, bool shouldCopy)
1585 setShouldCopy(shouldCopy);
1592 /// shouldCopy - True if we should do the 'copy' part of the
1594 bool shouldCopy() const { return ObjCIndirectCopyRestoreExprBits.ShouldCopy; }
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Initialization.h 1336 void AddPassByIndirectCopyRestoreStep(QualType T, bool shouldCopy);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCall.cpp 3870 bool shouldCopy = CRE->shouldCopy();
3871 if (!shouldCopy) {
3898 if (shouldCopy) {
3911 if (shouldCopy) {
3934 if (shouldCopy && !provablyNonNull) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtProfile.cpp 2220 ID.AddBoolean(S->shouldCopy());
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriterStmt.cpp 935 Record.push_back(E->shouldCopy());
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaInit.cpp 3750 bool shouldCopy) {
3752 s.Kind = (shouldCopy ? SK_PassByIndirectCopyRestore
5550 bool ShouldCopy = true;
5552 ShouldCopy = (param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out);
5572 Sequence.AddPassByIndirectCopyRestoreStep(Entity.getType(), ShouldCopy);
6007 bool ShouldCopy = true;
6009 ShouldCopy = (Param->getObjCDeclQualifier() != ParmVarDecl::OBJC_TQ_Out);
6022 AddPassByIndirectCopyRestoreStep(DestType, ShouldCopy);

Completed in 44 milliseconds