Home
last modified time | relevance | path

Searched refs:variant_path (Results 1 – 13 of 13) sorted by relevance

/external/cronet/components/cronet/tools/generators/c_templates/
Dmodule_impl_interface.h.tmpl8 {%- set variant_path = "%s-%s"|format(module.path, variant) -%}
10 {%- set variant_path = module.path -%}
14 variant_path|upper|replace("/","_")|replace(".","_")|
25 #include "{{variant_path}}_c.h"
Dmodule_impl_struct.h.tmpl8 {%- set variant_path = "%s-%s"|format(module.path, variant) -%}
10 {%- set variant_path = module.path -%}
14 variant_path|upper|replace("/","_")|replace(".","_")|
20 #include "{{variant_path}}_c.h"
Dmodule_impl_interface_unittest.cc.tmpl8 {%- set variant_path = "%s-%s"|format(module.path, variant) -%}
10 {%- set variant_path = module.path -%}
15 #include "{{variant_path}}_c.h"
Dmodule_impl_struct_unittest.cc.tmpl8 {%- set variant_path = "%s-%s"|format(module.path, variant) -%}
10 {%- set variant_path = module.path -%}
13 #include "{{variant_path}}_c.h"
Dmodule_impl_interface.cc.tmpl8 {%- set variant_path = "%s-%s"|format(module.path, variant) -%}
10 {%- set variant_path = module.path -%}
15 #include "{{variant_path}}_impl_interface.h"
Dmodule_impl_struct.cc.tmpl9 {%- set variant_path = "%s-%s"|format(module.path, variant) -%}
11 {%- set variant_path = module.path -%}
14 #include "{{variant_path}}_impl_struct.h"
Dmodule_c.h.tmpl8 {%- set variant_path = "%s-%s"|format(module.path, variant) -%}
10 {%- set variant_path = module.path -%}
14 variant_path|upper|replace("/","_")|replace(".","_")|
/external/rust/crates/protobuf-codegen/src/gen/field/
Daccessor.rs89 let variant_path = oneof.variant_path(&self.proto_field.message.scope.rust_path_to_file()); in accessor_fn_oneof_enum() localVariable
99 &format!("::std::option::Option::Some({}(e))", variant_path), in accessor_fn_oneof_enum()
119 oneof.oneof_field_name, variant_path in accessor_fn_oneof_enum()
Dmod.rs706 oneof_field.variant_path(&file_and_mod.relative_mod), in write_for_self_field()
804 oneof.variant_path(&self.proto_field.message.scope.rust_path_to_file()), in write_self_field_assign_default()
947 o.variant_path(&self.proto_field.message.scope.rust_path_to_file()), in write_merge_from_oneof_case_block()
1399 o.variant_path(&self.proto_field.message.scope.rust_path_to_file()), in write_message_field_get_oneof()
1482 oneof.variant_path( in write_message_field_has()
1535 oneof.variant_path(&self.proto_field.message.scope.rust_path_to_file()), in write_message_field_set()
1622 o.variant_path(&self.proto_field.message.scope.rust_path_to_file()) in write_message_field_mut()
1630 o.variant_path(&self.proto_field.message.scope.rust_path_to_file()), in write_message_field_mut()
1652 o.variant_path(&self.proto_field.message.scope.rust_path_to_file()) in write_message_field_mut()
1699 o.variant_path(&self.proto_field.message.scope.rust_path_to_file()) in write_message_field_take_oneof()
/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/
Dmodule.cc.tmpl6 {%- set variant_path = "%s-%s"|format(module.path, variant) -%}
8 {%- set variant_path = module.path -%}
21 #include "{{variant_path}}.h"
Dmodule.h.tmpl6 {%- set variant_path = "%s-%s"|format(module.path, variant) -%}
8 {%- set variant_path = module.path -%}
12 variant_path|upper|replace("/","_")|replace(".","_")|
/external/rust/crates/protobuf-codegen/2.27.1/src/field/
Dmod.rs583 fn variant_path(&self) -> String { in variant_path() method
1230 self.variant_path(), in write_self_field_assign_default()
1403 self.variant_path(), in write_merge_from_oneof()
1735 self.variant_path(), in write_message_field_get()
1797 format!("::std::option::Option::Some({}(..))", self.variant_path()), in write_message_field_has()
1829 self.variant_path(), in write_message_field_set()
1879 &format!("::std::option::Option::Some({}(_))", self.variant_path())[..], in write_message_field_mut()
1886 self.variant_path(), in write_message_field_mut()
1899 self.variant_path() in write_message_field_mut()
1922 format!("::std::option::Option::Some({}(v))", self.variant_path()), in write_message_field_take_oneof()
/external/rust/crates/protobuf-codegen/src/gen/
Doneof.rs103 pub fn variant_path(&self, reference: &RustRelativePath) -> RustIdentWithPath { in variant_path() method