Home | History | Annotate | Download | only in launcher2

Lines Matching refs:copy

6  * You may obtain a copy of the License at
82 // Copy constructor
83 public PendingAddWidgetInfo(PendingAddWidgetInfo copy) {
84 minWidth = copy.minWidth;
85 minHeight = copy.minHeight;
86 minResizeWidth = copy.minResizeWidth;
87 minResizeHeight = copy.minResizeHeight;
88 previewImage = copy.previewImage;
89 icon = copy.icon;
90 info = copy.info;
91 boundWidget = copy.boundWidget;
92 mimeType = copy.mimeType;
93 configurationData = copy.configurationData;
94 componentName = copy.componentName;
95 itemType = copy.itemType;
96 spanX = copy.spanX;
97 spanY = copy.spanY;
98 minSpanX = copy.minSpanX;
99 minSpanY = copy.minSpanY;
100 bindOptions = copy.bindOptions == null ? null : (Bundle) copy.bindOptions.clone();