Home
last modified time | relevance | path

Searched refs:providerListeners (Results 1 – 1 of 1) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowLocationManager.java253 List<ListenerRegistration> providerListeners = locationListeners.get(provider); in addLocationListener() local
254 if (providerListeners == null) { in addLocationListener()
255 providerListeners = new ArrayList<>(); in addLocationListener()
256 locationListeners.put(provider, providerListeners); in addLocationListener()
258 removeDuplicates(listener, providerListeners); in addLocationListener()
259 providerListeners.add(new ListenerRegistration(provider, in addLocationListener()
265 List<ListenerRegistration> providerListeners) { in removeDuplicates() argument
266 final Iterator<ListenerRegistration> iterator = providerListeners.iterator(); in removeDuplicates()
433 List<ListenerRegistration> providerListeners = locationListeners.get( in simulateLocation() local
435 if (providerListeners == null) return; in simulateLocation()
[all …]