HomeSort by relevance Sort by last modified time
    Searched refs:OTHER (Results 1 - 25 of 708) 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 29 // Gender of the empty list is always OTHER regardless of gender style.
30 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 28 // Gender of the empty list is always OTHER regardless of gender style.
29 check(Gender.OTHER, Gender.OTHER, Gender.OTHER);
43 check(Gender.OTHER, Gender.MALE, Gender.MALE, Gender.MALE, Gender.MALE);
44 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.MALE, Gender.FEMALE);
45 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.MALE, Gender.OTHER);
    [all...]
  /external/openssh/contrib/aix/
pam.conf 8 OTHER auth required /usr/lib/security/pam_aix
12 OTHER account required /usr/lib/security/pam_aix
16 OTHER password required /usr/lib/security/pam_aix
20 OTHER session required /usr/lib/security/pam_aix
  /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 61 private static final boolean OTHER = false;
336 public void testAvcOther0Perf0320x0240() throws Exception { perf(sAvcMedia0320x0240, OTHER, 0); }
337 public void testAvcOther1Perf0320x0240() throws Exception { perf(sAvcMedia0320x0240, OTHER, 1); }
338 public void testAvcOther2Perf0320x0240() throws Exception { perf(sAvcMedia0320x0240, OTHER, 2); }
339 public void testAvcOther3Perf0320x0240() throws Exception { perf(sAvcMedia0320x0240, OTHER, 3); }
347 public void testAvcOther0Perf0720x0480() throws Exception { perf(sAvcMedia0720x0480, OTHER, 0); }
348 public void testAvcOther1Perf0720x0480() throws Exception { perf(sAvcMedia0720x0480, OTHER, 1); }
349 public void testAvcOther2Perf0720x0480() throws Exception { perf(sAvcMedia0720x0480, OTHER, 2); }
350 public void testAvcOther3Perf0720x0480() throws Exception { perf(sAvcMedia0720x0480, OTHER, 3); }
361 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 26 "zero", "one", "two", "few", "many", "other"
48 return OTHER;
96 return OTHER;
106 if (U_FAILURE(errorCode)) { return OTHER; }
112 return OTHER;
117 if (U_FAILURE(errorCode)) { return OTHER; }
123 return OTHER;
standardplural.h 37 OTHER,
47 * @param keyword for example "few" or "other"
48 * @return the plural form corresponding to the keyword, or OTHER
55 * @param keyword for example "few" or "other"
56 * @return the plural form corresponding to the keyword, or OTHER
65 * @param keyword for example "few" or "other"
75 * @param keyword for example "few" or "other"
83 * @param keyword for example "few" or "other"
89 * @param keyword for example "few" or "other"
95 * @param keyword for example "few" or "other"
    [all...]
quantityformatter.cpp 37 QuantityFormatter::QuantityFormatter(const QuantityFormatter &other) {
39 if (other.formatters[i] == NULL) {
42 formatters[i] = new SimpleFormatter(*other.formatters[i]);
48 const QuantityFormatter& other) {
49 if (this == &other) {
54 if (other.formatters[i] == NULL) {
57 formatters[i] = new SimpleFormatter(*other.formatters[i]);
101 return formatters[StandardPlural::OTHER] != NULL;
110 pattern = formatters[StandardPlural::OTHER];
129 pattern = formatters[StandardPlural::OTHER];
    [all...]
  /test/vts-testcase/security/poc/target/
poc_test.h 35 OTHER
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
StandardPlural.java 27 OTHER("other");
30 * Numeric index of OTHER, same as OTHER.ordinal().
32 public static final int OTHER_INDEX = OTHER.ordinal();
60 * @param keyword for example "few" or "other"
82 if ("other".contentEquals(keyword)) {
83 return OTHER;
93 * @param keyword for example "few" or "other"
94 * @return the plural form corresponding to the keyword, or OTHER
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/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/icu4c/source/test/intltest/
pluralmaptest.cpp 20 UBool operator==(const PluralMapForPluralMapTest &other) {
21 return equals(other, strEqual);
59 assertEquals("", (int32_t)PluralMapBase::OTHER, PluralMapBase::toCategory("other"));
83 assertEquals("", "other", PluralMapBase::getCategoryName(PluralMapBase::OTHER));
93 addVariant(PluralMapBase::OTHER, "pickles", map);
96 assertEquals("", "pickles", map.get(PluralMapBase::OTHER));
113 addVariant(PluralMapBase::OTHER, "pickles", map);
120 assertEquals("", (int32_t)PluralMapBase::OTHER, index)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
GenderInfo.java 37 * Gender: OTHER means either the information is unavailable, or the person has declined to state MALE or FEMALE.
60 OTHER
95 * For an empty list, returns OTHER;
97 * Otherwise always OTHER.
104 * For an empty list, returns OTHER;
106 * Otherwise gender(all male) = male, gender(all female) = female, otherwise gender(list) = other.
107 * So any 'other' value makes the overall gender be 'other'.
114 * For an empty list, returns OTHER;
117 * 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 35 * Gender: OTHER means either the information is unavailable, or the person has declined to state MALE or FEMALE.
58 OTHER
93 * For an empty list, returns OTHER;
95 * Otherwise always OTHER.
102 * For an empty list, returns OTHER;
104 * Otherwise gender(all male) = male, gender(all female) = female, otherwise gender(list) = other.
105 * So any 'other' value makes the overall gender be 'other'.
112 * For an empty list, returns OTHER;
115 * So for more than one item, any 'other' value makes the overall gender be 'male'
    [all...]
  /hardware/interfaces/memtrack/1.0/
types.hal 61 OTHER = 0,
  /libcore/ojluni/src/main/java/java/sql/
Types.java 185 public final static int OTHER = 1111;
  /packages/apps/Dialer/java/com/android/voicemail/impl/
OmtpEvents.java 97 // Other
98 OTHER_SOURCE_REMOVED(Type.OTHER, false),
117 @IntDef({CONFIGURATION, DATA_CHANNEL, NOTIFICATION_CHANNEL, OTHER})
123 public static final int OTHER = 4;
140 mType = Type.OTHER;
  /cts/tests/libcore/javautilcollections/src/libcore/java/util/tests/
AndroidTestsForMapsInJavaUtil.java 38 /** All Maps other than those below. */
39 OTHER,
63 case OTHER:
  /hardware/interfaces/media/omx/1.0/
types.hal 215 * continues to evolve, new values may be defined in the future. Use OTHER for these future values
224 OTHER = 0xff, // Not one of the above values
237 OTHER = 0xff, // Not one of the above values
257 OTHER = 0xff, // Not one of the above values
270 OTHER = 0xff, // Not one of the above values
  /cts/tests/libcore/javautilcollections/src/libcore/java/util/suite/
OtherCollectionsSuite.java 30 * A suite of all guava-testlib Collection tests not covered by the other suites in this
37 result.addTest(new AndroidTestsForMapsInJavaUtil(MapsToTest.OTHER).allTests());
  /libcore/ojluni/src/main/java/jdk/net/
SocketFlow.java 99 * Some other unspecified error.
101 OTHER
  /hardware/interfaces/tv/input/1.0/
types.hal 32 OTHER = 1, // Generic hardware.
  /tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
FrameworkPerfTest.java 59 private static final String OTHER = "frameworkfg_perf_other";
93 .put("Sched",OTHER)
94 .put("CPU",OTHER)
95 .put("MethodCall",OTHER)
96 .put("Ipc",OTHER)
171 testLabel = OTHER;
  /external/autotest/site_utils/autoupdate/
full_release_test_test.py 307 AndReturn('SOME OTHER DATA')
317 AndReturn('SOME OTHER DATA')

Completed in 1015 milliseconds

1 2 3 4 5 6 7 8 91011>>