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

  /external/chromium/chrome/browser/autofill/
autofill_common_test.h 33 const char* address1, const char* address2, const char* city,
40 const char* address1, const char* address2, const char* city,
autofill_common_test.cc 37 const char* address1, const char* address2, const char* city,
47 check_and_set(profile, ADDRESS_HOME_CITY, city);
58 const char* address1, const char* address2, const char* city,
64 company, address1, address2, city, state, zipcode, country,
autofill_manager_unittest.cc 174 "City", "city", "", "text", &field);
271 const char* city,
326 "City", "city", city, "text", &field);
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PostalSplitterForJapaneseTest.java 41 // Postal address for Tokyo Metropolitan City Hall (Tokyo-Tocho) as of 2009 + pseudo PO box.
50 private static final String CITY = "\u65B0\u5BBF\u533A";
79 assertJoinedPostal(CITY + "\n" + POBOX, null, POBOX, null, CITY, null, null, null);
83 assertJoinedPostal(POSTCODE + "\n" + REGION + " " + CITY + "\n" + STREET,
84 STREET, null, null, CITY, REGION, POSTCODE, null);
99 assertJoinedPostal(REGION + " " + CITY + "\n" + STREET,
100 STREET, null, null, CITY, REGION, null, null);
102 assertJoinedPostal(COUNTRY + "\n" + REGION + " " + CITY + "\n" + STREET,
103 STREET, null, null, CITY, REGION, null, COUNTRY)
    [all...]
PostalSplitterTest.java 99 String neighborhood, String city, String region, String postcode, String country) {
105 assertEquals(city, postal.city);
112 String neighborhood, String city, String region, String postcode, String country) {
117 postal.city = city;
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
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);
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 });
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.h 83 const string16& addressLine1, const string16& addressLine2, const string16& city,
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,
  /development/samples/RenderScript/Levels/src/com/android/rs/levels/
LevelsDalvikActivity.java 121 mBitmapIn = loadBitmap(R.drawable.city);
122 mBitmapOut = loadBitmap(R.drawable.city);
LevelsRSActivity.java 136 mBitmapIn = loadBitmap(R.drawable.city);
  /external/openssl/apps/
openssl.cnf 136 localityName = Locality Name (eg, city)
  /frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
ImageProcessingActivity.java 164 mBitmapIn = loadBitmap(R.drawable.city);
165 mBitmapOut = loadBitmap(R.drawable.city);
  /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...]
  /frameworks/base/tests/RenderScriptTests/SampleTest/src/com/android/rs/sample/
SampleRSActivity.java 92 mBitmapCity = loadBitmap(R.drawable.city);
  /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...]
  /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);
  /frameworks/base/core/java/android/webkit/
WebSettingsClassic.java 144 String city, String state, String zipCode, String country,
152 mCity = city;
    [all...]
  /external/chromium/net/base/
effective_tld_names.cc     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 3370 milliseconds