Home | History | Annotate | Download | only in Sema

Lines Matching defs:Entity

3297       //   If the entity is a template parameter object for a template
3299 // [...] The expression is an lvalue if the entity is a [...] template
4763 InitializedEntity Entity = InitializedEntity::InitializeTemporary(Ty);
4766 InitializationSequence InitSeq(*this, Entity, Kind, E);
4767 return InitSeq.Perform(*this, Entity, Kind, E);
5933 InitializedEntity Entity =
5941 Entity.setParameterCFAudited();
5944 Entity, SourceLocation(), Arg, IsListInitialization, AllowExplicit);
6779 InitializedEntity Entity = InitializedEntity::InitializeParameter(
6782 PerformCopyInitialization(Entity, SourceLocation(), Arg);
6883 InitializedEntity Entity
6889 InitializationSequence InitSeq(*this, Entity, Kind, LiteralExpr);
6890 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr,
13967 InitializedEntity Entity =
13969 InitializationSequence InitSeq(*this, Entity, Kind, RHSExpr);
13970 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr);
15673 InitializedEntity Entity = InitializedEntity::InitializeParameter(
15675 ExprResult Init = PerformCopyInitialization(Entity, SourceLocation(), E);
16732 // within a templated entity
17474 // An entity is captured by reference if it is implicitly or
17488 // For each entity captured by copy, an unnamed non-static
17492 // captured entity if the entity is not a reference to an
17494 // captured entity is a reference to a function, the
17692 // capture of that variable. We start from the innermost capturing-entity
17974 // Any entity other than a VarDecl is always odr-used whenever it's named
19429 InitializedEntity entity =
19432 return PerformCopyInitialization(entity, callLoc, arg);