/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/util/ |
TimeZoneNameProviderICU.java | 16 import com.ibm.icu.text.TimeZoneNames.NameType; 32 String lstd = tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date); 33 String ldst = tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date); 34 String sstd = tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date); 35 String sdst = tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, date); 53 // tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date) : 54 // tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date); 58 // tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, date) : 59 // tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
TZDBTimeZoneNames.java | 98 * android.icu.text.TimeZoneNames.NameType) 101 public String getMetaZoneDisplayName(String mzID, NameType type) { 103 (type != NameType.SHORT_STANDARD && type != NameType.SHORT_DAYLIGHT)) { 111 * android.icu.text.TimeZoneNames.NameType) 114 public String getTimeZoneDisplayName(String tzID, NameType type) { 130 public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) { 196 String getName(NameType type) { 224 final NameType type; 228 TZDBNameInfo(String mzID, NameType type, boolean ambiguousType, String[] parseRegions) [all...] |
TimeZoneGenericNames.java | 30 import android.icu.text.TimeZoneNames.NameType; 131 private static final NameType[] GENERIC_NON_LOCATION_TYPES = 132 {NameType.LONG_GENERIC, NameType.SHORT_GENERIC}; 337 NameType nameType = (type == GenericNameType.LONG) ? NameType.LONG_GENERIC : NameType.SHORT_GENERIC; 338 String name = _tznames.getTimeZoneDisplayName(tzID, nameType); 385 NameType stdNameType = (nameType == NameType.LONG_GENERIC) [all...] |
TimeZoneNamesImpl.java | 164 * @see android.icu.text.TimeZoneNames#getMetaZoneDisplayName(java.lang.String, android.icu.text.TimeZoneNames.NameType) 167 public String getMetaZoneDisplayName(String mzID, NameType type) { 176 * @see android.icu.text.TimeZoneNames#getTimeZoneDisplayName(java.lang.String, android.icu.text.TimeZoneNames.NameType) 179 public String getTimeZoneDisplayName(String tzID, NameType type) { 194 String locName = loadTimeZoneNames(tzID).getName(NameType.EXEMPLAR_LOCATION); 202 public synchronized Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) { 262 public void getDisplayNames(String tzID, NameType[] types, long date, 270 NameType type = types[i]; 515 NameType type; 522 private EnumSet<NameType> _nameTypes [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
TZDBTimeZoneNames.java | 96 * com.ibm.icu.text.TimeZoneNames.NameType) 99 public String getMetaZoneDisplayName(String mzID, NameType type) { 101 (type != NameType.SHORT_STANDARD && type != NameType.SHORT_DAYLIGHT)) { 109 * com.ibm.icu.text.TimeZoneNames.NameType) 112 public String getTimeZoneDisplayName(String tzID, NameType type) { 128 public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) { 194 String getName(NameType type) { 222 final NameType type; 226 TZDBNameInfo(String mzID, NameType type, boolean ambiguousType, String[] parseRegions) [all...] |
TimeZoneGenericNames.java | 29 import com.ibm.icu.text.TimeZoneNames.NameType; 127 private static final NameType[] GENERIC_NON_LOCATION_TYPES = 128 {NameType.LONG_GENERIC, NameType.SHORT_GENERIC}; 333 NameType nameType = (type == GenericNameType.LONG) ? NameType.LONG_GENERIC : NameType.SHORT_GENERIC; 334 String name = _tznames.getTimeZoneDisplayName(tzID, nameType); 381 NameType stdNameType = (nameType == NameType.LONG_GENERIC) [all...] |
TimeZoneNamesImpl.java | 162 * @see com.ibm.icu.text.TimeZoneNames#getMetaZoneDisplayName(java.lang.String, com.ibm.icu.text.TimeZoneNames.NameType) 165 public String getMetaZoneDisplayName(String mzID, NameType type) { 174 * @see com.ibm.icu.text.TimeZoneNames#getTimeZoneDisplayName(java.lang.String, com.ibm.icu.text.TimeZoneNames.NameType) 177 public String getTimeZoneDisplayName(String tzID, NameType type) { 192 String locName = loadTimeZoneNames(tzID).getName(NameType.EXEMPLAR_LOCATION); 200 public synchronized Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) { 260 public void getDisplayNames(String tzID, NameType[] types, long date, 268 NameType type = types[i]; 513 NameType type; 520 private EnumSet<NameType> _nameTypes [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
TimeZoneNames.java | 66 * {@link #getTimeZoneDisplayName(String, NameType)} is designed for accessing a name only used by a single time zone. 68 * may provide time zone names only through {@link #getTimeZoneDisplayName(String, NameType)}, or only through 69 * {@link #getMetaZoneDisplayName(String, NameType)}, or both. 85 public enum NameType { 174 * zone names ({@link NameType#SHORT_STANDARD} and {@link NameType#SHORT_DAYLIGHT}), 236 * The display name type. See {@link TimeZoneNames.NameType}. 241 public abstract String getMetaZoneDisplayName(String mzID, NameType type); 247 * <b>Note:</b> This method calls the subclass's {@link #getTimeZoneDisplayName(String, NameType)} first. When the 249 * time zone, then calls {@link #getMetaZoneDisplayName(String, NameType)} [all...] |
TimeZoneFormat.java | 47 import android.icu.text.TimeZoneNames.NameType; 364 private static final EnumSet<NameType> ALL_SIMPLE_NAME_TYPES = EnumSet.of( 365 NameType.LONG_STANDARD, NameType.LONG_DAYLIGHT, 366 NameType.SHORT_STANDARD, NameType.SHORT_DAYLIGHT, 367 NameType.EXEMPLAR_LOCATION [all...] |
DateFormatSymbols.java | 34 import android.icu.text.TimeZoneNames.NameType; [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
TimeZoneNames.java | 65 * {@link #getTimeZoneDisplayName(String, NameType)} is designed for accessing a name only used by a single time zone. 67 * may provide time zone names only through {@link #getTimeZoneDisplayName(String, NameType)}, or only through 68 * {@link #getMetaZoneDisplayName(String, NameType)}, or both. 88 public enum NameType { 193 * zone names ({@link NameType#SHORT_STANDARD} and {@link NameType#SHORT_DAYLIGHT}), 261 * The display name type. See {@link TimeZoneNames.NameType}. 267 public abstract String getMetaZoneDisplayName(String mzID, NameType type); 273 * <b>Note:</b> This method calls the subclass's {@link #getTimeZoneDisplayName(String, NameType)} first. When the 275 * time zone, then calls {@link #getMetaZoneDisplayName(String, NameType)} [all...] |
TimeZoneFormat.java | 46 import com.ibm.icu.text.TimeZoneNames.NameType; 400 private static final EnumSet<NameType> ALL_SIMPLE_NAME_TYPES = EnumSet.of( 401 NameType.LONG_STANDARD, NameType.LONG_DAYLIGHT, 402 NameType.SHORT_STANDARD, NameType.SHORT_DAYLIGHT, 403 NameType.EXEMPLAR_LOCATION [all...] |
DateFormatSymbols.java | 33 import com.ibm.icu.text.TimeZoneNames.NameType; [all...] |
/external/v8/src/parsing/ |
func-name-inferrer.h | 87 enum NameType { 93 Name(const AstRawString* name, NameType type) : name(name), type(type) {} 95 NameType type;
|
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
TimeZoneNameTest.java | 23 import com.ibm.icu.text.TimeZoneNames.NameType; 107 tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date) : 108 tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date); 112 tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, date) : 113 tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date); 173 TimeZoneNames.NameType nameType = TimeZoneNames.NameType.SHORT_GENERIC; 174 String uLocaleName = uLocaleInstance.getDisplayName(availableId, nameType, date); 175 String localeName = localeInstance.getDisplayName(availableId, nameType, date) [all...] |
/external/libcxxabi/src/demangle/ |
ItaniumDemangle.h | 42 X(NameType) \ 378 class NameType final : public Node { 382 NameType(StringView Name_) : Node(KNameType), Name(Name_) {} 456 static_cast<const NameType *>(Ty)->getName() == "objc_object"; [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Demangle/ |
ItaniumDemangle.cpp | 324 class NameType final : public Node { 328 NameType(StringView Name_) : Node(KNameType), Name(Name_) {} 392 static_cast<NameType *>(Ty)->getName() == "objc_object"; [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
TimeZoneFormatTest.java | 46 import android.icu.text.TimeZoneNames.NameType; [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
TimeZoneFormatTest.java | 45 import com.ibm.icu.text.TimeZoneNames.NameType; [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
TimeZone.java | 31 import android.icu.text.TimeZoneNames.NameType; 523 NameType nameType = null; 526 nameType = daylight ? NameType.LONG_DAYLIGHT : NameType.LONG_STANDARD; 530 nameType = daylight ? NameType.SHORT_DAYLIGHT : NameType.SHORT_STANDARD; 533 result = tznames.getDisplayName(ZoneMeta.getCanonicalCLDRID(this), nameType, date) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
TimeZone.java | 30 import com.ibm.icu.text.TimeZoneNames.NameType; 587 NameType nameType = null; 590 nameType = daylight ? NameType.LONG_DAYLIGHT : NameType.LONG_STANDARD; 594 nameType = daylight ? NameType.SHORT_DAYLIGHT : NameType.SHORT_STANDARD; 597 result = tznames.getDisplayName(ZoneMeta.getCanonicalCLDRID(this), nameType, date) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/ |
COFFImportFile.cpp | 173 ImportType Type, ImportNameType NameType); 466 ImportNameType NameType) { 481 Imp->TypeInfo = (NameType << 2) | ImportType; 599 ImportNameType NameType = getNameType(SymbolName, E.Name, Machine, MinGW); 614 OF.createShortImport(*Name, E.Ordinal, ImportType, NameType));
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/ |
FormatHandler.java | 45 import android.icu.text.TimeZoneNames.NameType; [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
FormatHandler.java | 44 import com.ibm.icu.text.TimeZoneNames.NameType; [all...] |
/external/boringssl/src/ssl/test/runner/ |
handshake_messages.go | 424 // NameType name_type; 432 // } NameType; 441 serverName.addU8(0) // NameType host_name(0) 751 var nameType byte 753 if !names.readU8(&nameType) || 757 if nameType == 0 { [all...] |