Home
last modified time | relevance | path

Searched refs:begin_field (Results 1 – 25 of 34) sorted by relevance

12

/dports/devel/caf/actor-framework-0.18.5/libcaf_core/caf/
H A Dinspector_access_base.hpp20 if (f.begin_field(field_name) && f.apply(x)) { in load_field()
44 if (!f.begin_field(field_name, is_present)) in load_field()
69 return f.begin_field(field_name) // in save_field()
80 return f.begin_field(field_name, true) // in save_field()
84 return f.begin_field(field_name, false) && f.end_field(); in save_field()
H A Dserializer.hpp61 virtual bool begin_field(string_view) = 0;
63 virtual bool begin_field(string_view name, bool is_present) = 0;
66 begin_field(string_view name, span<const type_id_t> types, size_t index)
69 virtual bool begin_field(string_view name, bool is_present,
H A Ddeserializer.hpp84 virtual bool begin_field(string_view name) = 0;
86 virtual bool begin_field(string_view, bool& is_present) = 0;
89 begin_field(string_view name, span<const type_id_t> types, size_t& index)
92 virtual bool begin_field(string_view name, bool& is_present,
H A Dconfig_value_writer.hpp61 bool begin_field(string_view) override;
63 bool begin_field(string_view name, bool is_present) override;
65 bool begin_field(string_view name, span<const type_id_t> types,
68 bool begin_field(string_view name, bool is_present,
H A Dbinary_serializer.hpp95 constexpr bool begin_field(string_view) noexcept { in begin_field() function in caf::binary_serializer
99 bool begin_field(string_view, bool is_present);
101 bool begin_field(string_view, span<const type_id_t> types, size_t index);
103 bool begin_field(string_view, bool is_present, span<const type_id_t> types,
H A Dconfig_value_reader.hpp97 bool begin_field(string_view) override;
99 bool begin_field(string_view name, bool& is_present) override;
101 bool begin_field(string_view name, span<const type_id_t> types,
104 bool begin_field(string_view name, bool& is_present,
H A Dbinary_deserializer.hpp110 constexpr bool begin_field(string_view) noexcept { in begin_field() function in caf::binary_deserializer
114 bool begin_field(string_view name, bool& is_present) noexcept;
116 bool begin_field(string_view name, span<const type_id_t> types,
119 bool begin_field(string_view name, bool& is_present,
H A Djson_reader.hpp144 bool begin_field(string_view) override;
146 bool begin_field(string_view name, bool& is_present) override;
148 bool begin_field(string_view name, span<const type_id_t> types,
151 bool begin_field(string_view name, bool& is_present,
H A Djson_writer.hpp118 bool begin_field(string_view) override;
120 bool begin_field(string_view name, bool is_present) override;
122 bool begin_field(string_view name, span<const type_id_t> types,
125 bool begin_field(string_view name, bool is_present,
/dports/devel/caf/actor-framework-0.18.5/libcaf_core/src/detail/
H A Dserialized_size.cpp23 bool serialized_size_inspector::begin_field(string_view, bool) { in begin_field() function in caf::detail::serialized_size_inspector
35 bool serialized_size_inspector::begin_field(string_view) { in begin_field() function in caf::detail::serialized_size_inspector
39 bool serialized_size_inspector::begin_field(string_view, in begin_field() function in caf::detail::serialized_size_inspector
54 bool serialized_size_inspector::begin_field(string_view name, bool, in begin_field() function in caf::detail::serialized_size_inspector
57 return begin_field(name, types, index); in begin_field()
H A Dstringification_inspector.cpp33 bool stringification_inspector::begin_field(string_view) { in begin_field() function in caf::detail::stringification_inspector
37 bool stringification_inspector::begin_field(string_view, bool is_present) { in begin_field() function in caf::detail::stringification_inspector
46 bool stringification_inspector::begin_field(string_view, span<const type_id_t>, in begin_field() function in caf::detail::stringification_inspector
51 bool stringification_inspector::begin_field(string_view, bool is_present, in begin_field() function in caf::detail::stringification_inspector
/dports/devel/caf/actor-framework-0.18.5/libcaf_core/caf/detail/
H A Dserialized_size.hpp25 bool begin_field(string_view) override;
27 bool begin_field(string_view, bool is_present) override;
29 bool begin_field(string_view, span<const type_id_t> types,
32 bool begin_field(string_view, bool is_present, span<const type_id_t> types,
H A Dstringification_inspector.hpp51 bool begin_field(string_view);
53 bool begin_field(string_view name, bool is_present);
55 bool begin_field(string_view name, span<const type_id_t>, size_t);
57 bool begin_field(string_view name, bool, span<const type_id_t>, size_t);
/dports/devel/caf/actor-framework-0.18.5/libcaf_core/caf/hash/
H A Dfnv.hpp50 bool begin_field(string_view) { in begin_field() function in caf::hash::fnv
54 bool begin_field(string_view, bool is_present) { in begin_field() function in caf::hash::fnv
58 bool begin_field(string_view, span<const type_id_t>, size_t index) { in begin_field() function in caf::hash::fnv
62 bool begin_field(string_view, bool is_present, span<const type_id_t>, in begin_field() function in caf::hash::fnv
H A Dsha1.hpp46 bool begin_field(string_view) { in begin_field() function in caf::hash::sha1
50 bool begin_field(string_view, bool is_present) { in begin_field() function in caf::hash::sha1
54 bool begin_field(string_view, span<const type_id_t>, size_t index) { in begin_field() function in caf::hash::sha1
58 bool begin_field(string_view, bool is_present, span<const type_id_t>, in begin_field() function in caf::hash::sha1
/dports/devel/caf/actor-framework-0.18.5/libcaf_core/src/
H A Dtracing_data.cpp31 && sink.begin_field("value", false) // in serialize_impl()
36 && sink.begin_field("value", true) // in serialize_impl()
46 || !source.begin_field("value", is_present)) in deserialize_impl()
H A Dmessage.cpp49 GUARDED(source.begin_field("types")); in load_data()
59 && source.begin_field("values") // in load_data()
90 GUARDED(source.begin_field("values")); in load_data()
229 && sink.begin_field("types") // in save_data()
233 && sink.begin_field("values") // in save_data()
242 GUARDED(sink.begin_field("types") && sink.begin_sequence(type_ids.size())); in save_data()
248 GUARDED(sink.begin_field("values") && sink.begin_tuple(type_ids.size())); in save_data()
H A Djson_writer.cpp113 bool json_writer::begin_field(string_view name) { in begin_field() function in caf::json_writer
127 bool json_writer::begin_field(string_view name, bool is_present) { in begin_field() function in caf::json_writer
158 bool json_writer::begin_field(string_view name, span<const type_id_t> types, in begin_field() function in caf::json_writer
181 return end_key_value_pair() && begin_field(name); in begin_field()
187 bool json_writer::begin_field(string_view name, bool is_present, in begin_field() function in caf::json_writer
190 return begin_field(name, types, index); in begin_field()
192 return begin_field(name, is_present); in begin_field()
H A Dconfig_value_writer.cpp107 bool config_value_writer::begin_field(string_view name) { in begin_field() function in caf::config_value_writer
113 bool config_value_writer::begin_field(string_view name, bool is_present) { in begin_field() function in caf::config_value_writer
122 bool config_value_writer::begin_field(string_view name, in begin_field() function in caf::config_value_writer
142 bool config_value_writer::begin_field(string_view name, bool is_present, in begin_field() function in caf::config_value_writer
146 return begin_field(name, types, index); in begin_field()
148 return begin_field(name, false); in begin_field()
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot-sam460ex/tools/bddb/
H A Ddefs.php224 function begin_field($name, $span = 0) { function
255 begin_field($name);
275 begin_field($name);
296 begin_field($name);
324 begin_field($name);
363 begin_field($base, $span);
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/u-boot-sam460ex/tools/bddb/
H A Ddefs.php224 function begin_field($name, $span = 0) { function
255 begin_field($name);
275 begin_field($name);
296 begin_field($name);
324 begin_field($name);
363 begin_field($base, $span);
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/u-boot-sam460ex/tools/bddb/
H A Ddefs.php224 function begin_field($name, $span = 0) { function
255 begin_field($name);
275 begin_field($name);
296 begin_field($name);
324 begin_field($name);
363 begin_field($base, $span);
/dports/emulators/qemu42/qemu-4.2.1/roms/u-boot-sam460ex/tools/bddb/
H A Ddefs.php224 function begin_field($name, $span = 0) { function
255 begin_field($name);
275 begin_field($name);
296 begin_field($name);
324 begin_field($name);
363 begin_field($base, $span);
/dports/emulators/qemu-utils/qemu-4.2.1/roms/u-boot-sam460ex/tools/bddb/
H A Ddefs.php224 function begin_field($name, $span = 0) { function
255 begin_field($name);
275 begin_field($name);
296 begin_field($name);
324 begin_field($name);
363 begin_field($base, $span);
/dports/emulators/qemu/qemu-6.2.0/roms/u-boot-sam460ex/tools/bddb/
H A Ddefs.php224 function begin_field($name, $span = 0) { function
255 begin_field($name);
275 begin_field($name);
296 begin_field($name);
324 begin_field($name);
363 begin_field($base, $span);

12