HomeSort by relevance Sort by last modified time
    Searched refs:OTHER (Results 1 - 25 of 405) 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;
  /frameworks/native/include/ui/
TVecHelpers.h 74 template <typename OTHER>
75 BASE<T>& operator += (const BASE<OTHER>& v) {
82 template <typename OTHER>
83 BASE<T>& operator -= (const BASE<OTHER>& v) {
155 template <typename OTHER>
156 BASE<T>& operator *= (const BASE<OTHER>& v) {
163 template <typename OTHER>
164 BASE<T>& operator /= (const BASE<OTHER>& v) {
  /external/autotest/site_utils/autoupdate/
full_release_test_test.py 307 AndReturn('SOME OTHER DATA')
317 AndReturn('SOME OTHER DATA')
  /external/mesa3d/src/glsl/glcpp/
glcpp-lex.l 19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
80 /* The OTHER class is simply a catch-all for things that the CPP
83 strings, we have to be careful to avoid OTHER matching and hiding
85 characters that appear in any other expressions. */
87 OTHER [^][_#[:space:]#a-zA-Z0-9(){}.&*~!/%<>^|;,=+-]
96 * don't switch if some other state was explicitly set.
135 return OTHER;
279 {OTHER}+ {
281 return OTHER;
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/examples/javascript/
spi.js 22 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardSwitcher.java 213 setKeyboard(KeyboardId.ELEMENT_ALPHABET, KeyboardSwitchState.OTHER);
222 setKeyboard(KeyboardId.ELEMENT_ALPHABET_MANUAL_SHIFTED, KeyboardSwitchState.OTHER);
231 setKeyboard(KeyboardId.ELEMENT_ALPHABET_AUTOMATIC_SHIFTED, KeyboardSwitchState.OTHER);
240 setKeyboard(KeyboardId.ELEMENT_ALPHABET_SHIFT_LOCKED, KeyboardSwitchState.OTHER);
249 setKeyboard(KeyboardId.ELEMENT_ALPHABET_SHIFT_LOCK_SHIFTED, KeyboardSwitchState.OTHER);
258 setKeyboard(KeyboardId.ELEMENT_SYMBOLS, KeyboardSwitchState.OTHER);
312 OTHER(-1);
334 return KeyboardSwitchState.OTHER;
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 53 assertEquals(OTHER, 1111);
  /external/mesa3d/
Android.common.mk 19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  /external/mesa3d/src/egl/drivers/dri2/
Android.mk 19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  /external/mesa3d/src/gallium/auxiliary/
Android.mk 19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  /external/mesa3d/src/gallium/drivers/i915/
Android.mk 19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  /external/mesa3d/src/gallium/drivers/nouveau/
Android.mk 19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER

Completed in 645 milliseconds

1 2 3 4 5 6 7 8 91011>>