/frameworks/base/media/mca/filterpacks/native/base/ |
D | utilities.h | 73 template <class Collection> 74 const typename Collection::value_type::second_type* 75 FindOrNull(const Collection& collection, in FindOrNull() 76 const typename Collection::value_type::first_type& key) { in FindOrNull() 77 typename Collection::const_iterator it = collection.find(key); in FindOrNull() 127 template <class Collection> 128 const typename Collection::value_type::second_type 129 FindPtrOrNull(const Collection& collection, in FindPtrOrNull() 130 const typename Collection::value_type::first_type& key) { in FindPtrOrNull() 131 typename Collection::const_iterator it = collection.find(key); in FindPtrOrNull() [all …]
|
/frameworks/base/media/mca/filterfw/native/base/ |
D | utilities.h | 61 template <class Collection> 62 const typename Collection::value_type::second_type* 63 FindOrNull(const Collection& collection, in FindOrNull() 64 const typename Collection::value_type::first_type& key) { in FindOrNull() 65 typename Collection::const_iterator it = collection.find(key); in FindOrNull() 115 template <class Collection> 116 const typename Collection::value_type::second_type 117 FindPtrOrNull(const Collection& collection, in FindPtrOrNull() 118 const typename Collection::value_type::first_type& key) { in FindPtrOrNull() 119 typename Collection::const_iterator it = collection.find(key); in FindPtrOrNull() [all …]
|
/frameworks/av/services/audiopolicy/engineconfigurable/src/ |
D | Collection.h | 47 class Collection : public std::map<Key, Element<Key> *> 56 Collection() in Collection() function 148 struct Collection<audio_stream_type_t>::collectionSupported {}; 150 struct Collection<std::string>::collectionSupported {}; 152 struct Collection<audio_usage_t>::collectionSupported {}; 154 struct Collection<audio_source_t>::collectionSupported {}; 156 struct Collection<routing_strategy>::collectionSupported {}; 158 typedef Collection<routing_strategy> StrategyCollection; 159 typedef Collection<audio_stream_type_t> StreamCollection; 160 typedef Collection<audio_usage_t> UsageCollection; [all …]
|
/frameworks/av/media/libmedia/include/media/ |
D | TypeConverter.h | 36 typedef SortedVector<Type> Collection; typedef 41 typedef Vector<Type> Collection; typedef 48 typedef Vector<Type> Collection; typedef 53 typedef Vector<Type> Collection; typedef 58 typedef Vector<Type> Collection; typedef 63 typedef SortedVector<Type> Collection; typedef 71 typedef Vector<Type> Collection; typedef 76 typedef Vector<Type> Collection; typedef 81 typedef Vector<Type> Collection; typedef 86 typedef Vector<Type> Collection; typedef [all …]
|
/frameworks/av/include/media/ |
D | TypeConverter.h | 36 typedef SortedVector<Type> Collection; typedef 41 typedef Vector<Type> Collection; typedef 48 typedef Vector<Type> Collection; typedef 53 typedef Vector<Type> Collection; typedef 58 typedef Vector<Type> Collection; typedef 63 typedef SortedVector<Type> Collection; typedef 71 typedef Vector<Type> Collection; typedef 76 typedef Vector<Type> Collection; typedef 81 typedef Vector<Type> Collection; typedef 86 typedef Vector<Type> Collection; typedef [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/ |
D | AbstractCollection.java | 19 import java.util.Collection; 22 abstract class AbstractCollection<T> implements Collection<T> { 60 public boolean containsAll(Collection<?> collection) { in containsAll() 65 public boolean addAll(Collection<? extends T> collection) { in addAll() 70 public boolean removeAll(Collection<?> collection) { in removeAll() 75 public boolean retainAll(Collection<?> collection) { in retainAll()
|
D | TrackedCollections.java | 23 import java.util.Collection; 34 private final WeakIdentityHashMap<Collection<?>, CollectionState> mCollections 40 public synchronized void track(Collection<?> collection, String tag) { in track() 94 public synchronized void dump(PrintWriter pw, Predicate<Collection<?>> filter) { in dump() 95 for (Map.Entry<WeakReference<Collection<?>>, CollectionState> entry in dump() 97 Collection<?> key = entry.getKey().get(); in dump()
|
/frameworks/support/compat/java/android/support/v4/util/ |
D | MapCollections.java | 20 import java.util.Collection; 172 public boolean addAll(Collection<? extends Map.Entry<K, V>> collection) { in addAll() 199 public boolean containsAll(Collection<?> collection) { in containsAll() 225 public boolean removeAll(Collection<?> collection) { in removeAll() 230 public boolean retainAll(Collection<?> collection) { in retainAll() 275 public boolean addAll(Collection<? extends K> collection) { in addAll() 290 public boolean containsAll(Collection<?> collection) { in containsAll() 315 public boolean removeAll(Collection<?> collection) { in removeAll() 320 public boolean retainAll(Collection<?> collection) { in retainAll() 355 final class ValuesCollection implements Collection<V> { [all …]
|
D | ArrayMap.java | 19 import java.util.Collection; 129 public boolean containsAll(Collection<?> collection) { in containsAll() 150 public boolean removeAll(Collection<?> collection) { in removeAll() 160 public boolean retainAll(Collection<?> collection) { in retainAll() 202 public Collection<V> values() { in values()
|
/frameworks/base/core/java/android/util/ |
D | MapCollections.java | 22 import java.util.Collection; 175 public boolean addAll(Collection<? extends Map.Entry<K, V>> collection) { in addAll() 202 public boolean containsAll(Collection<?> collection) { in containsAll() 228 public boolean removeAll(Collection<?> collection) { in removeAll() 233 public boolean retainAll(Collection<?> collection) { in retainAll() 278 public boolean addAll(Collection<? extends K> collection) { in addAll() 293 public boolean containsAll(Collection<?> collection) { in containsAll() 318 public boolean removeAll(Collection<?> collection) { in removeAll() 323 public boolean retainAll(Collection<?> collection) { in retainAll() 358 final class ValuesCollection implements Collection<V> { [all …]
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/ |
D | Serializer.h | 52 typedef AudioGainCollection Collection; typedef 78 typedef AudioProfileVector Collection; typedef 99 typedef IOProfileCollection Collection; typedef 123 typedef DeviceVector Collection; typedef 145 typedef AudioRouteVector Collection; typedef 169 typedef HwModuleCollection Collection; typedef 206 typedef VolumeCurvesCollection Collection; typedef
|
D | TypeConverter.h | 29 typedef Vector<Type> Collection; typedef 34 typedef Vector<Type> Collection; typedef 39 typedef Vector<Type> Collection; typedef 44 typedef Vector<Type> Collection; typedef
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/ |
D | Preconditions.java | 19 import java.util.Collection; 142 public static <T> Collection<T> checkCollectionElementsNotNull(final Collection<T> value, in checkCollectionElementsNotNull() 171 public static <T> Collection<T> checkCollectionNotEmpty(final Collection<T> value, in checkCollectionNotEmpty()
|
D | InMatcher.java | 24 import java.util.Collection; 36 protected Collection<T> mValues; 38 public InMatcher(Collection<T> values) { in InMatcher() 71 public static <T> Matcher<T> in(Collection<T> operand) { in in()
|
/frameworks/opt/vcard/java/com/android/vcard/ |
D | VCardProperty.java | 22 import java.util.Collection; 65 private Map<String, Collection<String>> mParameterMap = 66 new HashMap<String, Collection<String>>(); 93 Collection<String> values; in addParameter() 150 public Map<String, Collection<String>> getParameterMap() { in getParameterMap() 154 public Collection<String> getParameters(String type) { in getParameters()
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
D | WifiP2pGroupList.java | 18 import java.util.Collection; 75 public Collection<WifiP2pGroup> getGroupList() { in getGroupList() 133 final Collection<WifiP2pGroup> groups = mGroups.snapshot().values(); in getNetworkId() 158 final Collection<WifiP2pGroup> groups = mGroups.snapshot().values(); in getNetworkId() 196 final Collection<WifiP2pGroup> groups = mGroups.snapshot().values(); in contains() 208 final Collection<WifiP2pGroup> groups = mGroups.snapshot().values(); in toString() 222 final Collection<WifiP2pGroup> groups = mGroups.snapshot().values(); in writeToParcel()
|
/frameworks/base/core/java/android/hardware/camera2/legacy/ |
D | RequestHolder.java | 23 import java.util.Collection; 45 private final Collection<Long> mJpegSurfaceIds; 61 private final Collection<Long> mJpegSurfaceIds; 73 boolean repeating, Collection<Long> jpegSurfaceIds) { in Builder() 162 int numPreviewTargets, Collection<Long> jpegSurfaceIds) { in RequestHolder() 211 public Collection<Surface> getHolderTargets() { in getHolderTargets()
|
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/ |
D | ProcessErrorsTest.java | 30 import java.util.Collection; 54 private static final Collection<ProcessError> mAsyncErrors = 100 final Collection<ProcessError> errProcs = runOneActivity(app); in testRunAllActivities() 142 public Collection<ProcessError> runOneActivity(ResolveInfo app) { in runOneActivity() 152 final Collection<ProcessError> preErrProcs = in runOneActivity() 179 final Collection<ProcessError> errProcs = in runOneActivity() 268 static String reportWrappedListContents(Collection<ProcessError> errList) { in reportWrappedListContents() 282 private static String reportListContents(Collection<ProcessErrorStateInfo> errList) { in reportListContents() 325 public static Collection<ProcessError> fromCollection(Collection<ProcessErrorStateInfo> in) in fromCollection()
|
/frameworks/base/core/java/android/app/admin/ |
D | SecurityLog.java | 28 import java.util.Collection; 209 public static native void readEvents(Collection<SecurityEvent> output) throws IOException; in readEvents() 215 public static native void readEventsSince(long timestamp, Collection<SecurityEvent> output) in readEventsSince() 223 public static native void readPreviousEvents(Collection<SecurityEvent> output) in readPreviousEvents() 232 public static native void readEventsOnWrapping(long timestamp, Collection<SecurityEvent> output) in readEventsOnWrapping()
|
/frameworks/support/buildSrc/src/main/groovy/android/support/doclava/ |
D | DoclavaTask.groovy | 48 private Collection<File> mDocletpath 52 Collection doclavaErrors = DEFAULT_DOCLAVA_ERRORS 54 Collection doclavaWarnings = DEFAULT_DOCLAVA_WARNINGS 57 Collection doclavaHidden = DEFAULT_DOCLAVA_HIDDEN 66 Collection hiddenPackages 132 public Collection<File> getDocletpath() { 141 public void setDocletpath(Collection<File> docletpath) { 147 public void setDoclavaErrors(Collection errors) { 152 public void setDoclavaWarnings(Collection warnings) { 157 public void setDoclavaHidden(Collection hidden) { [all …]
|
/frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/ |
D | StateWaiter.java | 25 import java.util.Collection; 120 public int waitForAnyOfStates(Collection<Integer> states, final long timeoutMs) { in waitForAnyOfStates() 180 public void appendStateNames(StringBuilder s, Collection<Integer> states) { in appendStateNames() 212 private Collection<Integer> checkStateCollectionInRange(Collection<Integer> states) { in checkStateCollectionInRange()
|
/frameworks/av/media/libmedia/ |
D | TypeConverter.cpp | 349 SampleRateTraits::Collection samplingRatesFromString( in samplingRatesFromString() 352 SampleRateTraits::Collection samplingRateCollection; in samplingRatesFromString() 357 FormatTraits::Collection formatsFromString( in formatsFromString() 360 FormatTraits::Collection formatCollection; in formatsFromString() 385 ChannelTraits::Collection channelMasksFromString( in channelMasksFromString() 388 ChannelTraits::Collection channelMaskCollection; in channelMasksFromString() 395 InputChannelTraits::Collection inputChannelMasksFromString( in inputChannelMasksFromString() 398 InputChannelTraits::Collection inputChannelMaskCollection; in inputChannelMasksFromString() 404 OutputChannelTraits::Collection outputChannelMasksFromString( in outputChannelMasksFromString() 407 OutputChannelTraits::Collection outputChannelMaskCollection; in outputChannelMasksFromString()
|
/frameworks/base/location/java/android/location/ |
D | GpsMeasurementsEvent.java | 26 import java.util.Collection; 56 private final Collection<GpsMeasurement> mReadOnlyMeasurements; 89 Collection<GpsMeasurement> measurementCollection = Arrays.asList(measurements); in GpsMeasurementsEvent() 102 public Collection<GpsMeasurement> getMeasurements() { in getMeasurements()
|
D | GnssMeasurementsEvent.java | 29 import java.util.Collection; 38 private final Collection<GnssMeasurement> mReadOnlyMeasurements; 96 Collection<GnssMeasurement> measurementCollection = Arrays.asList(measurements); in GnssMeasurementsEvent() 116 public Collection<GnssMeasurement> getMeasurements() { in getMeasurements()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/leak/ |
D | LeakDetectorTest.java | 35 import java.util.Collection; 64 Collection<?> object = new ArrayList<>(); in trackCollection_doesNotLeakTrackedObject() 86 Collection<Object> col1 = new ArrayList<>(); in testDump() 102 Collection<Object> col1 = new ArrayList<>(); in testDisabled()
|