Lines Matching refs:module_path
792 module_path: Option<MaybeStaticStr<'a>>, field
849 pub fn module_path(&self) -> Option<&'a str> { in module_path() method
850 self.module_path.map(|s| s.get()) in module_path()
856 match self.module_path { in module_path_static()
901 module_path: self.module_path, in to_builder()
974 module_path: None, in new()
1013 pub fn module_path(&mut self, path: Option<&'a str>) -> &mut RecordBuilder<'a> { in module_path() method
1014 self.record.module_path = path.map(MaybeStaticStr::Borrowed); in module_path()
1021 self.record.module_path = path.map(MaybeStaticStr::Static); in module_path_static()
1458 &(target, module_path, file, line): &(&str, &'static str, &'static str, u32), in __private_api_log() argument
1465 .module_path_static(Some(module_path)) in __private_api_log()
1679 .module_path(Some("foo")) in test_record_builder()
1684 assert_eq!(record_test.module_path(), Some("foo")); in test_record_builder()
1698 .module_path(Some("foo")) in test_record_convenience_builder()
1703 assert_eq!(record_test.module_path(), Some("foo")); in test_record_convenience_builder()
1713 .module_path(Some("foo")) in test_record_complete_builder()
1721 assert_eq!(record_test.module_path(), Some("foo")); in test_record_complete_builder()