Home
last modified time | relevance | path

Searched +defs:val +defs:map (Results 1 – 25 of 1304) sorted by relevance

12345678910>>...53

/aosp_15_r20/external/protobuf/src/google/protobuf/
H A Dreflection_tester.cc891 std::map<int32_t, int32_t> map; in ExpectMapFieldsSetViaReflection() local
904 int32_t val = sub_message->GetReflection()->GetInt32( in ExpectMapFieldsSetViaReflection() local
919 std::map<int64_t, int64_t> map; in ExpectMapFieldsSetViaReflection() local
932 int64_t val = sub_message->GetReflection()->GetInt64( in ExpectMapFieldsSetViaReflection() local
947 std::map<uint32_t, uint32_t> map; in ExpectMapFieldsSetViaReflection() local
960 uint32_t val = sub_message->GetReflection()->GetUInt32( in ExpectMapFieldsSetViaReflection() local
975 std::map<uint64_t, uint64_t> map; in ExpectMapFieldsSetViaReflection() local
988 uint64_t val = sub_message->GetReflection()->GetUInt64( in ExpectMapFieldsSetViaReflection() local
1003 std::map<int32_t, int32_t> map; in ExpectMapFieldsSetViaReflection() local
1016 int32_t val = sub_message->GetReflection()->GetInt32( in ExpectMapFieldsSetViaReflection() local
[all …]
H A Dmap_field_inl.h197 const Map<Key, T>& map = impl_.GetMap(); in SetMapIteratorValue() local
210 const Map<Key, T>& map = impl_.GetMap(); in ContainsMapKey() local
221 MapValueRef* val) { in InsertOrLookupMapValue()
224 Map<Key, T>* map = MutableMap(); in InsertOrLookupMapValue() local
241 const MapKey& map_key, MapValueConstRef* val) const { in LookupMapValue()
242 const Map<Key, T>& map = GetMap(); in LookupMapValue() local
312 const Map<Key, T>& map = impl_.GetMap(); in SyncRepeatedFieldWithMapNoLock() local
340 Map<Key, T>* map = const_cast<MapField*>(this)->impl_.MutableMap(); in SyncMapWithRepeatedFieldNoLock() local
/aosp_15_r20/external/cronet/third_party/protobuf/src/google/protobuf/
H A Dreflection_tester.cc891 std::map<int32_t, int32_t> map; in ExpectMapFieldsSetViaReflection() local
904 int32_t val = sub_message->GetReflection()->GetInt32( in ExpectMapFieldsSetViaReflection() local
919 std::map<int64_t, int64_t> map; in ExpectMapFieldsSetViaReflection() local
932 int64_t val = sub_message->GetReflection()->GetInt64( in ExpectMapFieldsSetViaReflection() local
947 std::map<uint32_t, uint32_t> map; in ExpectMapFieldsSetViaReflection() local
960 uint32_t val = sub_message->GetReflection()->GetUInt32( in ExpectMapFieldsSetViaReflection() local
975 std::map<uint64_t, uint64_t> map; in ExpectMapFieldsSetViaReflection() local
988 uint64_t val = sub_message->GetReflection()->GetUInt64( in ExpectMapFieldsSetViaReflection() local
1003 std::map<int32_t, int32_t> map; in ExpectMapFieldsSetViaReflection() local
1016 int32_t val = sub_message->GetReflection()->GetInt32( in ExpectMapFieldsSetViaReflection() local
[all …]
H A Dmap_field_inl.h197 const Map<Key, T>& map = impl_.GetMap(); in SetMapIteratorValue() local
210 const Map<Key, T>& map = impl_.GetMap(); in ContainsMapKey() local
221 MapValueRef* val) { in InsertOrLookupMapValue()
224 Map<Key, T>* map = MutableMap(); in InsertOrLookupMapValue() local
241 const MapKey& map_key, MapValueConstRef* val) const { in LookupMapValue()
242 const Map<Key, T>& map = GetMap(); in LookupMapValue() local
312 const Map<Key, T>& map = impl_.GetMap(); in SyncRepeatedFieldWithMapNoLock() local
340 Map<Key, T>* map = const_cast<MapField*>(this)->impl_.MutableMap(); in SyncMapWithRepeatedFieldNoLock() local
/aosp_15_r20/libcore/ojluni/src/test/java/util/Map/
H A DInPlaceOpsCollisions.java49 public void testPutIfAbsent(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testPutIfAbsent() argument
50 Map<Object, Object> map = ms.get(); in testPutIfAbsent() local
80 public void testRemoveMapping(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testRemoveMapping() argument
81 Map<Object, Object> map = ms.get(); in testRemoveMapping() local
114 public void testReplaceOldValue(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testReplaceOldValue() argument
118 Map<Object, Object> map = ms.get(); in testReplaceOldValue() local
146 public void testReplaceIfMapped(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testReplaceIfMapped() argument
150 Map<Object, Object> map = ms.get(); in testReplaceIfMapped() local
186 private static <T> void testComputeIfAbsent(Map<T, T> map, String desc, T[] keys, in testComputeIfAbsent() argument
231 …public void testComputeIfAbsentNonNull(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testComputeIfAbsentNonNull() argument
[all …]
H A DCollisions.java49 public void testIntegerIteration(String desc, Supplier<Map<IntKey, IntKey>> ms, IntKey val) { in testIntegerIteration() argument
50 Map<IntKey, IntKey> map = ms.get(); in testIntegerIteration() local
80 public void testStringIteration(String desc, Supplier<Map<String, String>> ms, String val) { in testStringIteration() argument
81 Map<String, String> map = ms.get(); in testStringIteration() local
116 public void testRemove(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testRemove() argument
117 Map<Object, Object> map = ms.get(); in testRemove() local
131 public void testKeysIteratorRemove(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testKeysIteratorRemove() argument
132 Map<Object, Object> map = ms.get(); in testKeysIteratorRemove() local
146 … public void testValuesIteratorRemove(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testValuesIteratorRemove() argument
147 Map<Object, Object> map = ms.get(); in testValuesIteratorRemove() local
[all …]
/aosp_15_r20/frameworks/base/libs/androidfw/tests/
H A DGeneric_bench.cpp28 Map map; in prepare_map() local
37 auto map = prepare_map<>(); in BM_hashmap_emplace_same() local
38 auto val = map.size() - 1; in BM_hashmap_emplace_same() local
46 auto map = prepare_map(); in BM_hashmap_try_emplace_same() local
47 auto val = map.size() - 1; in BM_hashmap_try_emplace_same() local
54 auto map = prepare_map<>(); in BM_hashmap_find() local
55 auto val = map.size() - 1; in BM_hashmap_find() local
63 auto map = prepare_map<>(); in BM_hashmap_emplace_diff() local
72 auto map = prepare_map(); in BM_hashmap_try_emplace_diff() local
80 auto map = prepare_map<>(); in BM_hashmap_find_emplace_diff() local
[all …]
/aosp_15_r20/external/grpc-grpc/third_party/upb/upb/message/
H A Dmap.c38 size_t upb_Map_Size(const upb_Map* map) { return _upb_Map_Size(map); } in upb_Map_Size()
40 bool upb_Map_Get(const upb_Map* map, upb_MessageValue key, in upb_Map_Get()
41 upb_MessageValue* val) { in upb_Map_Get()
45 void upb_Map_Clear(upb_Map* map) { _upb_Map_Clear(map); } in upb_Map_Clear()
47 upb_MapInsertStatus upb_Map_Insert(upb_Map* map, upb_MessageValue key, in upb_Map_Insert()
48 upb_MessageValue val, upb_Arena* arena) { in upb_Map_Insert()
54 bool upb_Map_Delete(upb_Map* map, upb_MessageValue key, upb_MessageValue* val) { in upb_Map_Delete()
61 bool upb_Map_Next(const upb_Map* map, upb_MessageValue* key, in upb_Map_Next()
62 upb_MessageValue* val, size_t* iter) { in upb_Map_Next()
73 UPB_API void upb_Map_SetEntryValue(upb_Map* map, size_t iter, in upb_Map_SetEntryValue()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/upb/upb/collections/
Dmap.c58 size_t upb_Map_Size(const upb_Map* map) { return _upb_Map_Size(map); } in upb_Map_Size()
60 bool upb_Map_Get(const upb_Map* map, upb_MessageValue key, in upb_Map_Get()
61 upb_MessageValue* val) { in upb_Map_Get()
65 void upb_Map_Clear(upb_Map* map) { _upb_Map_Clear(map); } in upb_Map_Clear()
67 upb_MapInsertStatus upb_Map_Insert(upb_Map* map, upb_MessageValue key, in upb_Map_Insert()
68 upb_MessageValue val, upb_Arena* arena) { in upb_Map_Insert()
74 bool upb_Map_Delete(upb_Map* map, upb_MessageValue key, upb_MessageValue* val) { in upb_Map_Delete()
81 bool upb_Map_Next(const upb_Map* map, upb_MessageValue* key, in upb_Map_Next()
82 upb_MessageValue* val, size_t* iter) { in upb_Map_Next()
93 bool upb_MapIterator_Next(const upb_Map* map, size_t* iter) { in upb_MapIterator_Next()
[all …]
Dmap_internal.h78 UPB_INLINE bool _upb_map_tovalue(const void* val, size_t size, in _upb_map_tovalue()
91 UPB_INLINE void _upb_map_fromvalue(upb_value val, void* out, size_t size) { in _upb_map_fromvalue()
100 UPB_INLINE void* _upb_map_next(const upb_Map* map, size_t* iter) { in _upb_map_next()
110 UPB_INLINE void _upb_Map_Clear(upb_Map* map) { in _upb_Map_Clear()
114 UPB_INLINE bool _upb_Map_Delete(upb_Map* map, const void* key, size_t key_size, in _upb_Map_Delete()
115 upb_value* val) { in _upb_Map_Delete()
120 UPB_INLINE bool _upb_Map_Get(const upb_Map* map, const void* key, in _upb_Map_Get()
121 size_t key_size, void* val, size_t val_size) { in _upb_Map_Get()
131 UPB_INLINE upb_MapInsertStatus _upb_Map_Insert(upb_Map* map, const void* key, in _upb_Map_Insert()
132 size_t key_size, void* val, in _upb_Map_Insert()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/ext/upb-generated/xds/data/orca/v3/
Dorca_load_report.upb.h113 const upb_Map* map = upb_Message_GetMap(msg, &field); in xds_data_orca_v3_OrcaLoadReport_request_cost_size() local
116 …ort_request_cost_get(const xds_data_orca_v3_OrcaLoadReport* msg, upb_StringView key, double* val) { in xds_data_orca_v3_OrcaLoadReport_request_cost_get()
118 const upb_Map* map = upb_Message_GetMap(msg, &field); in xds_data_orca_v3_OrcaLoadReport_request_cost_get() local
124 const upb_Map* map = upb_Message_GetMap(msg, &field); in xds_data_orca_v3_OrcaLoadReport_request_cost_next() local
134 const upb_Map* map = upb_Message_GetMap(msg, &field); in xds_data_orca_v3_OrcaLoadReport_utilization_size() local
137 …port_utilization_get(const xds_data_orca_v3_OrcaLoadReport* msg, upb_StringView key, double* val) { in xds_data_orca_v3_OrcaLoadReport_utilization_get()
139 const upb_Map* map = upb_Message_GetMap(msg, &field); in xds_data_orca_v3_OrcaLoadReport_utilization_get() local
145 const upb_Map* map = upb_Message_GetMap(msg, &field); in xds_data_orca_v3_OrcaLoadReport_utilization_next() local
177 const upb_Map* map = upb_Message_GetMap(msg, &field); in xds_data_orca_v3_OrcaLoadReport_named_metrics_size() local
180 …rt_named_metrics_get(const xds_data_orca_v3_OrcaLoadReport* msg, upb_StringView key, double* val) { in xds_data_orca_v3_OrcaLoadReport_named_metrics_get()
[all …]
/aosp_15_r20/external/grpc-grpc/third_party/upb/upb/message/internal/
H A Dmap.h67 UPB_INLINE bool _upb_map_tovalue(const void* val, size_t size, in _upb_map_tovalue()
80 UPB_INLINE void _upb_map_fromvalue(upb_value val, void* out, size_t size) { in _upb_map_fromvalue()
89 UPB_INLINE void* _upb_map_next(const struct upb_Map* map, size_t* iter) { in _upb_map_next()
99 UPB_INLINE void _upb_Map_Clear(struct upb_Map* map) { in _upb_Map_Clear()
103 UPB_INLINE bool _upb_Map_Delete(struct upb_Map* map, const void* key, in _upb_Map_Delete()
104 size_t key_size, upb_value* val) { in _upb_Map_Delete()
109 UPB_INLINE bool _upb_Map_Get(const struct upb_Map* map, const void* key, in _upb_Map_Get()
110 size_t key_size, void* val, size_t val_size) { in _upb_Map_Get()
120 UPB_INLINE upb_MapInsertStatus _upb_Map_Insert(struct upb_Map* map, in _upb_Map_Insert()
122 void* val, size_t val_size, in _upb_Map_Insert()
[all …]
/aosp_15_r20/external/grpc-grpc/src/core/ext/upb-gen/xds/data/orca/v3/
H A Dorca_load_report.upb.h109 const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_data_orca_v3_OrcaLoadReport_request_cost_size() local
112 …ort_request_cost_get(const xds_data_orca_v3_OrcaLoadReport* msg, upb_StringView key, double* val) { in xds_data_orca_v3_OrcaLoadReport_request_cost_get()
114 const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_data_orca_v3_OrcaLoadReport_request_cost_get() local
120 const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_data_orca_v3_OrcaLoadReport_request_cost_next() local
138 const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_data_orca_v3_OrcaLoadReport_utilization_size() local
141 …port_utilization_get(const xds_data_orca_v3_OrcaLoadReport* msg, upb_StringView key, double* val) { in xds_data_orca_v3_OrcaLoadReport_utilization_get()
143 const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_data_orca_v3_OrcaLoadReport_utilization_get() local
149 const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_data_orca_v3_OrcaLoadReport_utilization_next() local
191 const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_data_orca_v3_OrcaLoadReport_named_metrics_size() local
194 …rt_named_metrics_get(const xds_data_orca_v3_OrcaLoadReport* msg, upb_StringView key, double* val) { in xds_data_orca_v3_OrcaLoadReport_named_metrics_get()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/upb/python/
Dmap.c50 upb_Map* map; // reified: the data for this array. member
88 const upb_FieldDef* val = in PyUpb_MapContainer_GetClass() local
101 PyUpb_MapContainer* map = (void*)PyType_GenericAlloc(cls, 0); in PyUpb_MapContainer_NewStub() local
111 void PyUpb_MapContainer_Reify(PyObject* _self, upb_Map* map) { in PyUpb_MapContainer_Reify()
137 upb_Map* map = PyUpb_MapContainer_GetIfReified(self); in PyUpb_MapContainer_EnsureReified() local
153 bool PyUpb_MapContainer_Set(PyUpb_MapContainer* self, upb_Map* map, in PyUpb_MapContainer_Set()
154 upb_MessageValue key, upb_MessageValue val, in PyUpb_MapContainer_Set()
170 PyObject* val) { in PyUpb_MapContainer_AssignSubscript()
172 upb_Map* map = PyUpb_MapContainer_EnsureReified(_self); in PyUpb_MapContainer_AssignSubscript() local
195 upb_Map* map = PyUpb_MapContainer_GetIfReified(self); in PyUpb_MapContainer_Subscript() local
[all …]
Dprotobuf.c126 PyUpb_WeakMap* map = upb_Arena_Malloc(arena, sizeof(*map)); in PyUpb_WeakMap_New() local
132 void PyUpb_WeakMap_Free(PyUpb_WeakMap* map) { upb_Arena_Free(map->arena); } in PyUpb_WeakMap_Free()
144 void PyUpb_WeakMap_Add(PyUpb_WeakMap* map, const void* key, PyObject* py_obj) { in PyUpb_WeakMap_Add()
149 void PyUpb_WeakMap_Delete(PyUpb_WeakMap* map, const void* key) { in PyUpb_WeakMap_Delete()
150 upb_value val; in PyUpb_WeakMap_Delete() local
157 void PyUpb_WeakMap_TryDelete(PyUpb_WeakMap* map, const void* key) { in PyUpb_WeakMap_TryDelete()
161 PyObject* PyUpb_WeakMap_Get(PyUpb_WeakMap* map, const void* key) { in PyUpb_WeakMap_Get()
162 upb_value val; in PyUpb_WeakMap_Get() local
172 bool PyUpb_WeakMap_Next(PyUpb_WeakMap* map, const void** key, PyObject** obj, in PyUpb_WeakMap_Next()
175 upb_value val; in PyUpb_WeakMap_Next() local
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/libbpf-rs/tests/
Dtest.rs346 let map = MapHandle::create(MapType::Hash, Some("simple_map"), 8, 64, 1024, &opts).unwrap(); in test_map_info() localVariable
371 let map = get_map_mut(&mut obj, "percpu_map"); in test_object_percpu_lookup() localVariable
390 let map = get_map_mut(&mut obj, "percpu_map"); in test_object_percpu_invalid_lookup_fn() localVariable
401 let map = get_map_mut(&mut obj, "percpu_map"); in test_object_percpu_update() localVariable
426 let map = get_map_mut(&mut obj, "percpu_map"); in test_object_percpu_invalid_update_fn() localVariable
429 let val = (1_u32).to_ne_bytes().to_vec(); in test_object_percpu_invalid_update_fn() localVariable
440 let map = get_map_mut(&mut obj, "percpu_map"); in test_object_percpu_lookup_update() localVariable
498 let mut val = queue in test_object_map_queue_crud() localVariable
552 let val = bloom_filter in test_object_map_bloom_filter_crud() localVariable
596 let mut val = stack in test_object_map_stack_crud() localVariable
[all …]
/aosp_15_r20/external/cronet/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dmap.c51 const upb_Map* map; // Can convert to mutable when non-frozen. member
87 VALUE Map_GetRubyWrapper(upb_Map* map, upb_CType key_type, TypeInfo value_type, in Map_GetRubyWrapper()
91 VALUE val = ObjectCache_Get(map); in Map_GetRubyWrapper() local
113 upb_Map* map = upb_Map_New(Arena_get(arena_rb), from->key_type, in Map_new_this_type() local
133 VALUE Map_CreateHash(const upb_Map* map, upb_CType key_type, in Map_CreateHash()
143 upb_MessageValue val = upb_MapIterator_Value(map, iter); in Map_CreateHash() local
161 upb_MessageValue val = upb_MapIterator_Value(self->map, iter); in Map_deep_copy() local
171 const upb_Map* Map_GetUpbMap(VALUE val, const upb_FieldDef* field, in Map_GetUpbMap()
198 void Map_Inspect(StringBuilder* b, const upb_Map* map, upb_CType key_type, in Map_Inspect()
207 upb_MessageValue val = upb_MapIterator_Value(map, iter); in Map_Inspect() local
[all …]
/aosp_15_r20/external/protobuf/ruby/ext/google/protobuf_c/
H A Dmap.c51 const upb_Map* map; // Can convert to mutable when non-frozen. member
87 VALUE Map_GetRubyWrapper(upb_Map* map, upb_CType key_type, TypeInfo value_type, in Map_GetRubyWrapper()
91 VALUE val = ObjectCache_Get(map); in Map_GetRubyWrapper() local
113 upb_Map* map = upb_Map_New(Arena_get(arena_rb), from->key_type, in Map_new_this_type() local
133 VALUE Map_CreateHash(const upb_Map* map, upb_CType key_type, in Map_CreateHash()
143 upb_MessageValue val = upb_MapIterator_Value(map, iter); in Map_CreateHash() local
161 upb_MessageValue val = upb_MapIterator_Value(self->map, iter); in Map_deep_copy() local
171 const upb_Map* Map_GetUpbMap(VALUE val, const upb_FieldDef* field, in Map_GetUpbMap()
198 void Map_Inspect(StringBuilder* b, const upb_Map* map, upb_CType key_type, in Map_Inspect()
207 upb_MessageValue val = upb_MapIterator_Value(map, iter); in Map_Inspect() local
[all …]
/aosp_15_r20/prebuilts/module_sdk/art/current/test-exports/java/
Djsr166-tests.jar ... synthetic java.util.concurrent.atomic.AtomicBoolean val$done final synthetic jsr166.AbstractExecutorServiceTest this$0 ...
/aosp_15_r20/prebuilts/module_sdk/art/1/test-exports/java/
Djsr166-tests.jar ... synthetic java.util.concurrent.atomic.AtomicBoolean val$done final synthetic jsr166.AbstractExecutorServiceTest this$0 ...
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/bpf/progs/
H A Dfor_each_array_map_elem.c29 unused_subprog(struct bpf_map *map, __u32 *key, __u64 *val, in unused_subprog()
37 check_array_elem(struct bpf_map *map, __u32 *key, __u64 *val, in check_array_elem()
50 check_percpu_elem(struct bpf_map *map, __u32 *key, __u64 *val, in check_percpu_elem()
/aosp_15_r20/system/libcppbor/tests/
H A Dcppbor_test.cpp65 Uint val(testCase.first); in TEST() local
448 Map map; in TEST() local
474 Uint val(100000); in TEST() local
480 Tstr val("01234567890123456789012345"s); in TEST() local
489 Bstr val("01234567890123456789012345"s); in TEST() local
498 Array val("a", 5, -100); in TEST() local
505 Map map; in TEST() local
524 Uint val(99); in TEST() local
539 Nint val(-1); in TEST() local
554 Tstr val("99"); in TEST() local
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/ext/upb-generated/xds/core/v3/
Dcontext_params.upb.h76 const upb_Map* map = upb_Message_GetMap(msg, &field); in xds_core_v3_ContextParams_params_size() local
79 …tParams_params_get(const xds_core_v3_ContextParams* msg, upb_StringView key, upb_StringView* val) { in xds_core_v3_ContextParams_params_get()
81 const upb_Map* map = upb_Message_GetMap(msg, &field); in xds_core_v3_ContextParams_params_get() local
87 const upb_Map* map = upb_Message_GetMap(msg, &field); in xds_core_v3_ContextParams_params_next() local
94 upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field); in xds_core_v3_ContextParams_params_clear() local
98 …ams_params_set(xds_core_v3_ContextParams* msg, upb_StringView key, upb_StringView val, upb_Arena* … in xds_core_v3_ContextParams_params_set()
100 upb_Map* map = _upb_Message_GetOrCreateMutableMap(msg, &field, 0, 0, a); in xds_core_v3_ContextParams_params_set() local
106 upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field); in xds_core_v3_ContextParams_params_delete() local
112 upb_Map* map = (upb_Map*)upb_Message_GetMap(msg, &field); in xds_core_v3_ContextParams_params_nextmutable() local
/aosp_15_r20/frameworks/base/core/java/com/android/internal/util/
H A DCollectionUtils.java121 public static @NonNull <I, O> List<O> map(@Nullable List<I> cur, in map() method in CollectionUtils
135 public static @NonNull <I, O> Set<O> map(@Nullable Set<I> cur, in map() method in CollectionUtils
320 public static @NonNull <T> List<T> add(@Nullable List<T> cur, T val) { in add()
332 public static @NonNull <T> List<T> add(@Nullable List<T> cur, int index, T val) { in add()
344 public static @NonNull <T> Set<T> addAll(@Nullable Set<T> cur, @Nullable Collection<T> val) { in addAll()
358 public static @NonNull <T> Set<T> add(@Nullable Set<T> cur, T val) { in add()
369 public static @NonNull <K, V> Map<K, V> add(@Nullable Map<K, V> map, K key, V value) { in add()
381 public static @NonNull <T> List<T> remove(@Nullable List<T> cur, T val) { in remove()
392 public static @NonNull <T> Set<T> remove(@Nullable Set<T> cur, T val) { in remove()
/aosp_15_r20/external/grpc-grpc/src/core/ext/upb-gen/xds/core/v3/
H A Dcontext_params.upb.h71 const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_core_v3_ContextParams_params_size() local
74 …tParams_params_get(const xds_core_v3_ContextParams* msg, upb_StringView key, upb_StringView* val) { in xds_core_v3_ContextParams_params_get()
76 const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_core_v3_ContextParams_params_get() local
82 const upb_Map* map = upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_core_v3_ContextParams_params_next() local
97 upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_core_v3_ContextParams_params_clear() local
101 …ams_params_set(xds_core_v3_ContextParams* msg, upb_StringView key, upb_StringView val, upb_Arena* … in xds_core_v3_ContextParams_params_set()
103 upb_Map* map = _upb_Message_GetOrCreateMutableMap(UPB_UPCAST(msg), in xds_core_v3_ContextParams_params_set() local
110 upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_core_v3_ContextParams_params_delete() local
116 upb_Map* map = (upb_Map*)upb_Message_GetMap(UPB_UPCAST(msg), &field); in xds_core_v3_ContextParams_params_nextmutable() local

12345678910>>...53