Home
last modified time | relevance | path

Searched refs:ProtobufAbsolutePath (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/protobuf-codegen/src/
Dprotobuf_name.rs80 pub fn into_absolute(self) -> ProtobufAbsolutePath { in into_absolute() argument
82 ProtobufAbsolutePath::root() in into_absolute()
84 ProtobufAbsolutePath::from(format!(".{}", self)) in into_absolute()
236 pub struct ProtobufAbsolutePath { struct
241 impl ProtobufAbsolutePath { implementation
242 fn root() -> ProtobufAbsolutePath { in root()
243 ProtobufAbsolutePath::new(String::new()) in root()
247 pub fn new(path: String) -> ProtobufAbsolutePath { in new() argument
250 ProtobufAbsolutePath { path } in new()
261 pub fn from_path_without_dot(path: &str) -> ProtobufAbsolutePath { in from_path_without_dot() argument
[all …]
Dscope.rs10 use crate::protobuf_name::ProtobufAbsolutePath;
33 pub fn _find_enum(&'a self, fqn: &ProtobufAbsolutePath) -> EnumWithScope<'a> { in _find_enum()
41 pub fn find_message(&'a self, fqn: &ProtobufAbsolutePath) -> MessageWithScope<'a> { in find_message()
51 fqn: &ProtobufAbsolutePath, in find_message_or_enum() argument
68 fn get_package(&self) -> ProtobufAbsolutePath { in get_package() argument
95 name: &ProtobufAbsolutePath, in find_message_or_enum_abs() argument
246 pub fn protobuf_absolute_path(&self) -> ProtobufAbsolutePath { in protobuf_absolute_path() argument
282 fn name_absolute(&self) -> ProtobufAbsolutePath { in name_absolute() argument
Dextensions.rs4 use protobuf_name::ProtobufAbsolutePath;
21 &ProtobufAbsolutePath::from(self.field.get_extendee()), in extendee_rust_name()
42 &ProtobufAbsolutePath::from(self.field.get_type_name()), in return_type_gen()
Doneof.rs10 use protobuf_name::ProtobufAbsolutePath;
39 let message_name = ProtobufAbsolutePath::from(field.field.get_type_name()); in need_boxed()
Denums.rs6 use protobuf_name::ProtobufAbsolutePath;
77 &ProtobufAbsolutePath::from(enum_with_scope.name_absolute()), in new()
Drust_types_values.rs6 use protobuf_name::ProtobufAbsolutePath;
502 type_name: &ProtobufAbsolutePath, in type_name_to_rust_relative() argument
Dlib.rs125 pub use protobuf_name::ProtobufAbsolutePath;
/external/rust/crates/protobuf-codegen/src/field/
Dmod.rs12 use protobuf_name::ProtobufAbsolutePath;
312 .find_message_or_enum(&ProtobufAbsolutePath::from(field.field.get_type_name())); in field_elem()
320 &ProtobufAbsolutePath::from(field.field.get_type_name()), in field_elem()