Lines Matching defs:entries
67 /// The order in which entries are returned when iterating over this object is undefined, and may change
238 /// Adds the specified entries to the map. The keys and values are not automatically cloned.
240 /// <param name="entries">The entries to add to the map.</param>
241 public void Add(IDictionary<TKey, TValue> entries)
243 ProtoPreconditions.CheckNotNull(entries, nameof(entries));
244 foreach (var pair in entries)
304 /// <param name="array">The array to copy the entries into.</param>
416 /// Adds entries to the map from the given stream.
420 /// This method will continue reading entries from the stream until the end is reached, or
439 /// Adds entries to the map from the given parse context.
443 /// This method will continue reading entries from the input until the end is reached, or
658 /// The tag used in the enclosing message to indicate map entries.