Searched defs:POOL_LIMIT (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/room/runtime/src/main/java/android/arch/persistence/room/
H A DRoomSQLiteQuery.java46 static final int POOL_LIMIT = 15; field in class:RoomSQLiteQuery
49 // Once we hit POOL_LIMIT, we'll bring the pool size back to the desired number. We always
140 if (sQueryPool.size() > POOL_LIMIT) {
/frameworks/base/core/java/android/view/
H A DDisplayListCanvas.java40 private static final int POOL_LIMIT = 25; field in class:DisplayListCanvas
45 new SynchronizedPool<>(POOL_LIMIT);
H A DView.java25177 * POOL_LIMIT objects that get reused. This reduces memory allocations
25181 private static final int POOL_LIMIT = 10; field in class:View.AttachInfo.InvalidateInfo
25184 new SynchronizedPool<InvalidateInfo>(POOL_LIMIT);
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java1884 private static final int POOL_LIMIT = 100; field in class:RelativeLayout.DependencyGraph.Node
1886 new SynchronizedPool<Node>(POOL_LIMIT);

Completed in 136 milliseconds