Searched refs:ProtobufAbsolutePath (Results 1 – 8 of 8) sorted by relevance
/external/rust/crates/protobuf-codegen/src/ |
D | protobuf_name.rs | 80 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 …]
|
D | extensions.rs | 6 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()
|
D | scope.rs | 3 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
|
D | oneof.rs | 8 use protobuf_name::ProtobufAbsolutePath; 38 let message_name = ProtobufAbsolutePath::from(field.field.get_type_name()); in need_boxed()
|
D | enums.rs | 9 use protobuf_name::ProtobufAbsolutePath; 76 &ProtobufAbsolutePath::from(enum_with_scope.name_absolute()), in new()
|
D | rust_types_values.rs | 7 use protobuf_name::ProtobufAbsolutePath; 501 type_name: &ProtobufAbsolutePath, in type_name_to_rust_relative() argument
|
D | lib.rs | 71 pub use protobuf_name::ProtobufAbsolutePath;
|
/external/rust/crates/protobuf-codegen/src/field/ |
D | mod.rs | 18 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()
|