• Home
  • Raw
  • Download

Lines Matching refs:value_of

856             if let Some(color) = matches.value_of("color") {  in configure_from_args()
867 if let Some(backend) = matches.value_of("plotting-backend") { in configure_from_args()
870 if let Some(format) = matches.value_of("output-format") { in configure_from_args()
878 .value_of("save-baseline") in configure_from_args()
901 let num_seconds = value_t!(matches.value_of("profile-time"), u64).unwrap_or_else(|e| { in configure_from_args()
921 if let Some(filter) = matches.value_of("FILTER") { in configure_from_args()
925 match matches.value_of("plotting-backend") { in configure_from_args()
939 if let Some(dir) = matches.value_of("save-baseline") { in configure_from_args()
943 if let Some(dir) = matches.value_of("baseline") { in configure_from_args()
955 match matches.value_of("output-format") { in configure_from_args()
965 match matches.value_of("color") { in configure_from_args()
983 if let Some(dir) = matches.value_of("load-baseline") { in configure_from_args()
988 let num_size = value_t!(matches.value_of("sample-size"), usize).unwrap_or_else(|e| { in configure_from_args()
997 let num_seconds = value_t!(matches.value_of("warm-up-time"), u64).unwrap_or_else(|e| { in configure_from_args()
1009 value_t!(matches.value_of("measurement-time"), u64).unwrap_or_else(|e| { in configure_from_args()
1021 value_t!(matches.value_of("nresamples"), usize).unwrap_or_else(|e| { in configure_from_args()
1031 let num_noise_threshold = value_t!(matches.value_of("noise-threshold"), f64) in configure_from_args()
1042 let num_confidence_level = value_t!(matches.value_of("confidence-level"), f64) in configure_from_args()
1053 let num_significance_level = value_t!(matches.value_of("significance-level"), f64) in configure_from_args()