Home
last modified time | relevance | path

Searched refs:contains (Results 1 – 25 of 44) sorted by relevance

12

/webrtc/constraints/src/capability/
H A Dvalue_range.rs141 mod contains { module
148 assert!(subject.contains(&0)); in default()
149 assert!(subject.contains(&1)); in default()
150 assert!(subject.contains(&5)); in default()
151 assert!(subject.contains(&6)); in default()
159 assert!(subject.contains(&1)); in from_range_inclusive()
160 assert!(subject.contains(&5)); in from_range_inclusive()
169 assert!(subject.contains(&1)); in from_range_from()
170 assert!(subject.contains(&5)); in from_range_from()
171 assert!(subject.contains(&6)); in from_range_from()
[all …]
/webrtc/rtp/src/extension/abs_send_time_extension/
H A Dabs_send_time_extension_test.rs46 if !(-ABS_SEND_TIME_RESOLUTION..=ABS_SEND_TIME_RESOLUTION).contains(&diff) { in test_ntp_conversion()
60 if !(-ABS_SEND_TIME_RESOLUTION..=ABS_SEND_TIME_RESOLUTION).contains(&diff) { in test_ntp_conversion()
112 if !(-ABS_SEND_TIME_RESOLUTION..=ABS_SEND_TIME_RESOLUTION).contains(&diff) { in test_abs_send_time_extension_estimate()
/webrtc/constraints/src/algorithms/fitness_distance/
H A Dvalue_sequence_constraint.rs25 Some(actual) if exact.contains(actual) => {}
60 Some(actual) if ideal.contains(actual) => Ok(0.0),
96 Some(&actual) if exact.contains(&(actual as $c)) => {}
/webrtc/webrtc/src/rtp_transceiver/
H A Drtp_transceiver_test.rs202 answer.sdp.contains("a=rtpmap:51 VP8/90000"), in test_rtp_transceiver_set_codec_preferences_payload_type()
208 assert!(!answer.sdp.contains("test_codec")); in test_rtp_transceiver_set_codec_preferences_payload_type()
233 assert!(answer.sdp.contains("a=sendrecv"),); in test_rtp_transceiver_direction_change()
242 assert!(offer.sdp.contains("a=inactive"),); in test_rtp_transceiver_direction_change()
248 assert!(answer.sdp.contains("a=inactive"),); in test_rtp_transceiver_direction_change()
333 assert!(answer.sdp.contains("a=sendrecv"),); in test_rtp_transceiver_stopping()
345 assert!(offer.sdp.contains("a=inactive"),); in test_rtp_transceiver_stopping()
/webrtc/stun/src/
H A Duri.rs23 let host = if self.host.contains("::") { in fmt()
41 if raw.contains("//") { in parse_uri()
/webrtc/util/src/vnet/chunk/
H A Dchunk_test.rs32 assert!(s.contains(&src.to_string()), "should include address"); in test_chunk_udp()
33 assert!(s.contains(&dst.to_string()), "should include address"); in test_chunk_udp()
/webrtc/util/
H A Dbuild.rs4 .contains("android") in main()
/webrtc/webrtc/src/mux/
H A Dmux_func.rs52 (192..=223).contains(&rtcp_packet_type) in is_rtcp()
/webrtc/ice/src/control/
H A Dmod.rs96 if m.contains(ATTR_ICE_CONTROLLING) { in get_from()
100 if m.contains(ATTR_ICE_CONTROLLED) { in get_from()
/webrtc/examples/examples/play-from-disk-h264/
H A DREADME.md7 ### Create IVF named `output.264` that contains a H264 track and/or `output.ogg` that contains a Op…
/webrtc/ice/src/url/
H A Dmod.rs118 let host = if self.host.contains("::") { in fmt()
141 if raw.contains("//") { in parse_url()
/webrtc/examples/examples/play-from-disk-vpx/
H A DREADME.md7 …amed `output_vp8.ivf` or `output_vp9.ivf` that contains a VP8/VP9 track and/or `output.ogg` that c…
/webrtc/examples/examples/play-from-disk-renegotiation/
H A DREADME.md15 ### Create IVF named `output.ivf` that contains a VP8 track
/webrtc/sdp/src/extmap/
H A Dmod.rs79 if !(1..=246).contains(&value) { in unmarshal()
/webrtc/ice/
H A DCHANGELOG.md40 This release was released in error and contains no changes from 0.8.0.
/webrtc/examples/examples/insertable-streams/
H A DREADME.md12 ### Create IVF named `output.ivf` that contains a VP8 track
/webrtc/constraints/src/constraints/
H A Dconstraint_set.rs129 if supported_constraints.contains(&property) { in into_sanitized()
/webrtc/util/src/vnet/
H A Drouter.rs252 if !ipv4net.contains(&loc_ip) { in new()
491 if ipv4net.contains(&dst_ip) { in process_chunks()
543 if !self.ipv4net.contains(ip) { in add_nic()
H A Dnat.rs203 if !filters.contains(&filter_key) { in translate_outbound()
323 if !filters.contains(&filter_key) { in translate_inbound()
/webrtc/constraints/src/
H A Dsupported_constraints.rs197 assert!(subject.contains(&DEVICE_ID)); in deref_and_deref_mut()
/webrtc/webrtc/src/peer_connection/sdp/
H A Dmod.rs53 track_details.iter().find(|x| x.ssrcs.contains(&ssrc)) in track_details_for_ssrc()
60 track_details.iter().find(|x| x.rids.contains(&rid)) in track_details_for_rid()
64 incoming_tracks.retain(|x| !x.ssrcs.contains(&ssrc)); in filter_track_with_ssrc()
173 if t.ssrcs.contains(&ssrc) { in track_details_from_sdp()
/webrtc/turn/src/allocation/
H A Dallocation_manager.rs59 if five_tuples.is_none() || five_tuples.as_ref().unwrap().contains(five_tuple) { in get_allocations_info()
/webrtc/interceptor/src/report/receiver/
H A Dreceiver_stream.rs55 if !(-0x0FFF..=0).contains(&diff) { in process_rtp()
/webrtc/ice/src/agent/
H A Dagent_internal.rs728 is_use_candidate: m.contains(ATTR_USE_CANDIDATE), in send_binding_request()
846 if m.contains(ATTR_ICE_CONTROLLING) { in handle_inbound()
852 } else if m.contains(ATTR_USE_CANDIDATE) { in handle_inbound()
859 } else if m.contains(ATTR_ICE_CONTROLLED) { in handle_inbound()
/webrtc/stun/src/message/
H A Dmessage_test.rs610 assert!(m.contains(ATTR_SOFTWARE), "message should contain software"); in test_message_contains()
611 assert!(!m.contains(ATTR_NONCE), "message should not contain nonce"); in test_message_contains()

12