Home
last modified time | relevance | path

Searched refs:ct (Results 1 – 13 of 13) sorted by relevance

/webrtc/constraints/src/algorithms/fitness_distance/value_range_constraint/
H A Dtests.rs11 constraints: $ct:ty => $ce:expr,
19 constraints: $ct => $ce,
30 constraints: $ct:ty => $ce:expr $(,)?
40 constraints: $ct => $ce,
63 constraints: $ct => $ce,
74 constraints: $ct:ty => $ce:expr,
79 constraints: $ct => $ce,
87 constraints: $ct:ty => $ce:expr,
105 constraint: $ct:ty => $ce:expr,
114 constraint: $ct => $ce,
[all …]
/webrtc/constraints/src/algorithms/fitness_distance/value_sequence_constraint/
H A Dtests.rs11 constraints: $ct:ty => $ce:expr,
19 constraints: $ct => $ce,
30 constraints: $ct:ty => $ce:expr $(,)?
40 constraints: $ct => $ce,
63 constraints: $ct => $ce,
74 constraints: $ct:ty => $ce:expr,
79 constraints: $ct => $ce,
87 constraints: $ct:ty => $ce:expr,
105 constraint: $ct:ty => $ce:expr,
114 constraint: $ct => $ce,
[all …]
/webrtc/constraints/src/algorithms/fitness_distance/value_constraint/
H A Dtests.rs11 constraints: $ct:ty => $ce:expr,
19 constraints: $ct => $ce,
30 constraints: $ct:ty => $ce:expr $(,)?
40 constraints: $ct => $ce,
63 constraints: $ct => $ce,
74 constraints: $ct:ty => $ce:expr,
79 constraints: $ct => $ce,
87 constraints: $ct:ty => $ce:expr,
105 constraint: $ct:ty => $ce:expr,
114 constraint: $ct => $ce,
[all …]
/webrtc/stun/src/
H A Dclient.rs249 fn insert(&mut self, ct: ClientTransaction) -> Result<()> { in insert()
256 event_type: EventType::Insert(ct), in insert()
292 EventType::Insert(ct) => { in start()
293 if t.contains_key(&ct.id) { in start()
296 t.insert(ct.id, ct); in start()
302 let mut ct = if t.contains_key(&id) { in start() localVariable
319 ct.attempt += 1; in start()
321 let raw = ct.raw.clone(); in start()
323 let id = ct.id; in start()
326 t.insert(ct.id, ct); in start()
[all …]
/webrtc/sctp/src/param/
H A Dparam_supported_extensions.rs19 .map(|ct| ct.to_string()) in fmt()
50 for ct in &self.chunk_types { in marshal_to()
51 buf.put_u8(ct.0); in marshal_to()
H A Dparam_chunk_list.rs19 .map(|ct| ct.to_string()) in fmt()
54 for ct in &self.chunk_types { in marshal_to()
55 buf.put_u8(ct.0); in marshal_to()
H A Dparam_requested_hmac_algorithm.rs54 .map(|ct| ct.to_string()) in fmt()
/webrtc/constraints/src/algorithms/fitness_distance/value_range_constraint/tests/
H A Dempty.rs11 constraint: $ct:ty $(,)?
20 constraints: $ct => &[
21 ResolvedValueRangeConstraint::<$ct> {
/webrtc/webrtc/src/ice_transport/
H A Dice_credential_type.rs68 for (ct, expected_string) in tests { in test_ice_credential_type_string()
69 assert_eq!(ct.to_string(), expected_string); in test_ice_credential_type_string()
/webrtc/sctp/src/chunk/
H A Dchunk_type.rs81 for (ct, expected) in tests { in test_chunk_type_string()
83 ct.to_string(), in test_chunk_type_string()
H A Dchunk_test.rs31 for (ct, expected) in tests { in test_chunk_type_string()
33 ct.to_string(), in test_chunk_type_string()
/webrtc/ice/src/candidate/
H A Dmod.rs149 for ct in candidate_type_list { in contains_candidate_type()
150 if *ct == candidate_type { in contains_candidate_type()
/webrtc/sctp/src/
H A Dpacket.rs116 let ct = ChunkType(raw[offset]); in unmarshal() localVariable
117 let c: Box<dyn Chunk + Send + Sync> = match ct { in unmarshal()