Lines Matching refs:vec
379 vec![capture_1(), capture_1_wifi(), capture_2(), capture_3(), capture_4_uwb()] in all_test_captures()
384 test_filter_captures_helper(vec!["test".to_string()], vec![]); in test_no_match()
389 test_filter_captures_helper(vec!["device".to_string()], all_test_captures()); in test_all_match()
394 test_filter_captures_helper(vec!["4001".to_string()], vec![capture_1()]); in test_match_capture_id()
395 test_filter_captures_helper(vec!["03".to_string()], vec![capture_2()]); in test_match_capture_id()
396 test_filter_captures_helper(vec!["40".to_string()], all_test_captures()); in test_match_capture_id()
402 vec!["device 1".to_string()], in test_match_device_name()
403 vec![capture_1(), capture_1_wifi()], in test_match_device_name()
405 test_filter_captures_helper(vec![" 2".to_string()], vec![capture_2()]); in test_match_device_name()
411 vec!["DEVICE 1".to_string()], in test_match_device_name_case_insensitive()
412 vec![capture_1(), capture_1_wifi()], in test_match_device_name_case_insensitive()
418 test_filter_captures_helper(vec!["wifi".to_string()], vec![capture_1_wifi(), capture_3()]); in test_match_wifi()
419 test_filter_captures_helper(vec!["WIFI".to_string()], vec![capture_1_wifi(), capture_3()]); in test_match_wifi()
424 test_filter_captures_helper(vec!["uwb".to_string()], vec![capture_4_uwb()]); in test_match_uwb()
425 test_filter_captures_helper(vec!["UWB".to_string()], vec![capture_4_uwb()]); in test_match_uwb()
430 test_filter_captures_helper(vec!["BLUETOOTH".to_string()], vec![capture_1(), capture_2()]); in test_match_bt()
431 test_filter_captures_helper(vec!["blue".to_string()], vec![capture_1(), capture_2()]); in test_match_bt()
437 vec!["device 1".to_string(), "wifi".to_string()], in test_match_name_and_chip()
438 vec![capture_1_wifi()], in test_match_name_and_chip()