/frameworks/base/media/tests/SoundPoolTest/src/com/android/ |
D | SoundPoolTest.java | 40 private static final boolean DEBUG = true; field in SoundPoolTest 84 if (DEBUG) Log.d(LOG_TAG, "Sample " + sampleId + " load status = " + status); in onLoadComplete() 131 if (DEBUG) Log.d(LOG_TAG, "Begin sounds test"); in TestSounds() 136 if (DEBUG) Log.d(LOG_TAG, "Start note " + id); in TestSounds() 143 if (DEBUG) Log.d(LOG_TAG, "Stop note " + id); in TestSounds() 146 if (DEBUG) Log.d(LOG_TAG, "End sounds test"); in TestSounds() 151 if (DEBUG) Log.d(LOG_TAG, "Begin scale test"); in TestScales() 158 if (DEBUG) Log.d(LOG_TAG, "Start note " + id); in TestScales() 165 if (DEBUG) Log.d(LOG_TAG, "Stop note " + id); in TestScales() 168 if (DEBUG) Log.d(LOG_TAG, "End scale test"); in TestScales() [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
D | DecTestBench.c | 34 #define DEBUG(argv) printf argv macro 112 DEBUG(("H.264 Decoder API v%d.%d\n", decVer.major, decVer.minor)); in main() 117 DEBUG(("%s\n", tagName)); in main() 125 DEBUG(( in main() 128 DEBUG(("\t-Nn forces decoding to stop after n pictures\n")); in main() 130 DEBUG(("\t-Ooutfile output writing disabled at compile time\n")); in main() 132 DEBUG(("\t-Ooutfile write output to \"outfile\" (default out_wxxxhyyy.yuv)\n")); in main() 133 DEBUG(("\t-Onone does not write output\n")); in main() 135 DEBUG(("\t-P packet-by-packet mode\n")); in main() 136 DEBUG(("\t-U NAL unit stream mode\n")); in main() [all …]
|
D | TestBenchMultipleInstance.c | 25 #define DEBUG(argv) printf argv macro 84 DEBUG(( in main() 87 DEBUG(("\t-Nn forces decoding to stop after n pictures\n")); in main() 89 DEBUG(("\t-Ooutfile output writing disabled at compile time\n")); in main() 91 DEBUG(("\t-Ooutfile write output to \"outfile\" (default out.yuv)\n")); in main() 92 DEBUG(("\t-Onone does not write output\n")); in main() 94 DEBUG(("\t-C display cropped image (default decoded image)\n")); in main() 95 DEBUG(("\t-R disable DPB output reordering\n")); in main() 96 DEBUG(("\t-T to print tag name and exit\n")); in main() 130 DEBUG(("No input files\n")); in main() [all …]
|
/frameworks/support/v4/java/android/support/v4/content/ |
D | AsyncTaskLoader.java | 40 static final boolean DEBUG = false; field in AsyncTaskLoader 52 if (DEBUG) Log.v(TAG, this + " >>> doInBackground"); in doInBackground() 55 if (DEBUG) Log.v(TAG, this + " <<< doInBackground"); in doInBackground() 67 if (DEBUG) Log.v(TAG, this + " <<< doInBackground (was canceled)", ex); in doInBackground() 75 if (DEBUG) Log.v(TAG, this + " onPostExecute"); in onPostExecute() 86 if (DEBUG) Log.v(TAG, this + " onCancelled"); in onCancelled() 149 if (DEBUG) Log.v(TAG, "Preparing load: mTask=" + mTask); in onForceLoad() 155 if (DEBUG) Log.v(TAG, "onCancelLoad: mTask=" + mTask); in onCancelLoad() 160 if (DEBUG) Log.v(TAG, in onCancelLoad() 171 if (DEBUG) Log.v(TAG, "cancelLoad: task is waiting, dropping it"); in onCancelLoad() [all …]
|
/frameworks/base/core/java/android/content/ |
D | AsyncTaskLoader.java | 55 static final boolean DEBUG = false; field in AsyncTaskLoader 67 if (DEBUG) Log.v(TAG, this + " >>> doInBackground"); in doInBackground() 70 if (DEBUG) Log.v(TAG, this + " <<< doInBackground"); in doInBackground() 82 if (DEBUG) Log.v(TAG, this + " <<< doInBackground (was canceled)", ex); in doInBackground() 90 if (DEBUG) Log.v(TAG, this + " onPostExecute"); in onPostExecute() 101 if (DEBUG) Log.v(TAG, this + " onCancelled"); in onCancelled() 165 if (DEBUG) Log.v(TAG, "Preparing load: mTask=" + mTask); in onForceLoad() 171 if (DEBUG) Log.v(TAG, "onCancelLoad: mTask=" + mTask); in onCancelLoad() 176 if (DEBUG) Log.v(TAG, in onCancelLoad() 187 if (DEBUG) Log.v(TAG, "cancelLoad: task is waiting, dropping it"); in onCancelLoad() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
D | DozeService.java | 52 private static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG); field in DozeService 95 if (DEBUG) Log.d(mTag, "new DozeService()"); in DozeService() 96 setDebug(DEBUG); in DozeService() 120 if (DEBUG) Log.d(mTag, "onCreate"); in onCreate() 149 if (DEBUG) Log.d(mTag, "onAttachedToWindow"); in onAttachedToWindow() 164 if (DEBUG) Log.d(mTag, "onDreamingStarted canDoze=" + canDoze() + " mPowerSaveActive=" in onDreamingStarted() 199 if (DEBUG) Log.d(mTag, "onDreamingStopped isDozing=" + isDozing()); in onDreamingStopped() 278 if (DEBUG) Log.d(mTag, "Display off"); in turnDisplayOff() 283 if (DEBUG) Log.d(mTag, "Display on"); in turnDisplayOn() 298 if (DEBUG) Log.d(mTag, "listenForPulseSignals: " + listen); in listenForPulseSignals() [all …]
|
/frameworks/base/core/java/android/app/ |
D | LoaderManager.java | 196 LoaderManagerImpl.DEBUG = enabled; in enableDebugLogging() 202 static boolean DEBUG = false; field in LoaderManagerImpl 264 if (DEBUG) Log.v(TAG, " Starting: " + this); in start() 285 if (DEBUG) Log.v(TAG, " Retaining: " + this); in retain() 294 if (DEBUG) Log.v(TAG, " Finished Retaining: " + this); in finishRetain() 329 if (DEBUG) Log.v(TAG, " Stopping: " + this); in stop() 343 if (DEBUG) Log.v(TAG, " Canceling: " + this); in cancel() 352 if (DEBUG) Log.v(TAG, " Destroying: " + this); in destroy() 357 if (DEBUG) Log.v(TAG, " Reseting: " + this); in destroy() 389 if (DEBUG) Log.v(TAG, "onLoadCanceled: " + this); in onLoadCanceled() [all …]
|
/frameworks/support/v4/java/android/support/v4/app/ |
D | LoaderManager.java | 177 LoaderManagerImpl.DEBUG = enabled; in enableDebugLogging() 192 static boolean DEBUG = false; field in LoaderManagerImpl 257 if (DEBUG) Log.v(TAG, " Starting: " + this); in start() 278 if (DEBUG) Log.v(TAG, " Retaining: " + this); in retain() 287 if (DEBUG) Log.v(TAG, " Finished Retaining: " + this); in finishRetain() 322 if (DEBUG) Log.v(TAG, " Stopping: " + this); in stop() 336 if (DEBUG) Log.v(TAG, " Canceling: " + this); in cancel() 345 if (DEBUG) Log.v(TAG, " Destroying: " + this); in destroy() 350 if (DEBUG) Log.v(TAG, " Reseting: " + this); in destroy() 382 if (DEBUG) Log.v(TAG, "onLoadCanceled: " + this); in onLoadCanceled() [all …]
|
/frameworks/base/core/java/android/hardware/camera2/impl/ |
D | CameraCaptureSessionImpl.java | 42 private static final boolean DEBUG = false; field in CameraCaptureSessionImpl 128 if (DEBUG) Log.v(TAG, mIdString + "Created session successfully"); in CameraCaptureSessionImpl() 169 if (DEBUG) { in capture() 203 if (DEBUG) { in captureBurst() 226 if (DEBUG) { in setRepeatingRequest() 255 if (DEBUG) { in setRepeatingBurst() 269 if (DEBUG) { in stopRepeating() 280 if (DEBUG) { in abortCaptures() 334 if (DEBUG) Log.v(TAG, mIdString + "replaceSessionClose"); in replaceSessionClose() 354 if (DEBUG) Log.v(TAG, mIdString + "close - reentering"); in close() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | KeyguardViewMediator.java | 126 private static final boolean DEBUG = KeyguardConstants.DEBUG; field in KeyguardViewMediator 367 if (DEBUG) Log.d(TAG, "screen is off and call ended, let's make sure the " 643 if (DEBUG) Log.d(TAG, "onSystemReady"); in onSystemReady() 659 if (DEBUG) Log.d(TAG, "onStartedGoingToSleep(" + why + ")"); in onStartedGoingToSleep() 673 if (DEBUG) Log.d(TAG, "pending exit secure callback cancelled"); in onStartedGoingToSleep() 699 if (DEBUG) Log.d(TAG, "onFinishedGoingToSleep(" + why + ")"); in onFinishedGoingToSleep() 762 if (DEBUG) Log.d(TAG, "setting alarm to turn off keyguard, seq = " in doKeyguardLaterLocked() 780 if (DEBUG) Log.d(TAG, "onStartedWakingUp, seq = " + mDelayedShowingSequence); in onStartedWakingUp() 842 if (DEBUG) Log.d(TAG, "setKeyguardEnabled(" + enabled + ")"); in setKeyguardEnabled() 848 if (DEBUG) Log.d(TAG, "in process of verifyUnlock request, ignoring"); in setKeyguardEnabled() [all …]
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | TaskPersister.java | 63 static final boolean DEBUG = false; field in TaskPersister 125 if (DEBUG) Slog.d(TAG, "Creating tasks directory " + sTasksDir); in TaskPersister() 133 if (DEBUG) Slog.d(TAG, "Creating images directory " + sTasksDir); in TaskPersister() 157 if (DEBUG) Slog.d(TAG, "Removing " + ((ImageWriteQueueItem) item).mFilename + in removeThumbnails() 203 if (DEBUG) Slog.d(TAG, "wakeup: task=" + task + " flush=" + flush + " mNextWriteTime=" in wakeup() 247 if (DEBUG) Slog.d(TAG, "saveImage: filename=" + filename + " now=" + in saveImage() 281 if (DEBUG) Slog.d(TAG, "saveToXml: task=" + task); in saveToXml() 286 if (DEBUG) xmlSerializer.setFeature( in saveToXml() 345 if (DEBUG) Slog.d(TAG, "restoreTasksLocked: taskFile=" + taskFile.getName()); in restoreTasksLocked() 358 if (DEBUG) Slog.d(TAG, "restoreTasksLocked: START_TAG name=" + name); in restoreTasksLocked() [all …]
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | EventConditionProvider.java | 51 private static final boolean DEBUG = Log.isLoggable("ConditionProviders", Log.DEBUG); field in EventConditionProvider 73 if (DEBUG) Slog.d(TAG, "new " + SIMPLE_NAME + "()"); in EventConditionProvider() 108 if (DEBUG) Slog.d(TAG, "onBootComplete"); in onBootComplete() 125 if (DEBUG) Slog.d(TAG, "onConnected"); in onConnected() 132 if (DEBUG) Slog.d(TAG, "onDestroy"); in onDestroy() 138 if (DEBUG) Slog.d(TAG, "onRequestConditions relevance=" + relevance); in onRequestConditions() 144 if (DEBUG) Slog.d(TAG, "onSubscribe " + conditionId); in onSubscribe() 156 if (DEBUG) Slog.d(TAG, "onUnsubscribe " + conditionId); in onUnsubscribe() 173 if (DEBUG) Slog.d(TAG, "reloadTrackers"); in reloadTrackers() 196 if (DEBUG) Slog.d(TAG, "evaluateSubscriptions"); in evaluateSubscriptionsW() [all …]
|
D | ScheduleConditionProvider.java | 45 private static final boolean DEBUG = Log.isLoggable("ConditionProviders", Log.DEBUG); field in ScheduleConditionProvider 63 if (DEBUG) Slog.d(TAG, "new " + SIMPLE_NAME + "()"); in ScheduleConditionProvider() 93 if (DEBUG) Slog.d(TAG, "onConnected"); in onConnected() 105 if (DEBUG) Slog.d(TAG, "onDestroy"); in onDestroy() 111 if (DEBUG) Slog.d(TAG, "onRequestConditions relevance=" + relevance); in onRequestConditions() 117 if (DEBUG) Slog.d(TAG, "onSubscribe " + conditionId); in onSubscribe() 128 if (DEBUG) Slog.d(TAG, "onUnsubscribe " + conditionId); in onUnsubscribe() 176 if (DEBUG) Slog.d(TAG, String.format("Scheduling evaluate for %s, in %s, now=%s", in updateAlarm() 180 if (DEBUG) Slog.d(TAG, "Not scheduling evaluate"); in updateAlarm() 200 if (DEBUG) Slog.d(TAG, "setRegistered " + registered); in setRegistered() [all …]
|
/frameworks/base/docs/html/ndk/guides/ |
D | ndk-stack.jd | 23 I/DEBUG ( 31): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 24 I/DEBUG ( 31): Build fingerprint: 'generic/google_sdk/generic/:2.2/FRF91/43546:eng/test-keys' 25 I/DEBUG ( 31): pid: 351, tid: 351 %gt;%gt;%gt; /data/local/ndk-tests/crasher <<< 26 I/DEBUG ( 31): signal 11 (SIGSEGV), fault addr 0d9f00d8 27 I/DEBUG ( 31): r0 0000af88 r1 0000a008 r2 baadf00d r3 0d9f00d8 28 I/DEBUG ( 31): r4 00000004 r5 0000a008 r6 0000af88 r7 00013c44 29 I/DEBUG ( 31): r8 00000000 r9 00000000 10 00000000 fp 00000000 30 I/DEBUG ( 31): ip 0000959c sp be956cc8 lr 00008403 pc 0000841e cpsr 60000030 31 I/DEBUG ( 31): #00 pc 0000841e /data/local/ndk-tests/crasher 32 I/DEBUG ( 31): #01 pc 000083fe /data/local/ndk-tests/crasher [all …]
|
/frameworks/base/services/core/java/com/android/server/ |
D | AnyMotionDetector.java | 41 private static final boolean DEBUG = false; field in AnyMotionDetector 110 if (DEBUG) Slog.d(TAG, "AnyMotionDetector instantiated."); in AnyMotionDetector() 122 if (DEBUG) Slog.d(TAG, "mNumSufficientSamples = " + mNumSufficientSamples); in AnyMotionDetector() 129 if (DEBUG) Slog.d(TAG, "checkForAnyMotion(). mState = " + mState); in checkForAnyMotion() 132 if (DEBUG) Slog.d(TAG, "Moved from STATE_INACTIVE to STATE_ACTIVE."); in checkForAnyMotion() 142 if (DEBUG) Slog.d(TAG, "Moved from STATE_ACTIVE to STATE_INACTIVE."); in stop() 156 if (DEBUG) Slog.d(TAG, "startOrientationMeasurement: mMeasurementInProgress=" + in startOrientationMeasurement() 174 if (DEBUG) Slog.d(TAG, "stopOrientationMeasurement. mMeasurementInProgress=" + in stopOrientationMeasurementLocked() 185 if (DEBUG) { in stopOrientationMeasurementLocked() 196 if (DEBUG) Slog.d(TAG, "getStationaryStatus() returned " + status); in stopOrientationMeasurementLocked() [all …]
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
D | SearchBar.java | 59 private static final boolean DEBUG = false; field in SearchBar 191 if (DEBUG) Log.v(TAG, "EditText.onFocusChange " + hasFocus); in onFinishInflate() 238 if (DEBUG) Log.v(TAG, "onEditorAction: " + action + " event: " + keyEvent); in onFinishInflate() 242 if (DEBUG) Log.v(TAG, "Action or enter pressed"); in onFinishInflate() 247 if (DEBUG) Log.v(TAG, "Delayed action handling (search)"); in onFinishInflate() 253 if (DEBUG) Log.v(TAG, "Escaped North"); in onFinishInflate() 258 if (DEBUG) Log.v(TAG, "Delayed action handling (escape_north)"); in onFinishInflate() 263 if (DEBUG) Log.v(TAG, "Voice Clicked"); in onFinishInflate() 268 if (DEBUG) Log.v(TAG, "Delayed action handling (voice_mode)"); in onFinishInflate() 293 if (DEBUG) Log.v(TAG, "SpeechOrb.onFocusChange " + hasFocus); in onFinishInflate() [all …]
|
D | DetailsOverviewSharedElementHelper.java | 40 private static final boolean DEBUG = false; field in DetailsOverviewSharedElementHelper 62 if (DEBUG) { in saveImageViewScale() 80 if (DEBUG) { in changeImageViewScale() 92 if (DEBUG) { in restoreImageViewScale() 109 if (DEBUG) { in onSharedElementStart() 146 if (DEBUG) { in onSharedElementEnd() 179 if (DEBUG) { in setSharedElementEnterTransition() 191 if (DEBUG) { in setSharedElementEnterTransition() 201 if (DEBUG) { in onBindToDrawable() 205 if (DEBUG) { in onBindToDrawable() [all …]
|
/frameworks/base/core/java/com/android/internal/backup/ |
D | LocalTransport.java | 57 private static final boolean DEBUG = false; field in LocalTransport 152 if (DEBUG) Log.v(TAG, "wiping all data"); in initializeDevice() 160 if (DEBUG) { in performBackup() 189 if (DEBUG) Log.v(TAG, "Got change set key=" + key + " size=" + dataSize in performBackup() 203 if (DEBUG) { in performBackup() 251 if (DEBUG) Log.v(TAG, "clearBackupData() pkg=" + packageInfo.packageName); in clearBackupData() 276 if (DEBUG) Log.v(TAG, "finishBackup() of " + mFullTargetPackage); in finishBackup() 294 if (DEBUG) { in tearDownFullBackup() 320 if (DEBUG) { in checkFullBackupSize() 334 if (DEBUG) { in performFullBackup() [all …]
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/ |
D | MediaControllerGlue.java | 20 private static final boolean DEBUG = false; field in MediaControllerGlue 27 if (DEBUG) Log.v(TAG, "onMetadataChanged"); 32 if (DEBUG) Log.v(TAG, "onPlaybackStateChanged"); 37 if (DEBUG) Log.v(TAG, "onSessionDestroyed"); 42 if (DEBUG) Log.v(TAG, "onSessionEvent"); 91 if (DEBUG) Log.v(TAG, "New media controller " + mediaController); in attachToMediaController() 207 if (DEBUG) Log.v(TAG, "startPlayback speed " + speed); in startPlayback() 219 if (DEBUG) Log.v(TAG, "pausePlayback"); in pausePlayback() 225 if (DEBUG) Log.v(TAG, "skipToNext"); in skipToNext() 231 if (DEBUG) Log.v(TAG, "skipToPrevious"); in skipToPrevious()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | SystemBars.java | 38 private static final boolean DEBUG = false; field in SystemBars 49 if (DEBUG) Log.d(TAG, "start"); in start() 50 mServiceMonitor = new ServiceMonitor(TAG, DEBUG, in start() 57 if (DEBUG) Log.d(TAG, "onNoService"); in onNoService() 63 if (DEBUG) Log.d(TAG, "onServiceStartAttempt mStatusBar="+mStatusBar); in onServiceStartAttempt() 88 if (DEBUG) Log.d(TAG, "createStatusBarFromConfig"); in createStatusBarFromConfig() 107 if (DEBUG) Log.d(TAG, "started " + mStatusBar.getClass().getSimpleName()); in createStatusBarFromConfig()
|
/frameworks/base/core/java/android/content/pm/ |
D | ParceledListSlice.java | 43 private static boolean DEBUG = false; field in ParceledListSlice 61 if (DEBUG) Log.d(TAG, "Retrieving " + N + " items"); in ParceledListSlice() 84 if (DEBUG) Log.d(TAG, "Read inline #" + i + ": " + mList.get(mList.size()-1)); in ParceledListSlice() 92 if (DEBUG) Log.d(TAG, "Reading more @" + i + " of " + N + ": retriever=" + retriever); in ParceledListSlice() 108 if (DEBUG) Log.d(TAG, "Read extra #" + i + ": " + mList.get(mList.size()-1)); in ParceledListSlice() 147 if (DEBUG) Log.d(TAG, "Writing " + N + " items"); in writeToParcel() 159 if (DEBUG) Log.d(TAG, "Wrote inline #" + i + ": " + mList.get(i)); in writeToParcel() 172 if (DEBUG) Log.d(TAG, "Writing more @" + i + " of " + N); in writeToParcel() 180 if (DEBUG) Log.d(TAG, "Wrote extra #" + i + ": " + mList.get(i)); in writeToParcel() 184 if (DEBUG) Log.d(TAG, "Breaking @" + i + " of " + N); in writeToParcel() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | SecureCameraLaunchManager.java | 61 private static final boolean DEBUG = false; field in SecureCameraLaunchManager 97 if (DEBUG) Log.d(TAG, "onCameraUnavailble(" + cameraId + ")"); in onCameraUnavailable() 103 if (DEBUG) Log.d(TAG, "onCameraAvailable(" + cameraId + ")"); in onCameraAvailable() 173 if (DEBUG) Log.d(TAG, "onSwipingStarted"); in onSwipingStarted() 192 if (DEBUG) Log.d(TAG, "startSecureCameraLunch"); in startSecureCameraLaunch() 234 if (DEBUG) Log.d(TAG, "No targets found for secure camera intent"); in targetWillWaitForCameraAvailable() 250 if (DEBUG) Log.d(TAG, "Secure camera intent would launch resolver"); in targetWillWaitForCameraAvailable() 256 if (DEBUG) Log.d(TAG, "No meta-data found for secure camera application"); in targetWillWaitForCameraAvailable() 265 if (DEBUG) Log.d(TAG, "Target will wait for camera: " + willWaitForCameraAvailability); in targetWillWaitForCameraAvailable()
|
D | PanelBar.java | 29 public static final boolean DEBUG = false; field in PanelBar 34 if (!DEBUG) return; in LOG() 51 if (DEBUG) LOG("go state: %d -> %d", mState, state); in go() 131 if (DEBUG) LOG("PanelBar.onTouch: state=%d ACTION_DOWN: panel %s %s", mState, panel, in onTouchEvent() 151 if (DEBUG) LOG("startOpeningPanel: " + panel); in startOpeningPanel() 216 if (DEBUG) LOG("collapseAllPanels: animate=%s waiting=%s", animate, waiting); in collapseAllPanels() 226 if (DEBUG) LOG("onPanelPeeked"); in onPanelPeeked() 230 if (DEBUG) LOG("onAllPanelsCollapsed"); in onAllPanelsCollapsed() 234 if (DEBUG) LOG("onPanelFullyOpened"); in onPanelFullyOpened() 246 if (DEBUG) LOG("onExpandingFinished"); in onExpandingFinished()
|
/frameworks/base/core/java/android/printservice/ |
D | PrintService.java | 158 private static final boolean DEBUG = false; field in PrintService 441 if (DEBUG) { 458 if (DEBUG) { 469 if (DEBUG) { 480 if (DEBUG) { 490 if (DEBUG) { 501 if (DEBUG) { 512 if (DEBUG) { 523 if (DEBUG) { 532 if (DEBUG) { [all …]
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DimLayer.java | 30 private static final boolean DEBUG = false; field in DimLayer 72 if (DEBUG) Slog.v(TAG, "Ctor: displayId=" + displayId); in DimLayer() 123 if (DEBUG) Slog.v(TAG, "setAlpha alpha=" + alpha); in setAlpha() 127 if (DEBUG) Slog.v(TAG, "setAlpha hiding"); in setAlpha() 131 if (DEBUG) Slog.v(TAG, "setAlpha showing"); in setAlpha() 198 if (DEBUG) Slog.v(TAG, "show: immediate"); in show() 212 if (DEBUG) Slog.v(TAG, "show: layer=" + layer + " alpha=" + alpha in show() 240 if (DEBUG) Slog.v(TAG, "show: mStartAlpha=" + mStartAlpha + " mStartTime=" + mStartTime); in show() 248 if (DEBUG) Slog.v(TAG, "hide: immediate"); in hide() 261 if (DEBUG) Slog.v(TAG, "hide: duration=" + duration); in hide() [all …]
|