Lines Matching refs:r
18 let mut r = Vec::new(); in build() localVariable
21 Self::dfs(m, &mut r); in build()
26 let features = ConfigParser::parse_d_configs(&r); in build()
61 fn dfs(module: &Module, r: &mut Vec<PathBuf>) { in dfs()
73 Self::dfs(m, r); in dfs()
77 r.push(d_config_path); in dfs()
90 let r = Self::include(&cfg_content); in parse_kernel_config() localVariable
92 return r; in parse_kernel_config()
97 let mut r = Vec::new(); in parse_d_configs() localVariable
99 r.extend(Self::parse_d_config(d_config)); in parse_d_configs()
101 return r; in parse_d_configs()
112 let mut r = Vec::new(); in parse_d_config() localVariable
117 r.push(Feature::new(name, enable)); in parse_d_config()
120 return r; in parse_d_config()
134 let mut r = Vec::new(); in include() localVariable
140 r.push(Module::new(name, path, enable)); in include()
143 return r; in include()