/device/google/dragon/ |
init_regions.sh | 3 # Intialize region settings. Ref: crosbug.com/p/44779 5 REGION_VPD_FILE=/sys/firmware/vpd/ro/region 7 REGION="us" 12 REGION="$(cat ${REGION_VPD_FILE})" 15 case "${REGION}" in
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
PostalSplitterForJapaneseTest.java | 48 private static final String REGION = "\u6771\u4EAC\u90FD"; 83 assertJoinedPostal(POSTCODE + "\n" + REGION + " " + CITY + "\n" + STREET, 84 STREET, null, null, CITY, REGION, POSTCODE, null); 88 assertJoinedPostal(POSTCODE + "\n" + REGION + "\n" + STREET, 89 STREET, null, null, REGION, null, 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); 115 String neighborhood, String city, String region, String postcode, String country) [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
TestLocaleNamePackaging.java | 11 import static android.icu.impl.LocaleDisplayNamesImpl.DataTableType.REGION; 34 logln(" region data: " + LocaleDisplayNamesImpl.haveData(REGION)); 84 String[] expected = LocaleDisplayNamesImpl.haveData(REGION) ? 222 : (LocaleDisplayNamesImpl.haveData(REGION)
|
/external/icu/icu4j/main/tests/packaging/src/com/ibm/icu/dev/test/ |
TestLocaleNamePackaging.java | 10 import static com.ibm.icu.impl.LocaleDisplayNamesImpl.DataTableType.REGION; 30 logln(" region data: " + LocaleDisplayNamesImpl.haveData(REGION)); 80 String[] expected = LocaleDisplayNamesImpl.haveData(REGION) ? 218 : (LocaleDisplayNamesImpl.haveData(REGION)
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/ |
StructuredPostalDataItem.java | 58 return getContentValues().getAsString(StructuredPostal.REGION);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DataRowHandlerForStructuredPostal.java | 41 StructuredPostal.REGION,
|
PostalSplitter.java | 37 public String region; field in class:PostalSplitter.Postal 46 region = values.getAsString(StructuredPostal.REGION); 56 values.put(StructuredPostal.REGION, region); 87 postal.region, postal.postcode, postal.country 104 final boolean hasRegion = !TextUtils.isEmpty(postal.region); 109 // Second block: [region][ ][city][ ][neighborhood] 133 builder.append(postal.region); 170 final boolean hasRegion = !TextUtils.isEmpty(postal.region); [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/ |
BitmapCache.java | 46 public final static int REGION = 9; 99 case REGION: return "REGION";
|
ImageLoader.java | 250 * Returns the bitmap for the rectangular region given by "bounds" 277 imageBounds.height(), BitmapCache.REGION);
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
SVals.h | 152 /// should continue to the base regions if the region is not symbolic. 155 /// Get the symbol in the SVal or its base region. 163 /// should continue to the base regions if the region is not symbolic. 495 /// \brief Get the underlining region. 500 /// \brief Get the underlining region and strip casts. 503 template <typename REGION> 504 const REGION* getRegionAs() const { 505 return dyn_cast<REGION>(getRegion());
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/ |
Xregion.h | 1 /* $Xorg: region.h,v 1.4 2001/02/09 02:03:40 xorgcvs Exp $ */ 73 * clip region 81 } REGION; 84 * typedef struct _XRegion *Region; 89 * Remember, x2 and y2 are not in the region 98 * update region extents 112 * Check to see if there is enough memory in the present region. 136 /* add a rectangle to the given Region */ 152 /* add a rectangle to the given Region */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/ |
Xregion.h | 72 * clip region 80 } REGION; 83 * typedef struct _XRegion *Region; 88 * Remember, x2 and y2 are not in the region 97 * update region extents 111 * Check to see if there is enough memory in the present region. 135 /* add a rectangle to the given Region */ 151 /* add a rectangle to the given Region */
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/ |
SamsungAccountType.java | 106 kind.fieldList.add(new EditField(StructuredPostal.REGION, 117 kind.fieldList.add(new EditField(StructuredPostal.REGION,
|
ExchangeAccountType.java | 233 kind.fieldList.add(new EditField(StructuredPostal.REGION, 244 kind.fieldList.add(new EditField(StructuredPostal.REGION,
|
BaseAccountType.java | [all...] |
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
XYLegendWidget.java | 33 * Region legend entries.
44 REGION
196 // draw each region legend item:
|
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/ |
VCardJapanizationTests.java | 211 .put(StructuredPostal.REGION, "\u00D7\u00D7\u770C") 237 .put(StructuredPostal.REGION, "\u00D7\u00D7\u770C")
|
VCardExporterTests.java | [all...] |
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
ExchangeSource.java | 188 kind.fieldList.add(new EditField(StructuredPostal.REGION, 199 kind.fieldList.add(new EditField(StructuredPostal.REGION,
|
FallbackSource.java | 276 kind.fieldList.add(new EditField(StructuredPostal.REGION, 295 kind.fieldList.add(new EditField(StructuredPostal.REGION,
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
LocaleDisplayNamesImpl.java | 452 public String regionDisplayName(String region) { 454 String regionName = regionData.get("Countries%short", region); 455 if (!regionName.equals(region)) { 459 return adjustForUsageAndContext(CapitalizationContextUsage.TERRITORY, regionData.get("Countries", region)); 630 LANG, REGION; 636 case REGION: return RegionDataTables.impl instanceof ICUDataTables;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
LocaleDisplayNamesImpl.java | 448 public String regionDisplayName(String region) { 450 String regionName = regionData.get("Countries%short", region); 451 if (!regionName.equals(region)) { 455 return adjustForUsageAndContext(CapitalizationContextUsage.TERRITORY, regionData.get("Countries", region)); 626 LANG, REGION; 632 case REGION: return RegionDataTables.impl instanceof ICUDataTables;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
RawContactModifier.java | [all...] |
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/ |
RawContactModifierTests.java | [all...] |
/prebuilts/tools/common/m2/repository/org/antlr/ST4/4.0.8/ |
ST4-4.0.8.jar | |