Searched defs:contains (Results 51 - 58 of 58) sorted by last modified time

123

/frameworks/base/core/java/android/util/
H A DMapCollections.java189 public boolean contains(Object o) { method in class:MapCollections.EntrySet
205 if (!contains(it.next())) {
288 public boolean contains(Object object) { method in class:MapCollections.KeySet
376 public boolean contains(Object object) { method in class:MapCollections.ValuesCollection
384 if (!contains(it.next())) {
417 if (collection.contains(cur)) {
433 if (!collection.contains(cur)) {
482 if (!collection.contains(it.next())) {
H A DRange.java111 public boolean contains(T value) { method in class:Range
131 public boolean contains(Range<T> range) { method in class:Range
/frameworks/base/core/java/com/android/internal/util/
H A DArrayUtils.java36 * ArrayUtils contains some methods that you can call to find out
184 public static <T> boolean contains(@Nullable T[] array, T value) { method in class:ArrayUtils
206 if (!contains(array, checkItem)) {
219 if (contains(array, checkItem)) {
226 public static boolean contains(@Nullable int[] array, int value) { method in class:ArrayUtils
236 public static boolean contains(@Nullable long[] array, long value) { method in class:ArrayUtils
246 public static boolean contains(@Nullable char[] array, char value) { method in class:ArrayUtils
262 if (!contains(array, checkItem)) {
305 if (!allowDuplicates && contains(array, element)) return array;
323 if (!contains(arra
507 public static <T> boolean contains(@Nullable Collection<T> cur, T val) { method in class:ArrayUtils
[all...]
/frameworks/base/core/java/android/app/
H A DSharedPreferencesImpl.java298 public boolean contains(String key) { method in class:SharedPreferencesImpl
/frameworks/base/core/java/android/content/
H A DSharedPreferences.java337 * Checks whether the preferences contains a preference.
343 boolean contains(String key); method in interface:SharedPreferences
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp261 bool AMessage::contains(const char *name) const { function in class:android::AMessage
/frameworks/av/drm/libdrmframework/include/
H A DPlugInManager.h119 if (!contains(rsPlugInId)) {
134 if (contains(rsPlugInPath)) {
173 if (!contains(rsPlugInPath)) {
188 * True if TPlugInManager contains rsPlugInId
190 bool contains(const String8& rsPlugInId) { function in class:android::TPlugInManager
/frameworks/av/media/libstagefright/codec2/include/
H A DC2Buffer.h490 * This class is copiable and contains a reference to the allocation that it is based on.
768 inline bool contains(const C2Rect &other) const { function in struct:android::C2Rect
796 return contains(other);
800 return contains(other) && !operator==(other);
804 return other.contains(*this);
808 return other.contains(*this) && !operator==(other);
971 * This class is copiable and contains a reference to the allocation that it is based on.
1060 LINEAR, ///< the buffer contains a single linear block
1061 LINEAR_CHUNKS, ///< the buffer contains one or more linear blocks
1062 GRAPHIC, ///< the buffer contains
[all...]

Completed in 1918 milliseconds

123