Home | History | Annotate | Download | only in AST

Lines Matching full:referenced

108     /// Labels, declared with 'x:' and referenced with 'goto x'.
111 /// Tags, declared with 'struct foo;' and referenced with
258 /// \brief Whether this declaration was "referenced".
261 /// are regarded as "referenced" but not "used".
262 unsigned Referenced : 1;
306 HasAttrs(false), Implicit(false), Used(false), Referenced(false),
316 HasAttrs(false), Implicit(false), Used(false), Referenced(false),
488 /// \brief Whether this declaration was referenced.
491 void setReferenced(bool R = true) { Referenced = R; }