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

1 2 3 4

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
NameConstraintValidator.java 15 void intersectEmptyPermittedSubtree(int nameType);
  /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);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactMatcher.java 130 * corresponding to the {@code candidateNameType} and {@code nameType}.
132 private static void setScoreRange(int candidateNameType, int nameType, int scoreFrom, int scoreTo) {
133 int index = nameType * NameLookupType.TYPE_COUNT + candidateNameType;
140 * {@code nameType}.
142 private static int getMinScore(int candidateNameType, int nameType) {
143 int index = nameType * NameLookupType.TYPE_COUNT + candidateNameType;
149 * {@code nameType}.
151 private static int getMaxScore(int candidateNameType, int nameType) {
152 int index = nameType * NameLookupType.TYPE_COUNT + candidateNameType;
194 int nameType, String name, int algorithm)
    [all...]
RawContactMatcher.java 134 * corresponding to the {@code candidateNameType} and {@code nameType}.
136 private static void setScoreRange(int candidateNameType, int nameType, int scoreFrom,
138 int index = nameType * NameLookupType.TYPE_COUNT + candidateNameType;
145 * {@code nameType}.
147 private static int getMinScore(int candidateNameType, int nameType) {
148 int index = nameType * NameLookupType.TYPE_COUNT + candidateNameType;
154 * {@code nameType}.
156 private static int getMaxScore(int candidateNameType, int nameType) {
157 int index = nameType * NameLookupType.TYPE_COUNT + candidateNameType;
192 candidateNameType, String candidateName, int nameType, String name, int algorithm)
    [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...]
  /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 603 UTimeZoneNameType nameType = (type == UTZGNM_LONG) ? UTZNM_LONG_GENERIC : UTZNM_SHORT_GENERIC;
604 fTimeZoneNames->getTimeZoneDisplayName(tzID, nameType, name);
674 UTimeZoneNameType stdNameType = (nameType == UTZNM_LONG_GENERIC)
688 fTimeZoneNames->getMetaZoneDisplayName(mzID, nameType, mzGenericName);
697 fTimeZoneNames->getMetaZoneDisplayName(mzID, nameType, mzName);
718 getPartialLocationName(tzID, mzID, (nameType == UTZNM_LONG_GENERIC), mzName, name);
917 UTimeZoneNameType nameType = tznamesMatches->getNameTypeAt(i);
921 switch (nameType) {
    [all...]
timezone.cpp     [all...]
  /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/icu/icu4c/source/i18n/unicode/
tznames.h 324 * @param nameType The name type.
330 void addZone(UTimeZoneNameType nameType, int32_t matchLength,
335 * @param nameType The name type.
341 void addMetaZone(UTimeZoneNameType nameType, int32_t matchLength,
  /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...]
  /libcore/ojluni/src/main/java/java/util/
TimeZone.java 386 TimeZoneNames.NameType nameType;
389 nameType = daylightTime
390 ? TimeZoneNames.NameType.SHORT_DAYLIGHT
391 : TimeZoneNames.NameType.SHORT_STANDARD;
394 nameType = daylightTime
395 ? TimeZoneNames.NameType.LONG_DAYLIGHT
396 : TimeZoneNames.NameType.LONG_STANDARD;
405 String displayName = names.getDisplayName(canonicalID, nameType, now);
  /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/util/
TimeZone.java 31 import android.icu.text.TimeZoneNames.NameType;
524 NameType nameType = null;
527 nameType = daylight ? NameType.LONG_DAYLIGHT : NameType.LONG_STANDARD;
531 nameType = daylight ? NameType.SHORT_DAYLIGHT : NameType.SHORT_STANDARD;
534 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/annotation-tools/asmx/src/org/objectweb/asm/
ClassReader.java 237 int nameType;
242 nameType = items[readUnsignedShort(index + 2)];
245 readUTF8(nameType, buf),
246 readUTF8(nameType + 2, buf));
287 nameType = items[readUnsignedShort(fieldOrMethodRef + 2)];
290 readUTF8(nameType, buf),
291 readUTF8(nameType + 2, buf));
298 nameType = items[readUnsignedShort(index + 2)];
299 item.set(readUTF8(nameType, buf),
300 readUTF8(nameType + 2, buf)
    [all...]
  /external/robolectric/v1/lib/main/
commons-codec-1.6.jar 
  /libcore/ojluni/src/main/java/java/security/cert/
X509CertSelector.java     [all...]
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.6/
commons-codec-1.6.jar 
  /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 
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/datetime/
ZoneGetter.java 238 final TimeZoneNames.NameType nameType =
239 tz.inDaylightTime(now) ? TimeZoneNames.NameType.LONG_DAYLIGHT
240 : TimeZoneNames.NameType.LONG_STANDARD;
241 return names.getDisplayName(tz.getID(), nameType, now.getTime());

Completed in 968 milliseconds

1 2 3 4