HomeSort by relevance Sort by last modified time
    Searched defs:city (Results 1 - 11 of 11) sorted by null

  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherDataProvider.java 39 String city; field in class:WeatherDataPoint
43 city = c;
56 public static final String CITY = "city";
92 new String[]{ Columns.ID, Columns.CITY, Columns.TEMPERATURE });
95 c.addRow(new Object[]{ new Integer(i), data.city, new Integer(data.degrees) });
126 new String[]{ Columns.ID, Columns.CITY, Columns.TEMPERATURE });
WeatherWidgetService.java 73 String city = "Unknown City"; local
76 final int cityColIndex = mCursor.getColumnIndex(WeatherDataProvider.Columns.CITY);
79 city = mCursor.getString(cityColIndex);
83 // Return a proper item with the proper city and temperature. Just for fun, we alternate
89 rv.setTextViewText(R.id.widget_item, String.format(formatStr, temp, city));
94 extras.putString(WeatherWidgetProvider.EXTRA_CITY_ID, city);
WeatherWidgetProvider.java 67 public static String EXTRA_CITY_ID = "com.example.android.weatherlistwidget.city";
135 final String city = intent.getStringExtra(EXTRA_CITY_ID); local
137 Toast.makeText(ctx, String.format(formatStr, city), Toast.LENGTH_SHORT).show();
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PostalSplitter.java 36 public String city; field in class:PostalSplitter.Postal
45 city = values.getAsString(StructuredPostal.CITY);
55 values.put(StructuredPostal.CITY, city);
86 postal.street, postal.pobox, postal.neighborhood, postal.city,
103 final boolean hasCity = !TextUtils.isEmpty(postal.city);
109 // Second block: [region][ ][city][ ][neighborhood]
137 builder.append(postal.city);
169 final boolean hasCity = !TextUtils.isEmpty(postal.city);
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
system_settings_provider.cc 158 icu::UnicodeString city; local
161 city = icu::ures_getUnicodeStringByKey(zone_item.get(), "ec", &status);
163 return string16(city.getBuffer(), city.length());
269 // the population of a country the city belongs to.).
272 // In the meantime, we use "LONG" name with "Exemplar City" to distinguish
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
WebAutofill.cpp 236 const string16& addressLine1, const string16& addressLine2, const string16& city,
249 mAutofillProfile->SetInfo(AutofillFieldType(ADDRESS_HOME_CITY), city); local
  /packages/apps/Browser/src/com/android/browser/
AutofillHandler.java 113 String city = c.getString(c.getColumnIndex( local
114 AutoFillProfileDatabase.Profiles.CITY));
124 fullName, email, company, addressLine1, addressLine2, city,
  /external/webkit/Source/WebKit/android/jni/
WebSettings.cpp 314 string16 city = getStringFieldAsString16(env, autoFillProfile, gFieldIds->mAutoFillProfileCity); local
320 webAutofill->setProfile(fullName, emailAddress, companyName, addressLine1, addressLine2, city, state, zipCode, country, phoneNumber);
  /external/icu4c/i18n/
tzgnames.cpp 508 // If the zone is only one zone in the country, do not add city
516 UnicodeString city; local
517 fTimeZoneNames->getExemplarLocationName(tzCanonicalID, city);
520 Formattable(city),
756 // Otherwise, use exemplar city name
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
ContactsSyncAdapter.java 337 String city; field in class:ContactsSyncAdapter.Address
344 return city != null || country != null || code != null || state != null
522 work.city = getValue();
537 home.city = getValue();
552 other.city = getValue();
678 ops.addPostal(entity, StructuredPostal.TYPE_WORK, work.street, work.city,
682 ops.addPostal(entity, StructuredPostal.TYPE_HOME, home.street, home.city,
686 ops.addPostal(entity, StructuredPostal.TYPE_OTHER, other.street, other.city,
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 416 milliseconds