Home
last modified time | relevance | path

Searched refs:Collection (Results 1 – 25 of 260) sorted by relevance

1234567891011

/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
DTypeConverter.h33 typedef SortedVector<Type> Collection; typedef
38 typedef Vector<Type> Collection; typedef
43 typedef Vector<Type> Collection; typedef
48 typedef Vector<Type> Collection; typedef
53 typedef Vector<Type> Collection; typedef
58 typedef SortedVector<Type> Collection; typedef
66 typedef Vector<Type> Collection; typedef
71 typedef Vector<Type> Collection; typedef
76 typedef Vector<Type> Collection; typedef
82 typedef Vector<Type> Collection; typedef
[all …]
DSerializer.h52 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
/frameworks/base/media/mca/filterfw/native/base/
Dutilities.h73 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/filterpacks/native/base/
Dutilities.h73 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/av/services/audiopolicy/engineconfigurable/src/
DCollection.h47 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/support/v4/java/android/support/v4/util/
DMapCollections.java20 import java.util.Collection;
170 public boolean addAll(Collection<? extends Map.Entry<K, V>> collection) { in addAll()
197 public boolean containsAll(Collection<?> collection) { in containsAll()
223 public boolean removeAll(Collection<?> collection) { in removeAll()
228 public boolean retainAll(Collection<?> collection) { in retainAll()
273 public boolean addAll(Collection<? extends K> collection) { in addAll()
288 public boolean containsAll(Collection<?> collection) { in containsAll()
313 public boolean removeAll(Collection<?> collection) { in removeAll()
318 public boolean retainAll(Collection<?> collection) { in retainAll()
353 final class ValuesCollection implements Collection<V> {
[all …]
DArrayMap.java19 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/
DMapCollections.java22 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 …]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DRootsLoader.java24 import java.util.Collection;
26 public class RootsLoader extends AsyncTaskLoader<Collection<RootInfo>> {
32 private Collection<RootInfo> mResult;
44 public final Collection<RootInfo> loadInBackground() { in loadInBackground()
49 public void deliverResult(Collection<RootInfo> result) { in deliverResult()
/frameworks/opt/vcard/java/com/android/vcard/
DVCardProperty.java22 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/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
DPreconditions.java19 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()
DInMatcher.java24 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/base/wifi/java/android/net/wifi/p2p/
DWifiP2pGroupList.java18 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/
DRequestHolder.java23 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/core/java/android/app/admin/
DSecurityLog.java28 import java.util.Collection;
181 public static native void readEvents(Collection<SecurityEvent> output) throws IOException; in readEvents()
187 public static native void readEventsSince(long timestamp, Collection<SecurityEvent> output) in readEventsSince()
195 public static native void readPreviousEvents(Collection<SecurityEvent> output) in readPreviousEvents()
204 public static native void readEventsOnWrapping(long timestamp, Collection<SecurityEvent> output) in readEventsOnWrapping()
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
DProcessErrorsTest.java30 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/ex/camera2/public/src/com/android/ex/camera2/utils/
DStateWaiter.java25 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/base/packages/SystemUI/src/com/android/systemui/qs/customize/
DTileQueryHelper.java41 import java.util.Collection;
141 AsyncTask<Collection<QSTile<?>>, Void, Collection<TileInfo>> {
143 protected Collection<TileInfo> doInBackground(Collection<QSTile<?>>... params) { in doInBackground()
176 private State getState(Collection<QSTile<?>> tiles, String spec) { in getState()
188 protected void onPostExecute(Collection<TileInfo> result) { in onPostExecute()
/frameworks/base/location/java/android/location/
DGpsMeasurementsEvent.java26 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()
DGnssMeasurementsEvent.java29 import java.util.Collection;
45 private final Collection<GnssMeasurement> mReadOnlyMeasurements;
106 Collection<GnssMeasurement> measurementCollection = Arrays.asList(measurements); in GnssMeasurementsEvent()
123 public Collection<GnssMeasurement> getMeasurements() { in getMeasurements()
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/services/
DTestScheduledExecutorService.java23 import java.util.Collection;
87 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) in invokeAll()
93 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks, long timeout, in invokeAll()
99 public <T> T invokeAny(Collection<? extends Callable<T>> tasks) in invokeAny()
105 public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) in invokeAny()
/frameworks/base/tools/layoutlib/create/tests/mock_data/mock_android/dummy/
DInnerTest.java20 import java.util.Collection;
79 public <T extends InnerTest> void genericMethod4(T[] a, Collection<T> b, Collection<?> c) { in genericMethod4()
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
DImportTestProvider.java31 import java.util.Collection;
41 private final Map<String, Collection<ContentValues>>
42 mMimeTypeToExpectedContentValues = new HashMap<String, Collection<ContentValues>>();
47 final Collection<ContentValues> contentValuesCollection; in addExpectedContentValues()
115 final Collection<ContentValues> contentValuesCollection = in applyBatch()
159 for (Collection<ContentValues> contentValuesCollection : in verify()
/frameworks/base/tools/preload2/src/com/android/preload/
DDumpDataIO.java28 import java.util.Collection;
45 public static String serialize(Collection<DumpData> data) { in serialize()
74 public static Collection<DumpData> deserialize(File f) throws Exception { in deserialize()
90 Collection<DumpData> data = new LinkedList<DumpData>();
/frameworks/ex/common/java/com/android/common/contacts/
DDataUsageStatUpdater.java37 import java.util.Collection;
80 public boolean updateWithRfc822Address(Collection<CharSequence> texts){ in updateWithRfc822Address()
105 public boolean updateWithAddress(Collection<String> addresses) { in updateWithAddress()
155 public boolean updateWithPhoneNumber(Collection<String> numbers) { in updateWithPhoneNumber()
198 private boolean update(Collection<Long> contactIds, Collection<Long> dataIds, String type) { in update()

1234567891011