Searched defs:indexOf (Results 51 - 75 of 107) sorted by relevance

12345

/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSafeArrayList.java156 return indexOf(o) >= 0;
280 public int indexOf(Object o) { method in class:SafeArrayList
/external/chromium_org/third_party/icu/source/common/
H A Duvector.cpp195 if (indexOf(other.elements[i]) < 0) {
204 if (indexOf(other.elements[i]) >= 0) {
214 int32_t j = indexOf(other.elements[i]);
226 int32_t i = other.indexOf(elements[j]);
243 int32_t i = indexOf(obj);
288 int32_t UVector::indexOf(void* obj, int32_t startIndex) const { function in class:UVector
291 return indexOf(key, startIndex, HINT_KEY_POINTER);
294 int32_t UVector::indexOf(int32_t obj, int32_t startIndex) const { function in class:UVector
297 return indexOf(key, startIndex, HINT_KEY_INTEGER);
301 int32_t UVector::indexOf(UHashTo function in class:UVector
[all...]
H A Dunistr.cpp893 UnicodeString::indexOf(const UChar *srcChars, function in class:UnicodeString
1051 int32_t pos = indexOf(oldText, oldStart, oldLength, start, length);
/external/guava/guava/src/com/google/common/collect/
H A DImmutableList.java327 public abstract int indexOf(@Nullable Object object); method in class:ImmutableList
433 @Override public int indexOf(@Nullable Object object) { method in class:ImmutableList.ReverseImmutableList
439 int index = forwardList.indexOf(object);
H A DIterables.java685 public static <T> int indexOf( method in class:Iterables
687 return Iterators.indexOf(iterable.iterator(), predicate);
H A DLists.java550 return indexOf(object) >= 0;
553 @Override public int indexOf(@Nullable Object object) { method in class:Lists.StringAsImmutableList
555 ? string.indexOf((Character) object) : -1;
652 return indexOf(o) >= 0;
655 @Override public int indexOf(@Nullable Object o) { method in class:Lists.CharSequenceAsList
807 @Override public int indexOf(@Nullable Object o) { method in class:Lists.ReverseList
813 int index = forwardList.indexOf(o);
931 * An implementation of {@link List#indexOf(Object)}.
H A DIterators.java778 public static <T> int indexOf( method in class:Iterators
H A DAbstractMultimap.java769 public int indexOf(Object o) { method in class:AbstractMultimap.WrappedList
771 return getListDelegate().indexOf(o);
H A DSynchronized.java335 public int indexOf(Object o) { method in class:Synchronized.SynchronizedList
337 return delegate().indexOf(o);
/external/guava/guava/src/com/google/common/primitives/
H A DInts.java146 public static int indexOf(int[] array, int target) { method in class:Ints
147 return indexOf(array, target, 0, array.length);
151 private static int indexOf( method in class:Ints
172 public static int indexOf(int[] array, int[] target) { method in class:Ints
501 && Ints.indexOf(array, (Integer) target, start, end) != -1;
504 @Override public int indexOf(Object target) { method in class:Ints.IntArrayAsList
507 int i = Ints.indexOf(array, (Integer) target, start, end);
H A DLongs.java116 public static int indexOf(long[] array, long target) { method in class:Longs
117 return indexOf(array, target, 0, array.length);
121 private static int indexOf( method in class:Longs
142 public static int indexOf(long[] array, long[] target) { method in class:Longs
486 && Longs.indexOf(array, (Long) target, start, end) != -1;
489 @Override public int indexOf(Object target) { method in class:Longs.LongArrayAsList
492 int i = Longs.indexOf(array, (Long) target, start, end);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterables.java643 public static <T> int indexOf( method in class:Iterables
645 return Iterators.indexOf(iterable.iterator(), predicate);
H A DIterators.java742 public static <T> int indexOf( method in class:Iterators
H A DSynchronized.java322 public int indexOf(Object o) { method in class:Synchronized.SynchronizedList
324 return delegate().indexOf(o);
/external/icu4c/common/
H A Duvector.cpp196 if (indexOf(other.elements[i]) < 0) {
205 if (indexOf(other.elements[i]) >= 0) {
215 int32_t j = indexOf(other.elements[i]);
227 int32_t i = other.indexOf(elements[j]);
244 int32_t i = indexOf(obj);
289 int32_t UVector::indexOf(void* obj, int32_t startIndex) const { function in class:UVector
292 return indexOf(key, startIndex, HINT_KEY_POINTER);
295 int32_t UVector::indexOf(int32_t obj, int32_t startIndex) const { function in class:UVector
298 return indexOf(key, startIndex, HINT_KEY_INTEGER);
302 int32_t UVector::indexOf(UElemen function in class:UVector
[all...]
H A Dunistr.cpp939 UnicodeString::indexOf(const UChar *srcChars, function in class:UnicodeString
1097 int32_t pos = indexOf(oldText, oldStart, oldLength, start, length);
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPHeaderList.java366 public int indexOf(GenericObject gobj) { method in class:SIPHeaderList
367 return hlist.indexOf(gobj);
561 public int indexOf(Object obj) { method in class:SIPHeaderList
562 return this.hlist.indexOf(obj);
/external/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSet.java1324 public int indexOf(Node elem, int index) method in class:NodeSet
1352 public int indexOf(Node elem) method in class:NodeSet
H A DNodeSetDTM.java1075 public int indexOf(int elem, int index) method in class:NodeSetDTM
1080 return super.indexOf(elem, index);
1093 public int indexOf(int elem) method in class:NodeSetDTM
1098 return super.indexOf(elem);
/external/javassist/src/main/javassist/bytecode/
H A DSignatureAttribute.java112 int j = desc.indexOf('L', i);
161 int indexOf(String s, int ch) throws BadBytecode { method in class:SignatureAttribute.Cursor
162 int i = s.indexOf(ch, position);
711 int nameEnd = cur.indexOf(sig, ':');
740 i = c.indexOf(sig, ';');
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dunistr.h853 inline int32_t indexOf(const UnicodeString& text) const;
864 inline int32_t indexOf(const UnicodeString& text,
878 inline int32_t indexOf(const UnicodeString& text,
898 inline int32_t indexOf(const UnicodeString& srcText,
915 inline int32_t indexOf(const UChar *srcChars,
931 inline int32_t indexOf(const UChar *srcChars,
952 int32_t indexOf(const UChar *srcChars,
965 inline int32_t indexOf(UChar c) const;
975 inline int32_t indexOf(UChar32 c) const;
985 inline int32_t indexOf(UCha
3759 UnicodeString::indexOf(const UnicodeString& srcText, function in class:UnicodeString
3775 UnicodeString::indexOf(const UnicodeString& text) const function in class:UnicodeString
3779 UnicodeString::indexOf(const UnicodeString& text, function in class:UnicodeString
3786 UnicodeString::indexOf(const UnicodeString& text, function in class:UnicodeString
3792 UnicodeString::indexOf(const UChar *srcChars, function in class:UnicodeString
3800 UnicodeString::indexOf(const UChar *srcChars, function in class:UnicodeString
3807 UnicodeString::indexOf(UChar c, function in class:UnicodeString
3813 UnicodeString::indexOf(UChar32 c, function in class:UnicodeString
3819 UnicodeString::indexOf(UChar c) const function in class:UnicodeString
3823 UnicodeString::indexOf(UChar32 c) const function in class:UnicodeString
3827 UnicodeString::indexOf(UChar c, function in class:UnicodeString
3834 UnicodeString::indexOf(UChar32 c, function in class:UnicodeString
[all...]
/external/icu4c/common/unicode/
H A Dunistr.h914 inline int32_t indexOf(const UnicodeString& text) const;
925 inline int32_t indexOf(const UnicodeString& text,
939 inline int32_t indexOf(const UnicodeString& text,
959 inline int32_t indexOf(const UnicodeString& srcText,
976 inline int32_t indexOf(const UChar *srcChars,
992 inline int32_t indexOf(const UChar *srcChars,
1013 int32_t indexOf(const UChar *srcChars,
1026 inline int32_t indexOf(UChar c) const;
1036 inline int32_t indexOf(UChar32 c) const;
1046 inline int32_t indexOf(UCha
3891 UnicodeString::indexOf(const UnicodeString& srcText, function in class:UnicodeString
3907 UnicodeString::indexOf(const UnicodeString& text) const function in class:UnicodeString
3911 UnicodeString::indexOf(const UnicodeString& text, function in class:UnicodeString
3918 UnicodeString::indexOf(const UnicodeString& text, function in class:UnicodeString
3924 UnicodeString::indexOf(const UChar *srcChars, function in class:UnicodeString
3932 UnicodeString::indexOf(const UChar *srcChars, function in class:UnicodeString
3939 UnicodeString::indexOf(UChar c, function in class:UnicodeString
3945 UnicodeString::indexOf(UChar32 c, function in class:UnicodeString
3951 UnicodeString::indexOf(UChar c) const function in class:UnicodeString
3955 UnicodeString::indexOf(UChar32 c) const function in class:UnicodeString
3959 UnicodeString::indexOf(UChar c, function in class:UnicodeString
3966 UnicodeString::indexOf(UChar32 c, function in class:UnicodeString
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/121/1/.cp/lib/
H A Dapitooling-ant.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.sat4j.core_2.2.0.v20100429.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 735 milliseconds

12345