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 { argument
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 …]
Dextensions.rs6 use protobuf_name::ProtobufAbsolutePath;
20 &ProtobufAbsolutePath::from(self.field.get_extendee()), in extendee_rust_name()
41 &ProtobufAbsolutePath::from(self.field.get_type_name()), in return_type_gen()
Dscope.rs3 use crate::protobuf_name::ProtobufAbsolutePath;
32 pub fn _find_enum(&'a self, fqn: &ProtobufAbsolutePath) -> EnumWithScope<'a> { in _find_enum()
40 pub fn find_message(&'a self, fqn: &ProtobufAbsolutePath) -> MessageWithScope<'a> { in find_message()
50 fqn: &ProtobufAbsolutePath, in find_message_or_enum() argument
67 fn get_package(&self) -> ProtobufAbsolutePath { in get_package() argument
94 name: &ProtobufAbsolutePath, in find_message_or_enum_abs() argument
245 pub fn protobuf_absolute_path(&self) -> ProtobufAbsolutePath { in protobuf_absolute_path() argument
281 fn name_absolute(&self) -> ProtobufAbsolutePath { in name_absolute() argument
Doneof.rs8 use protobuf_name::ProtobufAbsolutePath;
38 let message_name = ProtobufAbsolutePath::from(field.field.get_type_name()); in need_boxed()
Denums.rs9 use protobuf_name::ProtobufAbsolutePath;
76 &ProtobufAbsolutePath::from(enum_with_scope.name_absolute()), in new()
Drust_types_values.rs7 use protobuf_name::ProtobufAbsolutePath;
501 type_name: &ProtobufAbsolutePath, in type_name_to_rust_relative() argument
Dlib.rs71 pub use protobuf_name::ProtobufAbsolutePath;
/external/rust/crates/protobuf-codegen/src/field/
Dmod.rs18 use protobuf_name::ProtobufAbsolutePath;
313 .find_message_or_enum(&ProtobufAbsolutePath::from(field.field.get_type_name())); in field_elem()
321 &ProtobufAbsolutePath::from(field.field.get_type_name()), in field_elem()