/frameworks/support/v4/java/android/support/v4/util/ |
D | SparseArrayCompat.java | 113 private void gc() { in gc() method in SparseArrayCompat 160 gc(); in put() 198 gc(); in size() 211 gc(); in keyAt() 224 gc(); in valueAt() 237 gc(); in setValueAt() 250 gc(); in indexOfKey() 266 gc(); in indexOfValue() 302 gc(); in append()
|
D | LongSparseArray.java | 120 private void gc() { in gc() method in LongSparseArray 168 gc(); in put() 206 gc(); in size() 219 gc(); in keyAt() 233 gc(); in valueAt() 246 gc(); in setValueAt() 259 gc(); in indexOfKey() 275 gc(); in indexOfValue() 311 gc(); in append()
|
/frameworks/base/core/java/android/util/ |
D | SparseArray.java | 122 private void gc() { in gc() method in SparseArray 170 gc(); in put() 208 gc(); in size() 221 gc(); in keyAt() 235 gc(); in valueAt() 248 gc(); in setValueAt() 261 gc(); in indexOfKey() 277 gc(); in indexOfValue() 313 gc(); in append()
|
D | LongSparseArray.java | 122 private void gc() { in gc() method in LongSparseArray 170 gc(); in put() 208 gc(); in size() 221 gc(); in keyAt() 235 gc(); in valueAt() 248 gc(); in setValueAt() 261 gc(); in indexOfKey() 277 gc(); in indexOfValue() 313 gc(); in append()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/ |
D | SparseWeakArray.java | 121 private void gc() { in gc() method in SparseWeakArray 178 gc(); in put() 216 gc(); in size() 229 gc(); in keyAt() 242 gc(); in valueAt() 255 gc(); in setValueAt() 268 gc(); in indexOfKey() 284 gc(); in indexOfValue() 320 gc(); in append()
|
/frameworks/base/tests/CoreTests/android/core/ |
D | HeapTest.java | 105 Runtime.getRuntime().gc(); in testGcSoftRefs() 148 Runtime.getRuntime().gc(); in xxtestSoftRefPartialClean() 209 Runtime.getRuntime().gc(); in testWeakRefs() 217 Runtime.getRuntime().gc(); in testWeakRefs() 225 Runtime.getRuntime().gc(); in testWeakRefs() 322 Runtime.getRuntime().gc(); in testPhantomRefs() 331 Runtime.getRuntime().gc(); in testPhantomRefs() 341 Runtime.getRuntime().gc(); in testPhantomRefs() 352 Runtime.getRuntime().gc(); in finalize() 379 Runtime.getRuntime().gc(); in testWeakRefsAndFinalizers() [all …]
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | RenderDrawable.java | 121 Graphics2D gc = image.createGraphics(); in getImage() local 122 gc.setComposite(AlphaComposite.Src); in getImage() 124 gc.setColor(new Color(0x00000000, true)); in getImage() 125 gc.fillRect(0, 0, w, h); in getImage() 128 gc.dispose(); in getImage()
|
D | RenderSessionImpl.java | 542 Graphics2D gc = mImage.createGraphics(); in render() local 543 gc.setColor(new Color(params.getOverrideBgColor(), true)); in render() 544 gc.setComposite(AlphaComposite.Src); in render() 545 gc.fillRect(0, 0, mMeasuredScreenWidth, mMeasuredScreenHeight); in render() 546 gc.dispose(); in render() 559 Graphics2D gc = mImage.createGraphics(); in render() local 560 gc.setComposite(AlphaComposite.Src); in render() 562 gc.setColor(new Color(0x00000000, true)); in render() 563 gc.fillRect(0, 0, in render() 567 gc.dispose(); in render()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | ZygoteInit.java | 259 System.gc(); in preloadClasses() 286 System.gc(); in preloadClasses() 335 System.gc(); in preloadResources() 373 System.gc(); in preloadColorStateLists() 401 System.gc(); in preloadDrawables() 426 /*package*/ static void gc() { in gc() method in ZygoteInit 432 System.gc(); in gc() 434 System.gc(); in gc() 436 System.gc(); in gc() 530 gc(); in main() [all …]
|
D | BinderInternal.java | 89 Runtime.getRuntime().gc(); in forceGc()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | Ticker.java | 54 int gc = Character.getType(c); in isGraphicOrEmoji() local 55 return gc != Character.CONTROL in isGraphicOrEmoji() 56 && gc != Character.FORMAT in isGraphicOrEmoji() 57 && gc != Character.UNASSIGNED in isGraphicOrEmoji() 58 && gc != Character.LINE_SEPARATOR in isGraphicOrEmoji() 59 && gc != Character.PARAGRAPH_SEPARATOR in isGraphicOrEmoji() 60 && gc != Character.SPACE_SEPARATOR; in isGraphicOrEmoji()
|
/frameworks/base/wifi/java/android/net/wifi/ |
D | WifiConfiguration.java | 405 for (int gc = 0; gc < this.allowedGroupCiphers.size(); gc++) { in toString() 406 if (this.allowedGroupCiphers.get(gc)) { in toString() 408 if (gc < GroupCipher.strings.length) { in toString() 409 sbuf.append(GroupCipher.strings[gc]); in toString()
|
D | WifiNative.java | 679 int gc = 0; in getGroupCapability() local 680 if (TextUtils.isEmpty(deviceAddress)) return gc; in getGroupCapability() 682 if (TextUtils.isEmpty(peerInfo)) return gc; in getGroupCapability() 692 return gc; in getGroupCapability() 696 return gc; in getGroupCapability()
|
/frameworks/base/core/java/android/os/ |
D | PerformanceCollector.java | 543 Runtime.getRuntime().gc(); in startAllocCounting() 545 Runtime.getRuntime().gc(); in startAllocCounting() 557 Runtime.getRuntime().gc(); in stopAllocCounting() 559 Runtime.getRuntime().gc(); in stopAllocCounting()
|
D | StrictMode.java | 1435 Runtime.getRuntime().gc(); in conditionallyCheckInstanceCounts() 1989 Runtime.getRuntime().gc(); in decrementExpectedActivityCount()
|
/frameworks/base/core/java/android/text/ |
D | TextUtils.java | 1424 int gc = Character.getType(str.charAt(i)); in isGraphic() local 1425 if (gc != Character.CONTROL in isGraphic() 1426 && gc != Character.FORMAT in isGraphic() 1427 && gc != Character.SURROGATE in isGraphic() 1428 && gc != Character.UNASSIGNED in isGraphic() 1429 && gc != Character.LINE_SEPARATOR in isGraphic() 1430 && gc != Character.PARAGRAPH_SEPARATOR in isGraphic() 1431 && gc != Character.SPACE_SEPARATOR) { in isGraphic() 1442 int gc = Character.getType(c); in isGraphic() local 1443 return gc != Character.CONTROL in isGraphic() [all …]
|
/frameworks/base/core/java/android/test/ |
D | InstrumentationTestCase.java | 358 Runtime.getRuntime().gc(); in tearDown() 360 Runtime.getRuntime().gc(); in tearDown()
|
/frameworks/base/tools/preload/loadclass/ |
D | LoadClass.java | 49 System.gc(); in main()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
D | MediaTestUtil.java | 58 System.gc(); in getNativeHeapDump()
|
/frameworks/base/core/java/android/app/ |
D | Instrumentation.java | 1254 Runtime.getRuntime().gc(); in startAllocCounting() 1256 Runtime.getRuntime().gc(); in startAllocCounting() 1268 Runtime.getRuntime().gc(); in stopAllocCounting() 1270 Runtime.getRuntime().gc(); in stopAllocCounting()
|
/frameworks/base/core/java/android/ddm/ |
D | DdmHandleHeap.java | 222 System.gc(); in handleHPGC()
|
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
D | LoadTestsAutoTest.java | 146 System.gc(); in freeMem()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
D | VideoEditorStressTest.java | 120 System.gc(); in tearDown() 143 System.gc(); in getBeginMemory() 151 System.gc(); in getAfterMemory_updateLog()
|
/frameworks/base/tests/DumpRenderTree/assets/results/ |
D | layout_tests_passed.txt | 1242 /sdcard/android/layout_tests/fast/workers/worker-context-gc.html 1246 /sdcard/android/layout_tests/fast/workers/worker-gc.html 1251 /sdcard/android/layout_tests/fast/workers/worker-messageport-gc.html 1274 /sdcard/android/layout_tests/fast/events/message-channel-gc-4.html 1301 /sdcard/android/layout_tests/fast/events/message-channel-gc-2.html 1305 /sdcard/android/layout_tests/fast/events/message-channel-gc.html 1317 /sdcard/android/layout_tests/fast/events/message-channel-gc-3.html 1453 /sdcard/android/layout_tests/fast/js/var-shadows-arg-gc-crash.html 1480 /sdcard/android/layout_tests/fast/js/duplicate-param-gc-crash.html 1512 /sdcard/android/layout_tests/fast/js/getter-setter-gc.html [all …]
|
/frameworks/base/test-runner/src/android/test/ |
D | TestRunner.java | 415 Runtime.getRuntime().gc(); in runInPerformanceMode()
|