HomeSort by relevance Sort by last modified time
    Searched refs:activeCount (Results 1 - 25 of 46) sorted by null

1 2

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
ParticleEmitter.java 64 private int activeCount;
144 activeCount = 0;
149 int activeCount = this.activeCount;
150 if (activeCount == maxParticleCount) return;
156 this.activeCount = activeCount + 1;
163 count = Math.min(count, maxParticleCount - activeCount);
178 this.activeCount += count;
212 emitCount = Math.min(emitCount, maxParticleCount - activeCount);
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
httpproxy_test.py 119 initial_thread_count = threading.activeCount()
131 util.WaitFor(lambda: threading.activeCount() == initial_thread_count, 2)
146 initial_thread_count = threading.activeCount()
169 threading.activeCount(), initial_thread_count + request_count)
174 util.WaitFor(lambda: threading.activeCount() == initial_thread_count, 1)
  /libcore/luni/src/test/java/tests/support/
ThreadPool.java 79 Thread[] threads = new Thread[activeCount()];
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
ParticleEmitterTest.java 140 int activeCount = emitters.get(emitterIndex).getActiveCount();
141 Gdx.app.log("libgdx", activeCount + "/" + particleCount + " particles, FPS: " + Gdx.graphics.getFramesPerSecond());
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioSession.h 57 uint32_t activeCount() const { return mActiveCount; } ;
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadGroupTest.java 116 int numThreads = initialThreadGroup.activeCount();
127 int initialThreadCount = initialThreadGroup.activeCount();
143 int afterStartCount = initialThreadGroup.activeCount();
157 int afterDeathCount = initialThreadGroup.activeCount();
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioSession.cpp 210 if (valueAt(i)->activeCount() != 0) {
228 if (audioSession->activeCount() > 0 &&
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
ParticleEditor.java 299 private int activeCount;
385 activeCount = 0;
392 activeCount += emitter.getActiveCount();
398 maxActive = Math.max(maxActive, activeCount);
414 font.draw(spriteBatch, "Count: " + activeCount, 5, 35);
  /frameworks/base/services/core/java/com/android/server/job/
JobPackageTracker.java 64 int activeCount;
173 pe.activeCount++;
243 outPe.activeCount += pe.activeCount;
313 printDuration(pw, period, pe.getActiveTime(now), pe.activeCount, "active");
  /libcore/ojluni/src/main/java/java/lang/
Thread.java     [all...]
ThreadGroup.java 347 public int activeCount() {
366 result += groupsSnapshot[i].activeCount();
406 * <p> An application might use the {@linkplain #activeCount activeCount}
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadGroupTest.java 100 // Test for method int java.lang.ThreadGroup.activeCount()
102 ThreadGroup tg = new ThreadGroup("activeCount");
111 int count = tg.activeCount();
114 count = tg.activeCount();
137 assertEquals("Destroyed child can't have children", 0, child.activeCount());
742 if (aGroup.activeCount() == 0) {
ThreadTest.java 219 * java.lang.Thread#activeCount()
222 // Test for method int java.lang.Thread.activeCount()
227 active = Thread.activeCount();
229 assertTrue("Incorrect activeCount for current group: " + active, active > 1);
  /packages/apps/Email/tests/src/com/android/email/provider/
ContentCacheTests.java 159 int activeCount = ContentCache.sActiveCursors.getCount(activeCursor);
160 assertEquals(1, activeCount);
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java 243 int count = threadGroup.activeCount();
  /external/skia/src/pathops/
SkOpSegment.cpp 679 int activeCount = 0;
685 ++activeCount;
686 if (!foundAngle || (foundDone && activeCount & 1)) {
775 int activeCount = 0;
781 ++activeCount;
782 if (!foundAngle || (foundDone && activeCount & 1)) {
863 int activeCount = 0;
866 ++activeCount;
867 if (!foundAngle || (foundDone && activeCount & 1)) {
    [all...]
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
threading.py 29 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
threading.py 29 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
threading.py 29 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
threading.py 29 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
AppRunner.java     [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
PackageInstallerService.java 663 final int activeCount = getSessionCount(mSessions, callingUid);
664 if (activeCount >= MAX_ACTIVE_SESSIONS) {
    [all...]
  /external/autotest/client/tests/kvm/scripts/
virtio_console_guest.py 684 if threading.activeCount() == 2:
  /frameworks/av/services/audiopolicy/managerdefault/
AudioPolicyManager.cpp     [all...]

Completed in 493 milliseconds

1 2