OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cities
(Results
1 - 5
of
5
) sorted by null
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/
Cities.java
26
public class
Cities
{
32
SharedPreferences prefs, HashMap<String, CityObj>
cities
) {
34
editor.putInt(NUMBER_OF_CITIES,
cities
.size());
35
Collection<CityObj> col =
cities
.values();
62
Log.d("
Cities
", "Selected
Cities
List " + title);
63
Log.d("
Cities
", "Number of
cities
" + size);
69
Log.d("
Cities
", "Name " + o.mCityName + " tz " + o.mTimeZone);
WorldClockAdapter.java
70
mCitiesList =
Cities
.readCitiesFromSharedPrefs(prefs).values().toArray();
77
// Read the
cities
DB so that the names and timezones will be taken from the DB
80
CityObj[]
cities
= Utils.loadCitiesFromXml(context);
local
81
if (
cities
!= null) {
82
for (int i = 0; i <
cities
.length; i ++) {
83
mCitiesDb.put(
cities
[i].mCityId,
cities
[i]);
91
* return the list of
cities
.
205
// Index in
cities
list
271
// Home city or city not in DB , use data from the save selected
cities
lis
[
all
...]
/external/chromium_org/chrome/browser/autofill/
autofill_interactive_uitest.cc
1012
std::vector<std::string>
cities
;
local
[
all
...]
/packages/apps/DeskClock/src/com/android/deskclock/
Utils.java
539
String[]
cities
= r.getStringArray(R.array.cities_names);
local
542
int minLength =
cities
.length;
543
if (
cities
.length != timezones.length || ids.length !=
cities
.length) {
544
minLength = Math.min(
cities
.length, Math.min(timezones.length, ids.length));
548
for (int i = 0; i <
cities
.length; i++) {
549
tempList[i] = new CityObj(
cities
[i], timezones[i], ids[i]);
ClockFragment.java
78
// reload the
cities
list with new localized names
131
mList = (ListView)v.findViewById(R.id.
cities
);
224
// Resume can invoked after changing the
cities
list or a change in locale
235
// Center the main clock frame if
cities
are empty.
Completed in 191 milliseconds