Lines Matching refs:entry
178 foreach (var entry in node.Children)
180 var childPath = path.Length == 0 ? entry.Key : path + "." + entry.Key;
181 GetFieldPaths(entry.Value, childPath, paths);
262 foreach (var entry in node.Children)
264 var field = descriptor.FindFieldByName(entry.Key);
267 Debug.WriteLine($"Cannot find field \"{entry.Key}\" in message type \"{descriptor.FullName}\"");
271 if (entry.Value.Children.Count != 0)
297 var childPath = path.Length == 0 ? entry.Key : path + "." + entry.Key;
298 Merge(entry.Value, childPath, (IMessage)sourceField, (IMessage)destinationField, options);