Home
last modified time | relevance | path

Searched refs:AddField (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
Dprotocol_core.h78 void AddField(span<char> field_name, const T& value) {
86 void AddField(span<char> field_name, const detail::ValueMaybe<T>& value) {
89 AddField(field_name, value.fromJust());
92 void AddField(span<char> field_name, const detail::PtrMaybe<T>& value) {
95 AddField(field_name, *value.fromJust());
111 void AddField(span<char> name, const T& field) {
112 serializer_.AddField(name, field);
397 __serializer.AddField(MakeSpan(name), field)
/third_party/protobuf/src/google/protobuf/
Ddescriptor_unittest.cc108 FieldDescriptorProto* AddField(DescriptorProto* parent, const std::string& name, in AddField() function
669 AddField(message, "foo", 1, FieldDescriptorProto::LABEL_REQUIRED, in SetUp()
671 AddField(message, "bar", 6, FieldDescriptorProto::LABEL_OPTIONAL, in SetUp()
674 AddField(message, "baz", 500000000, FieldDescriptorProto::LABEL_REPEATED, in SetUp()
677 AddField(message, "qux", 15, FieldDescriptorProto::LABEL_OPTIONAL, in SetUp()
686 AddField(message2, "foo", 1, FieldDescriptorProto::LABEL_REQUIRED, in SetUp()
688 AddField(message2, "bar", 2, FieldDescriptorProto::LABEL_REQUIRED, in SetUp()
690 AddField(message2, "quux", 6, FieldDescriptorProto::LABEL_REQUIRED, in SetUp()
698 AddField(entry, "key", 1, FieldDescriptorProto::LABEL_OPTIONAL, in SetUp()
700 AddField(entry, "value", 2, FieldDescriptorProto::LABEL_OPTIONAL, in SetUp()
[all …]
Dgenerated_message_table_driven_lite.h92 inline Type* AddField(MessageLite* msg, int64 offset) { in AddField() function
102 inline std::string* AddField<std::string>(MessageLite* msg, int64 offset) {
110 inline void AddField(MessageLite* msg, int64 offset, Type value) { in AddField() function
113 *AddField<Type>(msg, offset) = value; in AddField()
237 s = AddField<InlinedStringField>(msg, offset); in HandleString()
265 std::string* value = AddField<std::string>(msg, offset); in HandleString()
320 AddField(msg, offset, value); in HandleEnum()
Dunknown_field_set.h147 void AddField(const UnknownField& field);
Dunknown_field_set.cc176 void UnknownFieldSet::AddField(const UnknownField& field) { in AddField() function in google::protobuf::UnknownFieldSet
Dmessage.h1090 inline void AddField(Message* message, const FieldDescriptor* field,
1093 inline Type* AddField(Message* message, const FieldDescriptor* field) const;
Dgenerated_message_reflection.cc1171 AddField<TYPE>(message, field, value); \
1321 AddField<std::string>(message, field)->assign(std::move(value)); in AddString()
1473 AddField<int>(message, field, value); in AddEnumValueInternal()
2233 void Reflection::AddField(Message* message, const FieldDescriptor* field, in AddField() function in google::protobuf::Reflection
2239 Type* Reflection::AddField(Message* message, in AddField() function in google::protobuf::Reflection
/third_party/node/deps/v8/src/compiler/
Dcsa-load-elimination.cc190 CsaLoadElimination::HalfState const* CsaLoadElimination::HalfState::AddField( in AddField() function in v8::internal::compiler::CsaLoadElimination::HalfState
365 half_state = half_state->AddField(object, offset, node, representation); in ReduceLoadFromObject()
391 mutable_state = mutable_state->AddField(object, offset, value, repr); in ReduceStoreToObject()
401 state->immutable_state.AddField(object, offset, value, repr); in ReduceStoreToObject()
Dload-elimination.cc551 LoadElimination::AbstractState const* LoadElimination::AbstractState::AddField( in AddField() function in v8::internal::compiler::LoadElimination::AbstractState
807 state = state->AddField( in ReduceEnsureWritableFastElements()
835 state = state->AddField( in ReduceMaybeGrowFastElements()
960 state = state->AddField(object, field_index, info, zone()); in ReduceLoadField()
1038 state = state->AddField(object, field_index, new_info, zone()); in ReduceStoreField()
1044 state = state->AddField(object, field_index, new_info, zone()); in ReduceStoreField()
Dcsa-load-elimination.h87 HalfState const* AddField(Node* object, Node* offset, Node* value, in NON_EXPORTED_BASE()
Dload-elimination.h243 AbstractState const* AddField(Node* object, IndexRange index, in NON_EXPORTED_BASE()
/third_party/node/deps/v8/third_party/inspector_protocol/templates/
DTypeBuilder_cpp.template130 …serializer.AddField({{config.crdtp.namespace}}::MakeSpan("{{parameter.name}}"), {{parameter.name}}…
227 …serializer.AddField({{config.crdtp.namespace}}::MakeSpan("{{parameter.name}}"), {{parameter.name}}…
322 …serializer.AddField({{config.crdtp.namespace}}::MakeSpan("{{parameter.name}}"), out_{{parameter.na…
/third_party/node/deps/v8/src/wasm/
Dstruct-types.h96 void AddField(ValueType type, bool mutability) { in AddField() function
Dcanonical-types.cc126 builder.AddField(CanonicalizeValueType(module, original_type->field(i), in CanonicalizeTypeDef()