Home | History | Annotate | Download | only in gn

Lines Matching refs:used

36 // used primarily to refer to the master build config which is shared across
38 // marking variables "used" which prevents us from issuing errors on unused
92 // When set, values copied to the destination scope will be marked as used
153 // guaranteed to be set in the current scope. Generatlly this will be used
156 // Since this is used when doing read-modifies, we never count this access
183 // Marks the given identifier as (un)used in the current scope.
187 // Checks to see if the scope has a var set that hasn't been used. This is
191 // If the identifier is present but hasnn't been used, return true.
194 // Checks the scope to see if any values were set but not used, and fills in
207 // This is used in different contexts. When generating the error, the given
208 // parse node will be blamed, and the given desc will be used to describe
301 Record() : used(false) {}
302 Record(const Value& v) : used(false), value(v) {}
304 bool used; // Set to true when the variable is used.