Home
last modified time | relevance | path

Searched refs:excluded_values (Results 1 – 3 of 3) sorted by relevance

/third_party/gn/src/gn/
Dscope.cc219 void Scope::MarkAllUsed(const std::set<std::string>& excluded_values) { in MarkAllUsed() argument
221 if (!excluded_values.empty() && in MarkAllUsed()
222 excluded_values.find(std::string(cur.first)) != excluded_values.end()) { in MarkAllUsed()
303 if (!options.excluded_values.empty() && in NonRecursiveMergeTo()
304 options.excluded_values.find(std::string(current_name)) != in NonRecursiveMergeTo()
305 options.excluded_values.end()) { in NonRecursiveMergeTo()
338 if (!options.excluded_values.empty() && in NonRecursiveMergeTo()
339 options.excluded_values.find(current_name) != in NonRecursiveMergeTo()
340 options.excluded_values.end()) { in NonRecursiveMergeTo()
386 if (!options.excluded_values.empty() && in NonRecursiveMergeTo()
[all …]
Dscope.h94 std::set<std::string> excluded_values; member
202 void MarkAllUsed(const std::set<std::string>& excluded_values);
Dfunction_forward_variables_from.cc27 options.excluded_values = exclusion_set; in ForwardAllValues()