Home
last modified time | relevance | path

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

/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/audio/
DOpenALAudio.java44 private IntArray idleSources, allSources; field in OpenALAudio
79 allSources = new IntArray(false, simultaneousSources); in OpenALAudio()
83 allSources.add(sourceID); in OpenALAudio()
85 idleSources = new IntArray(allSources); in OpenALAudio()
283 for (int i = 0, n = allSources.size; i < n; i++) { in dispose()
284 int sourceID = allSources.get(i); in dispose()
/external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/audio/
DOpenALAudio.java61 private IntArray idleSources, allSources; field in OpenALAudio
102 allSources = new IntArray(false, simultaneousSources); in OpenALAudio()
106 allSources.add(sourceID); in OpenALAudio()
108 idleSources = new IntArray(allSources); in OpenALAudio()
306 for (int i = 0, n = allSources.size; i < n; i++) { in dispose()
307 int sourceID = allSources.get(i); in dispose()
/external/guice/core/src/com/google/inject/internal/
DErrors.java334 Formatter allSources = new Formatter(); in childBindingAlreadySet() local
337 allSources.format("%n (bound by a just-in-time binding)"); in childBindingAlreadySet()
339 allSources.format("%n bound at %s", source); in childBindingAlreadySet()
347 key, allSources.out()); in childBindingAlreadySet()