/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Struct.cs | 47 …typeof(global::Google.Protobuf.WellKnownTypes.ListValue), global::Google.Protobuf.WellKnownTypes.L… in StructReflection() 297 case KindOneofCase.ListValue: in Value() 298 ListValue = other.ListValue.Clone(); in Value() 386 public global::Google.Protobuf.WellKnownTypes.ListValue ListValue { property in Google.Protobuf.WellKnownTypes.Value 387 …get { return kindCase_ == KindOneofCase.ListValue ? (global::Google.Protobuf.WellKnownTypes.ListVa… 390 kindCase_ = value == null ? KindOneofCase.None : KindOneofCase.ListValue; 403 ListValue = 6, enumerator 435 if (!object.Equals(ListValue, other.ListValue)) return false; in Equals() 448 if (kindCase_ == KindOneofCase.ListValue) hash ^= ListValue.GetHashCode(); in GetHashCode() 486 if (kindCase_ == KindOneofCase.ListValue) { in WriteTo() [all …]
|
D | ValuePartial.cs | 85 return new Value { ListValue = new ListValue { Values = { values } } }; in ForList()
|
/third_party/protobuf/src/google/protobuf/ |
D | struct.pb.h | 62 class ListValue; variable 76 …<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::ListValue* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_… 501 const PROTOBUF_NAMESPACE_ID::ListValue& list_value() const; 502 PROTOBUF_NAMESPACE_ID::ListValue* release_list_value(); 503 PROTOBUF_NAMESPACE_ID::ListValue* mutable_list_value(); 504 void set_allocated_list_value(PROTOBUF_NAMESPACE_ID::ListValue* list_value); 506 const PROTOBUF_NAMESPACE_ID::ListValue& _internal_list_value() const; 507 PROTOBUF_NAMESPACE_ID::ListValue* _internal_mutable_list_value(); 510 PROTOBUF_NAMESPACE_ID::ListValue* list_value); 511 PROTOBUF_NAMESPACE_ID::ListValue* unsafe_arena_release_list_value(); [all …]
|
D | struct.pb.cc | 35 const PROTOBUF_NAMESPACE_ID::ListValue* list_value_; 39 ::PROTOBUF_NAMESPACE_ID::internal::ExplicitlyConstructed<ListValue> _instance; 61 new (ptr) PROTOBUF_NAMESPACE_ID::ListValue(); in InitDefaultsscc_info_ListValue_google_2fprotobuf_2fstruct_2eproto() 67 PROTOBUF_NAMESPACE_ID::ListValue::InitAsDefaultInstance(); in InitDefaultsscc_info_ListValue_google_2fprotobuf_2fstruct_2eproto() 106 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::ListValue, _internal_metadata_), 110 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::ListValue, values_), 116 { 27, -1, sizeof(PROTOBUF_NAMESPACE_ID::ListValue)}, 440 …AMESPACE_ID::_Value_default_instance_.list_value_ = const_cast< PROTOBUF_NAMESPACE_ID::ListValue*>( in InitAsDefaultInstance() 441 PROTOBUF_NAMESPACE_ID::ListValue::internal_default_instance()); in InitAsDefaultInstance() 446 static const PROTOBUF_NAMESPACE_ID::ListValue& list_value(const Value* msg); [all …]
|
D | struct.proto | 76 ListValue list_value = 6; 89 // `ListValue` is a wrapper around a repeated field of values. 91 // The JSON representation for `ListValue` is JSON array. 92 message ListValue { message
|
/third_party/gn/src/base/ |
D | values.cc | 66 return CopyListWithoutEmptyChildren(static_cast<const ListValue&>(node)); in CopyWithoutEmptyChildren() 473 bool Value::GetAsList(ListValue** out_value) { in GetAsList() 475 *out_value = static_cast<ListValue*>(this); in GetAsList() 481 bool Value::GetAsList(const ListValue** out_value) const { in GetAsList() 483 *out_value = static_cast<const ListValue*>(this); in GetAsList() 730 ListValue* DictionaryValue::SetList(std::string_view path, in SetList() 731 std::unique_ptr<ListValue> in_value) { in SetList() 732 return static_cast<ListValue*>(Set(path, std::move(in_value))); in SetList() 862 const ListValue** out_value) const { in GetList() 869 *out_value = static_cast<const ListValue*>(value); in GetList() [all …]
|
D | values.h | 41 class ListValue; variable 313 bool GetAsList(ListValue** out_value); 314 bool GetAsList(const ListValue** out_value) const; 424 ListValue* SetList(std::string_view path, 425 std::unique_ptr<ListValue> in_value); 470 bool GetList(std::string_view path, const ListValue** out_value) const; 472 bool GetList(std::string_view path, ListValue** out_value); 502 const ListValue** out_value) const; 504 bool GetListWithoutPathExpansion(std::string_view key, ListValue** out_value); 580 class ListValue : public Value { [all …]
|
/third_party/node/tools/inspector_protocol/lib/ |
D | Array_h.template | 29 protocol::ListValue* array = ListValue::cast(value); 62 std::unique_ptr<protocol::ListValue> toValue() 64 std::unique_ptr<protocol::ListValue> result = ListValue::create(); 84 protocol::ListValue* array = ListValue::cast(value); 117 std::unique_ptr<protocol::ListValue> toValue() 119 std::unique_ptr<protocol::ListValue> result = ListValue::create();
|
D | Values_h.template | 17 class ListValue; 69 friend class ListValue; 209 void setArray(const String& name, std::unique_ptr<ListValue>); 217 ListValue* getArray(const String& name) const; 245 class {{config.lib.export_macro}} ListValue : public Value { 247 static std::unique_ptr<ListValue> create() 249 return std::unique_ptr<ListValue>(new ListValue()); 252 static ListValue* cast(Value* value) 256 return static_cast<ListValue*>(value); 259 static std::unique_ptr<ListValue> cast(std::unique_ptr<Value> value) [all …]
|
D | Values_cpp.template | 98 std::unique_ptr<ListValue> parseArray(int32_t stack_depth, cbor::CBORTokenizer* tokenizer); 104 std::unique_ptr<ListValue> parseArray(int32_t stack_depth, cbor::CBORTokenizer* tokenizer) { 107 auto list = ListValue::create(); 515 void DictionaryValue::setArray(const String& name, std::unique_ptr<ListValue> value) 557 protocol::ListValue* DictionaryValue::getArray(const String& name) const 559 return ListValue::cast(get(name)); 650 ListValue::~ListValue() 654 void ListValue::writeJSON(StringBuilder* output) const 667 void ListValue::writeBinary(std::vector<uint8_t>* bytes) const { 678 std::unique_ptr<Value> ListValue::clone() const [all …]
|
D | base_string_adapter_cc.template | 50 const base::ListValue* list = nullptr; 52 std::unique_ptr<protocol::ListValue> result = protocol::ListValue::create(); 106 ListValue* list = ListValue::cast(value); 107 std::unique_ptr<base::ListValue> result(new base::ListValue());
|
D | ValueConversions_h.template | 176 struct ValueConversions<ListValue> { 177 static std::unique_ptr<ListValue> fromValue(protocol::Value* value, ErrorSupport* errors) 182 return ListValue::cast(value->clone()); 185 static std::unique_ptr<protocol::Value> toValue(ListValue* value) 190 static std::unique_ptr<protocol::Value> toValue(const std::unique_ptr<ListValue>& value)
|
/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
D | ValuesTest.java | 35 import com.google.protobuf.ListValue; 76 ListValue.Builder builder = ListValue.newBuilder(); in testOfListValue_ConstructsInstance() 85 ListValue.Builder builder = ListValue.newBuilder(); in testOfIterable_ReturnsTheValue() 100 .isEqualTo(Value.newBuilder().setListValue(ListValue.getDefaultInstance()).build()); in testOfIterable_ReturnsTheValue()
|
/third_party/gn/src/gn/ |
D | desc_builder.cc | 135 auto res = std::make_unique<base::ListValue>(); in RenderValue() 167 base::ListValue res; in ToBaseValue() 202 void FillInConfigVector(base::ListValue* out, in FillInConfigVector() 251 auto configs = std::make_unique<base::ListValue>(); in BuildDescription() 303 auto res = std::make_unique<base::ListValue>(); in render_config_value_array() 383 auto labels = std::make_unique<base::ListValue>(); in BuildDescription() 427 auto configs = std::make_unique<base::ListValue>(); in BuildDescription() 433 auto configs = std::make_unique<base::ListValue>(); in BuildDescription() 441 auto configs = std::make_unique<base::ListValue>(); in BuildDescription() 455 auto args = std::make_unique<base::ListValue>(); in BuildDescription() [all …]
|
D | commands.cc | 206 base::ListValue* out) { in PrintTargetsAsBuildfiles() 218 base::ListValue* out) { in PrintTargetsAsLabels() 235 base::ListValue* out) { in PrintTargetsAsOutputs() 606 base::ListValue* out) { in FilterAndPrintTargets() 633 base::ListValue tmp; in FilterAndPrintTargets() 650 void FilterAndPrintTargetSet(const TargetSet& targets, base::ListValue* out) { in FilterAndPrintTargetSet()
|
/third_party/cef/libcef/common/ |
D | values_impl.cc | 40 base::ListValue* list_value = static_cast<base::ListValue*>(value); in GetOrCreateRefOrCopy() 106 static_cast<base::ListValue*>(new_value), new_parent_value, false, in SwapValue() 357 list_value_ = new CefListValueImpl(static_cast<base::ListValue*>(value), in SetValueInternal() 859 base::ListValue* list_value = in GetList() 860 static_cast<base::ListValue*>(const_cast<base::Value*>(value)); in GetList() 1001 return new CefListValueImpl(new base::ListValue(), true, false); in Create() 1006 base::ListValue* value, in GetOrCreateRef() 1018 CefListValueImpl::CefListValueImpl(base::ListValue* value, in CefListValueImpl() 1021 : CefValueBase<CefListValue, base::ListValue>( in CefListValueImpl() 1028 base::ListValue* CefListValueImpl::CopyValue() { in CopyValue() [all …]
|
D | process_message_impl.h | 12 class ListValue; variable 25 base::ListValue arguments, 37 base::ListValue TakeArgumentList() WARN_UNUSED_RESULT;
|
D | values_impl.h | 268 class CefListValueImpl : public CefValueBase<CefListValue, base::ListValue> { 271 static CefRefPtr<CefListValue> GetOrCreateRef(base::ListValue* value, 282 CefListValueImpl(base::ListValue* value, bool will_delete, bool read_only); 288 base::ListValue* CopyValue() WARN_UNUSED_RESULT; 292 base::ListValue* CopyOrDetachValue(CefValueController* new_controller) 295 bool IsSameValue(const base::ListValue* that); 296 bool IsEqualValue(const base::ListValue* that); 300 base::ListValue* GetValueUnsafe(); 335 CefListValueImpl(base::ListValue* value,
|
D | process_message_impl.cc | 27 base::ListValue arguments, in CefProcessMessageImpl() 32 auto new_obj = std::make_unique<base::ListValue>(); in CefProcessMessageImpl() 40 base::ListValue CefProcessMessageImpl::TakeArgumentList() { in TakeArgumentList()
|
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/ |
D | encodable_value_unittests.cc | 158 EncodableList& list_value = value.ListValue(); in TEST() 167 EXPECT_EQ(value.ListValue()[3].BoolValue(), true); in TEST() 212 EXPECT_EQ(EncodableValue(EncodableValue::Type::kList).ListValue().size(), 0u); in TEST() 308 EXPECT_EQ(value.ListValue()[0].MapValue()[EncodableValue("two")].IntValue(), in TEST() 310 EXPECT_EQ(value.ListValue()[1] in TEST() 311 .ListValue()[2] in TEST() 318 encodables[1].ListValue()[2].MapValue()[EncodableValue("a")] = 99; in TEST() 321 EXPECT_EQ(value.ListValue()[0].MapValue()[EncodableValue("two")].IntValue(), in TEST() 323 EXPECT_EQ(value.ListValue()[1] in TEST() 324 .ListValue()[2] in TEST()
|
/third_party/protobuf/src/google/protobuf/util/internal/testdata/ |
D | struct.proto | 66 google.protobuf.ListValue top_level_listvalue = 29; 67 google.protobuf.ListValue top_level_empty_listvalue = 30; 68 google.protobuf.ListValue top_level_listvalue_with_empty_struct = 31; 92 google.protobuf.ListValue shopping_list = 1; 96 repeated google.protobuf.ListValue dimensions = 1; 102 map<string, google.protobuf.ListValue> listvalue_map = 3;
|
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
D | Values.java | 33 import com.google.protobuf.ListValue; 69 public static Value of(ListValue value) { in of() 79 ListValue.Builder listValue = valueBuilder.getListValueBuilder(); in of()
|
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/testing/ |
D | encodable_value_utils.cc | 40 const auto& a_list = a.ListValue(); in EncodableValuesAreEqual() 41 const auto& b_list = b.ListValue(); in EncodableValuesAreEqual()
|
/third_party/cef/patch/patches/ |
D | chrome_browser_net_export.patch | 77 @@ -235,6 +247,13 @@ void NetExportMessageHandler::OnStartNetLog(const base::ListValue* list) { 91 @@ -251,6 +270,7 @@ void NetExportMessageHandler::OnStopNetLog(const base::ListValue* list) { 99 @@ -260,6 +280,7 @@ void NetExportMessageHandler::OnStopNetLog(const base::ListValue* list) {
|
/third_party/mindspore/third_party/proto/tensorflow/ |
D | attr_value.proto | 20 message ListValue { message 40 ListValue list = 1; // any "list(...)"
|