Lines Matching refs:push
71 crates.push(c); in parse_cargo_out_str()
135 result.rustc_invocations.push(args); in parse()
161 result.rustc_invocations.push(args); in parse()
184 result.warning_files.push(fpath); in parse()
190 result.test_errors.push(line.to_string()); in parse()
192 result.errors.push(line.to_string()); in parse()
258 .push(CrateType::from_str(arg_iter.next().unwrap().to_string().as_str())), in from_rustc_invocation()
259 "--test" => out.types.push(CrateType::Test), in from_rustc_invocation()
267 out.features.push(feature.to_string()); in from_rustc_invocation()
269 out.cfgs.push(arg.to_string()); in from_rustc_invocation()
296 out.externs.push(Extern { in from_rustc_invocation()
325 out.codegens.push(arg.to_string()); in from_rustc_invocation()
335 out.static_libs.push(lib.to_string()); in from_rustc_invocation()
337 out.shared_libs.push(lib.to_string()); in from_rustc_invocation()
339 out.shared_libs.push(arg.to_string()); in from_rustc_invocation()
388 out.types.push(CrateType::TestNoHarness); in from_rustc_invocation()