HomeSort by relevance Sort by last modified time
    Searched defs:nameType (Results 1 - 25 of 66) sorted by null

1 2 3

  /libcore/ojluni/src/main/java/sun/security/x509/
GeneralName.java 230 int nameType = name.getType();
231 if (nameType == GeneralNameInterface.NAME_ANY ||
232 nameType == GeneralNameInterface.NAME_X400 ||
233 nameType == GeneralNameInterface.NAME_EDI) {
237 true, (byte)nameType), tmp);
238 } else if (nameType == GeneralNameInterface.NAME_DIRECTORY) {
242 true, (byte)nameType), tmp);
246 false, (byte)nameType), tmp);
  /prebuilts/go/darwin-x86/src/encoding/xml/
typeinfo.go 48 var nameType = reflect.TypeOf(Name{})
60 if typ.Kind() == reflect.Struct && typ != nameType {
  /prebuilts/go/linux-x86/src/encoding/xml/
typeinfo.go 48 var nameType = reflect.TypeOf(Name{})
60 if typ.Kind() == reflect.Struct && typ != nameType {
  /libcore/ojluni/src/main/native/
Character.cpp 154 UCharNameChoice nameType = isControl ? U_EXTENDED_CHAR_NAME : U_UNICODE_CHAR_NAME;
157 int32_t byteCount = u_charName(codePoint, nameType, &buf[0], sizeof(buf), &status);
  /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...]
  /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...]
  /external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
TimeZoneNameTest.java 21 import com.ibm.icu.text.TimeZoneNames.NameType;
104 tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date) :
105 tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date);
109 tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, date) :
110 tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date);
170 TimeZoneNames.NameType nameType = TimeZoneNames.NameType.SHORT_GENERIC;
171 String uLocaleName = uLocaleInstance.getDisplayName(availableId, nameType, date);
172 String localeName = localeInstance.getDisplayName(availableId, nameType, date)
    [all...]
  /external/icu/icu4c/source/i18n/
tznames.cpp 373 UTimeZoneNameType nameType;
378 MatchInfo(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const UnicodeString* mzID) {
379 this->nameType = nameType;
412 TimeZoneNames::MatchInfoCollection::addZone(UTimeZoneNameType nameType, int32_t matchLength,
417 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, &tzID, NULL);
429 TimeZoneNames::MatchInfoCollection::addMetaZone(UTimeZoneNameType nameType, int32_t matchLength,
434 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, NULL, &mzID);
457 return match->nameType;
tzgnames.cpp 602 UTimeZoneNameType nameType = (type == UTZGNM_LONG) ? UTZNM_LONG_GENERIC : UTZNM_SHORT_GENERIC;
603 fTimeZoneNames->getTimeZoneDisplayName(tzID, nameType, name);
673 UTimeZoneNameType stdNameType = (nameType == UTZNM_LONG_GENERIC)
687 fTimeZoneNames->getMetaZoneDisplayName(mzID, nameType, mzGenericName);
696 fTimeZoneNames->getMetaZoneDisplayName(mzID, nameType, mzName);
717 getPartialLocationName(tzID, mzID, (nameType == UTZNM_LONG_GENERIC), mzName, name);
916 UTimeZoneNameType nameType = tznamesMatches->getNameTypeAt(i);
920 switch (nameType) {
    [all...]
timezone.cpp     [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/datetime/
ZoneGetter.java 233 final TimeZoneNames.NameType nameType =
234 tz.inDaylightTime(now) ? TimeZoneNames.NameType.LONG_DAYLIGHT
235 : TimeZoneNames.NameType.LONG_STANDARD;
236 return names.getDisplayName(tz.getID(), nameType, now.getTime());
  /external/icu/android_icu4j/src/main/java/android/icu/util/
TimeZone.java 31 import android.icu.text.TimeZoneNames.NameType;
527 NameType nameType = null;
530 nameType = daylight ? NameType.LONG_DAYLIGHT : NameType.LONG_STANDARD;
534 nameType = daylight ? NameType.SHORT_DAYLIGHT : NameType.SHORT_STANDARD;
537 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;
590 NameType nameType = null;
593 nameType = daylight ? NameType.LONG_DAYLIGHT : NameType.LONG_STANDARD;
597 nameType = daylight ? NameType.SHORT_DAYLIGHT : NameType.SHORT_STANDARD;
600 result = tznames.getDisplayName(ZoneMeta.getCanonicalCLDRID(this), nameType, date)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TimeZoneGenericNames.java 30 import android.icu.text.TimeZoneNames.NameType;
129 private static final NameType[] GENERIC_NON_LOCATION_TYPES =
130 {NameType.LONG_GENERIC, NameType.SHORT_GENERIC};
335 NameType nameType = (type == GenericNameType.LONG) ? NameType.LONG_GENERIC : NameType.SHORT_GENERIC;
336 String name = _tznames.getTimeZoneDisplayName(tzID, nameType);
383 NameType stdNameType = (nameType == NameType.LONG_GENERIC)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
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...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java     [all...]
ContactAggregator2.java     [all...]
AbstractContactAggregator.java     [all...]
  /libcore/ojluni/src/main/java/java/security/cert/
X509CertSelector.java     [all...]
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.10/
commons-codec-1.10.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.9/
commons-codec-1.9.jar 
  /prebuilts/tools/common/offline-m2/commons-codec/commons-codec/1.10/
commons-codec-1.10.jar 
  /external/robolectric/v1/lib/main/
commons-codec-1.6.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.6/
commons-codec-1.6.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iketypes.h 281 IKEEXT_CERT_CRITERIA_NAME_TYPE nameType;

Completed in 3966 milliseconds

1 2 3