Lines Matching refs:full_name
30 full_name: String, field
52 let mut full_name = package.to_owned(); in compute_full_name() localVariable
54 if full_name.len() != 0 { in compute_full_name()
55 full_name.push('.'); in compute_full_name()
57 full_name.push_str(path_to_package); in compute_full_name()
59 if full_name.len() != 0 { in compute_full_name()
60 full_name.push('.'); in compute_full_name()
62 full_name.push_str(proto.get_name()); in compute_full_name()
63 full_name in compute_full_name()
85 let mut full_name = file.get_package().to_string(); in new_non_generic_by_rust_name() localVariable
86 if full_name.len() > 0 { in new_non_generic_by_rust_name()
87 full_name.push('.'); in new_non_generic_by_rust_name()
89 full_name.push_str(proto.message.get_name()); in new_non_generic_by_rust_name()
116 full_name, in new_non_generic_by_rust_name()
149 let full_name = MessageDescriptor::compute_full_name( in new_non_generic_by_pb_name() localVariable
180 full_name, in new_non_generic_by_pb_name()
238 pub fn full_name(&self) -> &str { in full_name() method
239 &self.full_name[..] in full_name()