Searched refs:range (Results 1 – 25 of 30) sorted by relevance
12
| /webrtc/constraints/src/capability/ |
| H A D | value_range.rs | 49 fn from(range: RangeInclusive<T>) -> Self { in from() 50 let (min, max) = range.into_inner(); in from() 59 fn from(range: RangeFrom<T>) -> Self { in from() 61 min: Some(range.start), in from() 68 fn from(range: RangeToInclusive<T>) -> Self { in from() 71 max: Some(range.end), in from()
|
| /webrtc/sdp/src/description/ |
| H A D | media.rs | 80 range: None, in new_jsep_media_description() 97 range: None, in new_jsep_media_description() 209 pub range: Option<isize>, field 214 if let Some(range) = self.range { in fmt() 215 write!(f, "{}/{}", self.value, range) in fmt()
|
| H A D | common.rs | 31 pub range: Option<isize>, field 40 if let Some(r) = &self.range { in fmt()
|
| H A D | description_test.rs | 69 range: None, in test_marshal() 128 range: None, in test_marshal() 140 range: None, in test_marshal() 156 range: None, in test_marshal()
|
| /webrtc/ice/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/data/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/dtls/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/media/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/sdp/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/sctp/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/stun/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/interceptor/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/rtp/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/srtp/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/rtcp/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/examples/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/util/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/turn/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/mdns/ |
| H A D | codecov.yml | 9 range: 50..90
|
| /webrtc/rtcp/src/transport_feedbacks/transport_layer_nack/ |
| H A D | transport_layer_nack_test.rs | 211 n.range(move |s: u16| -> bool { in test_nack_pair_range() 225 n.range(move |s: u16| -> bool { in test_nack_pair_range()
|
| /webrtc/media/src/io/sample_builder/ |
| H A D | sample_sequence_location_test.rs | 39 let reconstructed: Vec<_> = s.range(&data).map(|x| x.cloned()).collect(); in test_sample_sequence_location_range()
|
| H A D | sample_sequence_location.rs | 74 pub(crate) fn range<'a, T>(&self, data: &'a [Option<T>]) -> Iterator<'a, T> { in range() method
|
| /webrtc/sdp/src/util/ |
| H A D | util_test.rs | 14 range: None, in get_test_session_description()
|
| /webrtc/media/src/audio/ |
| H A D | buffer.rs | 81 pub fn sub_range(&'_ self, range: Range<usize>) -> BufferRef<'_, T, L> { in sub_range() 82 let samples_len = range.len(); in sub_range() 83 let samples = &self.samples[range]; in sub_range()
|
12