Searched defs:where (Results 1 - 6 of 6) sorted by relevance

/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
H A DBreakIterator.java70 public static BreakIterator getCharacterInstance(Locale where) { argument
71 int iter = NativeBreakIterator.getCharacterInstanceImpl(where.toString());
80 public static BreakIterator getLineInstance(Locale where) { argument
81 int iter = NativeBreakIterator.getLineInstanceImpl(where.toString());
90 public static BreakIterator getSentenceInstance(Locale where) { argument
91 int iter = NativeBreakIterator.getSentenceInstanceImpl(where.toString());
100 public static BreakIterator getWordInstance(Locale where) { argument
101 int iter = NativeBreakIterator.getWordInstanceImpl(where.toString());
/dalvik/libcore/text/src/main/java/java/text/
H A DBreakIterator.java46 * positions where it is legal for a text editor to wrap lines. This is similar
284 * @param where
288 public static BreakIterator getCharacterInstance(Locale where) { argument
289 if (where == null) {
294 .getCharacterInstance(where));
312 * @param where
315 * @throws NullPointerException if {@code where} is {@code null}.
317 public static BreakIterator getLineInstance(Locale where) { argument
318 if (where == null) {
323 .getLineInstance(where));
346 getSentenceInstance(Locale where) argument
375 getWordInstance(Locale where) argument
[all...]
/dalvik/vm/
H A DPointerSet.c184 int i, where; local
186 if (!dvmPointerSetHas(pSet, ptr, &where))
189 if (where != pSet->count-1) {
191 memmove(&pSet->list[where], &pSet->list[where+1],
192 (pSet->count-1 - where) * sizeof(pSet->list[0]));
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/
H A DZoneInfo.java56 private static String nullName(byte[] data, int where, int off) { argument
60 int end = where + off;
64 return new String(data, where + off, end - (where + off));
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/fortress/
H A DPolicyUtils.java436 * where <i>n</i> is an integer and <i>prefix</i> is a passed parameter.
609 * presented in <code>where</code> array.
612 * @param where second array, may be <code>null</code>
617 public static boolean matchSubset(Object[] what, Object[] where) { argument
624 if (where == null) {
628 for (int j = 0; j < where.length; j++) {
629 if (what[i].equals(where[j])) {
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
H A DCodeSourceTest.java344 * presented in <code>where</code> certificates.
347 * @param where - second array of Certificates
349 * (including null) is presented in 'where' <code>false</code> otherwise
351 private static boolean presented(Certificate[] what, Certificate[] where) { argument
358 for (int j = 0; j < where.length; j++) {
359 if (where[j] == null) {
369 for (int j = 0; j < where.length; j++) {
370 if (what[i].equals(where[j])) {

Completed in 1469 milliseconds