Searched refs:gc (Results 1 - 25 of 33) sorted by relevance

12

/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DShadowPainter.java243 Graphics2D gc = image.createGraphics();
245 drawRectangleShadow(gc, x, y, width, height);
247 gc.dispose();
264 Graphics2D gc = image.createGraphics();
266 drawSmallRectangleShadow(gc, x, y, width, height);
268 gc.dispose();
289 * @param gc the graphics context to draw into
295 public static void drawRectangleShadow(Graphics2D gc, int x, int y, int width, int height) { argument
309 gc.drawImage(ShadowBottomLeft, x - ShadowBottomLeft.getWidth(null), y + height, null);
310 gc
336 drawSmallRectangleShadow(Graphics2D gc, int x, int y, int width, int height) argument
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DHeapTest.java105 Runtime.getRuntime().gc();
148 Runtime.getRuntime().gc();
209 Runtime.getRuntime().gc();
217 Runtime.getRuntime().gc();
225 Runtime.getRuntime().gc();
322 Runtime.getRuntime().gc();
331 Runtime.getRuntime().gc();
341 Runtime.getRuntime().gc();
351 // System.out.println("gc from finalize()");
352 Runtime.getRuntime().gc();
[all...]
/frameworks/base/core/java/android/util/
H A DLongSparseArray.java153 private void gc() { method in class:LongSparseArray
154 // Log.e("SparseArray", "gc start with " + mSize);
178 // Log.e("SparseArray", "gc end with " + mSize);
201 gc();
219 gc();
237 gc();
257 gc();
270 gc();
283 gc();
299 gc();
[all...]
H A DSparseArray.java190 private void gc() { method in class:SparseArray
191 // Log.e("SparseArray", "gc start with " + mSize);
215 // Log.e("SparseArray", "gc end with " + mSize);
238 gc();
256 gc();
277 gc();
300 gc();
315 gc();
328 gc();
346 gc();
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java121 private void gc() { method in class:SparseWeakArray
166 gc();
184 gc();
197 gc();
210 gc();
223 gc();
236 gc();
252 gc();
288 gc();
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java145 private void gc() { method in class:LongSparseArray
146 // Log.e("SparseArray", "gc start with " + mSize);
170 // Log.e("SparseArray", "gc end with " + mSize);
193 gc();
231 gc();
244 gc();
258 gc();
271 gc();
284 gc();
300 gc();
[all...]
H A DSparseArrayCompat.java138 private void gc() { method in class:SparseArrayCompat
139 // Log.e("SparseArray", "gc start with " + mSize);
163 // Log.e("SparseArray", "gc end with " + mSize);
186 gc();
224 gc();
237 gc();
251 gc();
264 gc();
277 gc();
295 gc();
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DPositionMap.java148 private void gc() { method in class:PositionMap
149 // Log.e("SparseArray", "gc start with " + mSize);
173 // Log.e("SparseArray", "gc end with " + mSize);
196 gc();
234 gc();
247 gc();
261 gc();
274 gc();
287 gc();
305 gc();
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderDrawable.java167 Graphics2D gc = image.createGraphics();
168 gc.setComposite(AlphaComposite.Src);
170 gc.setColor(new Color(0x00000000, true));
171 gc.fillRect(0, 0, w, h);
174 gc.dispose();
H A DRenderSessionImpl.java453 Graphics2D gc = mImage.createGraphics();
454 gc.setColor(new Color(params.getOverrideBgColor(), true));
455 gc.setComposite(AlphaComposite.Src);
456 gc.fillRect(0, 0, mMeasuredScreenWidth, mMeasuredScreenHeight);
457 gc.dispose();
474 Graphics2D gc = mImage.createGraphics();
475 gc.setComposite(AlphaComposite.Src);
477 gc.setColor(new Color(0x00000000, true));
478 gc.fillRect(0, 0,
482 gc
[all...]
/frameworks/base/core/java/android/os/
H A DPerformanceCollector.java536 * Starts allocation counting. This triggers a gc and resets the counts.
543 Runtime.getRuntime().gc();
545 Runtime.getRuntime().gc();
557 Runtime.getRuntime().gc();
559 Runtime.getRuntime().gc();
H A DStrictMode.java1620 System.gc();
1622 System.gc();
2305 System.gc();
2307 System.gc();
/frameworks/base/tools/preload/loadclass/
H A DLoadClass.java49 System.gc();
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DLeakTest.java68 System.gc();
/frameworks/base/core/java/android/test/
H A DInstrumentationTestCase.java364 Runtime.getRuntime().gc();
366 Runtime.getRuntime().gc();
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaTestUtil.java58 System.gc();
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java1500 for (int gc = 0; gc < this.allowedGroupCiphers.size(); gc++) {
1501 if (this.allowedGroupCiphers.get(gc)) {
1503 if (gc < GroupCipher.strings.length) {
1504 sbuf.append(GroupCipher.strings[gc]);
/frameworks/base/core/java/android/ddm/
H A DDdmHandleHeap.java222 Runtime.getRuntime().gc();
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteInit.java497 System.gc();
499 System.gc();
730 // Do an initial gc to clean up after startup
/frameworks/base/core/java/android/app/
H A DInstrumentation.java1336 * Starts allocation counting. This triggers a gc and resets the counts.
1346 Runtime.getRuntime().gc();
1348 Runtime.getRuntime().gc();
1363 Runtime.getRuntime().gc();
1365 Runtime.getRuntime().gc();
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
H A DMain.java337 private static void gc() { method in class:Main
338 // See RuntimeUtil#gc in jlibs (http://jlibs.in/)
343 System.gc();
355 gc();
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DTestDocumentsProvider.java267 System.gc();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java1363 int gc = 0;
1364 if (TextUtils.isEmpty(deviceAddress)) return gc;
1366 if (TextUtils.isEmpty(peerInfo)) return gc;
1376 return gc;
1380 return gc;
/frameworks/base/test-runner/src/android/test/
H A DTestRunner.java416 Runtime.getRuntime().gc();
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java1934 System.gc();
2628 System.gc();

Completed in 5435 milliseconds

12