Searched refs:to_code (Results 1 – 11 of 11) sorted by relevance
/external/rust/crates/protobuf-codegen/src/ |
D | rust_types_values.rs | 53 pub(crate) fn to_code(&self, customize: &Customize) -> String { in to_code() method 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() 74 param.to_code(customize) in to_code() 79 param.to_code(customize) in to_code() 84 param.to_code(customize) in to_code() 86 RustType::Uniq(ref param) => format!("::std::boxed::Box<{}>", param.to_code(customize)), in to_code() [all …]
|
D | oneof.rs | 103 oneof.type_name.to_code(&field.customize), in parse() 189 w.pub_enum(&self.type_name.to_code(&self.customize), |w| { in write_enum() 194 &variant.rust_type().to_code(&self.customize) in write_enum()
|
D | message.rs | 534 &field.full_storage_type().to_code(&self.customize), in write_struct() 549 &oneof.full_storage_type().to_code(&self.customize), in write_struct()
|
/external/libfuse/lib/modules/ |
D | iconv.c | 26 char *to_code; member 588 free(ic->to_code); in iconv_destroy() 635 { "to_code=%s", offsetof(struct iconv, to_code), 1 }, 689 to = ic->to_code ? ic->to_code : ""; in iconv_new() 723 free(ic->to_code); in iconv_new()
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.autograph.pbtxt | 12 name: "to_code"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.autograph.pbtxt | 12 name: "to_code"
|
/external/tensorflow/tensorflow/python/autograph/ |
D | __init__.py | 44 from tensorflow.python.autograph.impl.api import to_code
|
/external/rust/crates/protobuf-codegen/src/field/ |
D | mod.rs | 588 self.oneof().oneof_type_name.to_code(&self.customize), in variant_path() 898 t if t.is_primitive() => t.to_code(&self.customize), in accessor_fn() 1162 oneof_type_name.to_code(&self.customize), in write_for_self_field() 1721 get_xxx_return_type.to_code(&self.customize) in write_message_field_get() 1815 set_xxx_param_type.to_code(&self.customize) in write_message_field_set() 1848 param.to_code(&self.customize) in write_message_field_mut() 1852 mut_xxx_return_type.to_code(&self.customize) in write_message_field_mut() 1949 take_xxx_return_type.to_code(&self.customize) in write_message_field_take()
|
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/ |
D | generated_code.md | 68 `tf.autograph.to_code` is a shortcut to obtain the generated code, and it's
|
/external/tensorflow/tensorflow/python/autograph/impl/ |
D | api.py | 919 return to_code( 926 def to_code(entity, recursive=True, experimental_optional_features=None): function
|
D | api_test.py | 1105 self.assertIsNotNone(parser.parse(api.to_code(test_fn))) 1116 api.to_code(test_fn)
|