Home
last modified time | relevance | path

Searched refs:Elidable (Results 1 – 5 of 5) sorted by relevance

/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/
DExprCXX.h1077 bool Elidable : 1; variable
1097 : Expr(SC, Empty), Constructor(0), NumArgs(0), Elidable(false), in CXXConstructExpr()
1106 NumArgs(0), Elidable(false), HadMultipleCandidates(false), in CXXConstructExpr()
1113 CXXConstructorDecl *D, bool Elidable,
1128 bool isElidable() const { return Elidable; } in isElidable()
1129 void setElidable(bool E) { Elidable = E; } in setElidable()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/
DExprCXX.cpp837 CXXConstructorDecl *D, bool Elidable, in Create() argument
845 Elidable, Args, in Create()
866 Elidable(elidable), HadMultipleCandidates(HadMultipleCandidates), in CXXConstructExpr()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaDeclCXX.cpp10438 bool Elidable = false; in BuildCXXConstructExpr() local
10453 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent()); in BuildCXXConstructExpr()
10457 Elidable, ExprArgs, HadMultipleCandidates, in BuildCXXConstructExpr()
10466 CXXConstructorDecl *Constructor, bool Elidable, in BuildCXXConstructExpr() argument
10475 Constructor, Elidable, ExprArgs, in BuildCXXConstructExpr()
DSemaInit.cpp4931 bool Elidable = CurInitExpr->isTemporaryObject(S.Context, Class); in CopyObject() local
5018 CurInit = S.BuildCXXConstructExpr(Loc, T, Constructor, Elidable, in CopyObject()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Sema/
DSema.h3730 CXXConstructorDecl *Constructor, bool Elidable,