Home | History | Annotate | Download | only in weatherlistwidget

Lines Matching defs:sData

65     private static final ArrayList<WeatherDataPoint> sData = new ArrayList<WeatherDataPoint>();
70 sData.add(new WeatherDataPoint("Monday", 13));
71 sData.add(new WeatherDataPoint("Tuesday", 1));
72 sData.add(new WeatherDataPoint("Wednesday", 7));
73 sData.add(new WeatherDataPoint("Thursday", 4));
74 sData.add(new WeatherDataPoint("Friday", 22));
75 sData.add(new WeatherDataPoint("Saturday", -10));
76 sData.add(new WeatherDataPoint("Sunday", -13));
77 sData.add(new WeatherDataPoint("Monday", 8));
78 sData.add(new WeatherDataPoint("Tuesday", 11));
79 sData.add(new WeatherDataPoint("Wednesday", -1));
80 sData.add(new WeatherDataPoint("Thursday", 27));
81 sData.add(new WeatherDataPoint("Friday", 27));
82 sData.add(new WeatherDataPoint("Saturday", 27));
83 sData.add(new WeatherDataPoint("Sunday", 27));
96 for (int i = 0; i < sData.size(); ++i) {
97 final WeatherDataPoint data = sData.get(i);
130 assert(0 <= index && index < sData.size());
131 final WeatherDataPoint data = sData.get(index);