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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
GenderInfoTest.java 31 // Gender of the empty list is always OTHER regardless of gender style.
32 check(Gender.OTHER, Gender.OTHER, Gender.OTHER);
44 check(Gender.OTHER, Gender.MALE, Gender.MALE, Gender.MALE, Gender.MALE);
45 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.MALE, Gender.FEMALE);
46 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.MALE, Gender.OTHER);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
GenderInfoTest.java 27 // Gender of the empty list is always OTHER regardless of gender style.
28 check(Gender.OTHER, Gender.OTHER, Gender.OTHER);
40 check(Gender.OTHER, Gender.MALE, Gender.MALE, Gender.MALE, Gender.MALE);
41 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.MALE, Gender.FEMALE);
42 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.MALE, Gender.OTHER);
    [all...]
  /external/llvm/utils/git-svn/
git-svnrevert 16 OTHER=$(git svn find-rev "$COMMIT")
17 if [ $? -ne 0 ] || [ "$OTHER" = "" ]; then
29 GIT=$OTHER
31 SVN=$OTHER
  /cts/tests/tests/media/src/android/media/cts/
VideoDecoderPerfTest.java 60 private static final boolean OTHER = false;
312 public void testAvcOther0Perf0320x0240() throws Exception { perf(sAvcMedia0320x0240, OTHER, 0); }
313 public void testAvcOther1Perf0320x0240() throws Exception { perf(sAvcMedia0320x0240, OTHER, 1); }
314 public void testAvcOther2Perf0320x0240() throws Exception { perf(sAvcMedia0320x0240, OTHER, 2); }
315 public void testAvcOther3Perf0320x0240() throws Exception { perf(sAvcMedia0320x0240, OTHER, 3); }
323 public void testAvcOther0Perf0720x0480() throws Exception { perf(sAvcMedia0720x0480, OTHER, 0); }
324 public void testAvcOther1Perf0720x0480() throws Exception { perf(sAvcMedia0720x0480, OTHER, 1); }
325 public void testAvcOther2Perf0720x0480() throws Exception { perf(sAvcMedia0720x0480, OTHER, 2); }
326 public void testAvcOther3Perf0720x0480() throws Exception { perf(sAvcMedia0720x0480, OTHER, 3); }
337 public void testAvcOther0Perf1280x0720() throws Exception { perf(sAvcMedia1280x0720, OTHER, 0);
    [all...]
  /cts/tests/video/src/android/video/cts/
VideoEncoderDecoderTest.java 79 private static final boolean OTHER = false;
201 public void testAvcOther0Qual0320x0240() throws Exception { qual(AVC, 320, 240, OTHER, 0); }
202 public void testAvcOther0Perf0320x0240() throws Exception { perf(AVC, 320, 240, OTHER, 0); }
203 public void testAvcOther1Qual0320x0240() throws Exception { qual(AVC, 320, 240, OTHER, 1); }
204 public void testAvcOther1Perf0320x0240() throws Exception { perf(AVC, 320, 240, OTHER, 1); }
205 public void testAvcOther2Qual0320x0240() throws Exception { qual(AVC, 320, 240, OTHER, 2); }
206 public void testAvcOther2Perf0320x0240() throws Exception { perf(AVC, 320, 240, OTHER, 2); }
207 public void testAvcOther3Qual0320x0240() throws Exception { qual(AVC, 320, 240, OTHER, 3); }
208 public void testAvcOther3Perf0320x0240() throws Exception { perf(AVC, 320, 240, OTHER, 3); }
212 public void testAvcOther0Qual0720x0480() throws Exception { qual(AVC, 720, 480, OTHER, 0);
    [all...]
  /external/icu/icu4c/source/i18n/
standardplural.cpp 24 "zero", "one", "two", "few", "many", "other"
46 return OTHER;
94 return OTHER;
104 if (U_FAILURE(errorCode)) { return OTHER; }
110 return OTHER;
115 if (U_FAILURE(errorCode)) { return OTHER; }
121 return OTHER;
standardplural.h 35 OTHER,
45 * @param keyword for example "few" or "other"
46 * @return the plural form corresponding to the keyword, or OTHER
53 * @param keyword for example "few" or "other"
54 * @return the plural form corresponding to the keyword, or OTHER
63 * @param keyword for example "few" or "other"
73 * @param keyword for example "few" or "other"
81 * @param keyword for example "few" or "other"
87 * @param keyword for example "few" or "other"
93 * @param keyword for example "few" or "other"
    [all...]
quantityformatter.cpp 35 QuantityFormatter::QuantityFormatter(const QuantityFormatter &other) {
37 if (other.formatters[i] == NULL) {
40 formatters[i] = new SimplePatternFormatter(*other.formatters[i]);
46 const QuantityFormatter& other) {
47 if (this == &other) {
52 if (other.formatters[i] == NULL) {
55 formatters[i] = new SimplePatternFormatter(*other.formatters[i]);
99 return formatters[StandardPlural::OTHER] != NULL;
108 pattern = formatters[StandardPlural::OTHER];
127 pattern = formatters[StandardPlural::OTHER];
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
StandardPlural.java 25 OTHER("other");
28 * Numeric index of OTHER, same as OTHER.ordinal().
30 public static final int OTHER_INDEX = OTHER.ordinal();
58 * @param keyword for example "few" or "other"
80 if ("other".contentEquals(keyword)) {
81 return OTHER;
91 * @param keyword for example "few" or "other"
92 * @return the plural form corresponding to the keyword, or OTHER
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
StandardPlural.java 23 OTHER("other");
26 * Numeric index of OTHER, same as OTHER.ordinal().
28 public static final int OTHER_INDEX = OTHER.ordinal();
56 * @param keyword for example "few" or "other"
78 if ("other".contentEquals(keyword)) {
79 return OTHER;
89 * @param keyword for example "few" or "other"
90 * @return the plural form corresponding to the keyword, or OTHER
    [all...]
  /external/icu/icu4c/source/test/intltest/
pluralmaptest.cpp 18 UBool operator==(const PluralMapForPluralMapTest &other) {
19 return equals(other, strEqual);
57 assertEquals("", PluralMapBase::OTHER, PluralMapBase::toCategory("other"));
81 assertEquals("", "other", PluralMapBase::getCategoryName(PluralMapBase::OTHER));
91 addVariant(PluralMapBase::OTHER, "pickles", map);
94 assertEquals("", "pickles", map.get(PluralMapBase::OTHER));
111 addVariant(PluralMapBase::OTHER, "pickles", map);
118 assertEquals("", PluralMapBase::OTHER, index)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
GenderInfo.java 34 * Gender: OTHER means either the information is unavailable, or the person has declined to state MALE or FEMALE.
57 OTHER
92 * For an empty list, returns OTHER;
94 * Otherwise always OTHER.
101 * For an empty list, returns OTHER;
103 * Otherwise gender(all male) = male, gender(all female) = female, otherwise gender(list) = other.
104 * So any 'other' value makes the overall gender be 'other'.
111 * For an empty list, returns OTHER;
114 * So for more than one item, any 'other' value makes the overall gender be 'male'
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
GenderInfo.java 32 * Gender: OTHER means either the information is unavailable, or the person has declined to state MALE or FEMALE.
55 OTHER
90 * For an empty list, returns OTHER;
92 * Otherwise always OTHER.
99 * For an empty list, returns OTHER;
101 * Otherwise gender(all male) = male, gender(all female) = female, otherwise gender(list) = other.
102 * So any 'other' value makes the overall gender be 'other'.
109 * For an empty list, returns OTHER;
112 * So for more than one item, any 'other' value makes the overall gender be 'male'
    [all...]
  /libcore/ojluni/src/main/java/java/sql/
Types.java 185 public final static int OTHER = 1111;
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/
OmtpEvents.java 96 // Other
97 OTHER_SOURCE_REMOVED(Type.OTHER, false),
116 @IntDef({CONFIGURATION, DATA_CHANNEL, NOTIFICATION_CHANNEL, OTHER})
124 public static final int OTHER = 4;
141 mType = Type.OTHER;