/external/rust/crates/protobuf-codegen/src/ |
D | message.rs | 2 use super::customize::customize_from_rustproto_for_message; 3 use super::customize::Customize; 32 pub fn default_instance(&self, customize: &Customize) -> String { in default_instance() 36 protobuf_crate_path(customize) in default_instance() 48 customize: Customize, field 55 customize: &Customize, in new() 57 let mut customize = customize.clone(); in new() localVariable 58 customize.update_with(&customize_from_rustproto_for_message( in new() 65 .map(|field| FieldGen::parse(field, root_scope, &customize)) in new() 67 let lite_runtime = customize.lite_runtime.unwrap_or_else(|| { in new() [all …]
|
D | rust_types_values.rs | 53 pub(crate) fn to_code(&self, customize: &Customize) -> String { in to_code() 59 RustType::Vec(ref param) => format!("::std::vec::Vec<{}>", param.to_code(customize)), in to_code() 62 key.to_code(customize), in to_code() 63 value.to_code(customize) in to_code() 66 RustType::Slice(ref param) => format!("[{}]", param.to_code(customize)), in to_code() 69 format!("::std::option::Option<{}>", param.to_code(customize)) in to_code() 73 protobuf_crate_path(customize), in to_code() 74 param.to_code(customize) in to_code() 78 protobuf_crate_path(customize), in to_code() 79 param.to_code(customize) in to_code() [all …]
|
D | lib.rs | 31 mod customize; module 54 use customize::customize_from_rustproto_for_file; 56 pub use customize::Customize; 98 customize: &Customize, in write_file_descriptor_data() 135 protobuf_crate_path(customize) in write_file_descriptor_data() 137 customize, in write_file_descriptor_data() 143 protobuf_crate_path(customize) in write_file_descriptor_data() 148 protobuf_crate_path(customize) in write_file_descriptor_data() 156 protobuf_crate_path(customize) in write_file_descriptor_data() 175 customize: &Customize, in gen_file() [all …]
|
D | enums.rs | 6 use super::customize::Customize; 59 customize: Customize, field 66 customize: &Customize, in new() 80 customize, in new() 84 let lite_runtime = customize.lite_runtime.unwrap_or_else(|| { in new() 97 customize: customize.clone(), in new() 175 &self.customize, in write_struct() 215 &format!("{}::ProtobufEnum", protobuf_crate_path(&self.customize)), in write_impl_enum() 259 protobuf_crate_path(&self.customize) in write_impl_enum() 266 protobuf_crate_path(&self.customize) in write_impl_enum() [all …]
|
D | extensions.rs | 14 customize: Customize, field 24 &self.customize, in extendee_rust_name() 45 &self.customize, in return_type_gen() 67 protobuf_crate_path(&self.customize), in write() 76 self.return_type_gen().rust_type(&self.customize), in write() 91 customize: &Customize, in write_extensions() 110 customize: customize.clone(), in write_extensions()
|
D | oneof.rs | 86 customize: Customize, field 95 customize: Customize, in parse() 103 oneof.type_name.to_code(&field.customize), in parse() 112 customize, in parse() 132 customize: Customize, field 139 customize: &Customize, in parse() 147 customize: customize.clone(), in parse() 170 self.customize.clone(), in variants_except_group() 186 &self.customize, in write_enum() 189 w.pub_enum(&self.type_name.to_code(&self.customize), |w| { in write_enum() [all …]
|
D | inside.rs | 5 pub(crate) fn protobuf_crate_path(customize: &Customize) -> &str { in protobuf_crate_path() 6 match customize.inside_protobuf { in protobuf_crate_path()
|
D | serde.rs | 5 pub fn write_serde_attr(w: &mut CodeWriter, customize: &Customize, attr: &str) { in write_serde_attr() 6 if customize.serde_derive.unwrap_or(false) { in write_serde_attr()
|
D | code_writer.rs | 107 pub fn lazy_static(&mut self, name: &str, ty: &str, customize: &Customize) { in lazy_static() 111 protobuf_crate_path(customize), in lazy_static() 113 protobuf_crate_path(customize), in lazy_static() 117 pub fn lazy_static_decl_get<F>(&mut self, name: &str, ty: &str, customize: &Customize, init: F) in lazy_static_decl_get() 121 self.lazy_static(name, ty, customize); in lazy_static_decl_get() 132 customize: &Customize, in lazy_static_decl_get_simple() 134 self.lazy_static(name, ty, customize); in lazy_static_decl_get_simple()
|
D | file_and_mod.rs | 8 pub customize: Customize, field
|
/external/rust/crates/protobuf-codegen/src/field/ |
D | mod.rs | 11 use super::customize::customize_from_rustproto_for_field; 12 use super::customize::Customize; 291 fn lib_protobuf_type(&self, customize: &Customize) -> String { in lib_protobuf_type() 292 self.protobuf_type_gen().rust_type(customize) in lib_protobuf_type() 307 customize: &Customize, in field_elem() 325 customize, in field_elem() 336 field_elem(&key, root_scope, false, customize).0, in field_elem() 337 field_elem(&value, root_scope, false, customize).0, in field_elem() 359 customize, in field_elem() 379 let carllerche_for_bytes = customize.carllerche_bytes_for_bytes.unwrap_or(false); in field_elem() [all …]
|
/external/python/cpython3/Lib/idlelib/ |
D | runscript.py | 110 return self.run_module_event(event, customize=True) 112 def run_module_event(self, event, *, customize=False): argument 134 if customize: 140 self.cli_args, restart = run_args if customize else ([], True)
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/ |
D | README.md | 41 construction. To customize this behavior, transports build 42 `ClientChannelFactory` objects, which customize construction arguments for
|
/external/grpc-grpc/src/core/ext/filters/client_channel/ |
D | README.md | 41 construction. To customize this behavior, resolvers build 42 grpc_client_channel_factory objects, which use the decorator pattern to customize
|
/external/webrtc/build_overrides/ |
D | README.md | 3 This directory is used to allow us to customize variables that differ between
|
/external/webrtc/modules/audio_processing/test/android/apmtest/ |
D | default.properties | 6 # To customize properties used by the Ant build system use,
|
/external/zxing/qr_scanner/ |
D | project.properties | 6 # To customize properties used by the Ant build system use,
|
/external/pigweed/pw_doctor/ |
D | docs.rst | 12 Projects that adjust the behavior of pw_env_setup may need to customize
|
/external/replicaisland/ |
D | default.properties | 6 # To customize properties used by the Ant build system use,
|
/external/slf4j/slf4j-android/ |
D | project.properties | 6 # To customize properties used by the Ant build system use,
|
/external/bcc/tools/ |
D | vfscount_example.txt | 26 You can edit the script to customize what kernel functions are matched.
|
/external/webrtc/sdk/android/instrumentationtests/ |
D | project.properties | 6 # To customize properties used by the Ant build system edit
|
/external/webrtc/examples/androidtests/ |
D | project.properties | 6 # To customize properties used by the Ant build system edit
|
/external/python/parse_type/ |
D | pytest.ini | 6 # * http://pytest.org/latest/customize.html
|
/external/webrtc/examples/androidapp/ |
D | project.properties | 6 # To customize properties used by the Ant build system edit
|