Lines Matching refs:push
94 crates.push(c); in parse_cargo_out()
160 result.rustc_invocations.push(args); in parse()
186 result.rustc_invocations.push(args); in parse()
209 result.warning_files.push(fpath); in parse()
215 result.test_errors.push(line.to_string()); in parse()
217 result.errors.push(line.to_string()); in parse()
272 .push(CrateType::from_str(arg_iter.next().unwrap().to_string().as_str())), in from_rustc_invocation()
273 "--test" => out.types.push(CrateType::Test), in from_rustc_invocation()
281 out.features.push(feature.to_string()); in from_rustc_invocation()
283 out.cfgs.push(arg.to_string()); in from_rustc_invocation()
291 out.externs.push(( in from_rustc_invocation()
296 out.externs.push((arg.to_string(), None)); in from_rustc_invocation()
319 out.codegens.push(arg.to_string()); in from_rustc_invocation()
326 out.static_libs.push(lib.to_string()); in from_rustc_invocation()
328 out.shared_libs.push(lib.to_string()); in from_rustc_invocation()
330 out.shared_libs.push(arg.to_string()); in from_rustc_invocation()
391 out.types.push(CrateType::TestNoHarness); in from_rustc_invocation()