/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
D | SectionedAlbumDataAdapter.java | 69 String previous = ""; in onChanged() local 73 if (previous.isEmpty() || !previous.equals(item.account)) { in onChanged() 74 if (DEBUG) Log.i(TAG, "previous = " + previous +", title = " + item.account); in onChanged() 75 previous = item.account; in onChanged() 83 previous = ""; in onChanged() 87 if (previous.isEmpty() || !previous.equals(item.account)) { in onChanged() 88 previous = item.account; in onChanged()
|
/packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/ |
D | GetTranscriptReceiver.java | 268 private @Nullable Intent getNextAlarmIntent(Intent previous) { in getNextAlarmIntent() argument 269 int remainingAttempts = previous.getIntExtra(EXTRA_REMAINING_ATTEMPTS, 0); in getNextAlarmIntent() 270 double baseMultiplier = previous.getDoubleExtra(EXTRA_BASE_MULTIPLIER, 0); in getNextAlarmIntent() 271 long nextDelay = previous.getLongExtra(EXTRA_DELAY_MILLIS, 0); in getNextAlarmIntent() 272 if (!previous.getBooleanExtra(EXTRA_IS_INITIAL_ESTIMATED_WAIT, false)) { in getNextAlarmIntent() 283 previous.getParcelableExtra(EXTRA_VOICEMAIL_URI), in getNextAlarmIntent() 284 previous.getStringExtra(EXTRA_TRANSCRIPT_ID), in getNextAlarmIntent() 288 previous.getParcelableExtra(EXTRA_PHONE_ACCOUNT)); in getNextAlarmIntent()
|
/packages/modules/NetworkStack/src/com/android/networkstack/netlink/ |
D | TcpSocketTracker.java | 334 @Nullable final SocketInfo previous) { in calculateLatestPacketsStat() argument 351 if (previous != null && previous.tcpInfo != null) { in calculateLatestPacketsStat() 352 stat.sentCount -= previous.tcpInfo.mSegsOut; in calculateLatestPacketsStat() 353 stat.receivedCount -= previous.tcpInfo.mSegsIn; in calculateLatestPacketsStat() 354 stat.lostCount -= previous.tcpInfo.mLost; in calculateLatestPacketsStat() 355 stat.retransmitCount -= previous.tcpInfo.mRetransmits; in calculateLatestPacketsStat()
|
/packages/apps/Launcher3/src/com/android/launcher3/widget/ |
D | CachingWidgetPreviewLoader.java | 88 CacheResult previous; in putCacheResult() local 90 previous = cacheResults.remove(previewSize); in putCacheResult() 94 previous = cacheResults.put(previewSize, cacheResult); in putCacheResult() 98 previous = cacheResults.put(previewSize, cacheResult); in putCacheResult() 101 return previous; in putCacheResult()
|
/packages/modules/adb/daemon/ |
D | watchdog.cpp | 64 unsigned int previous = alarm(0); in UpdateWatchdog() local 65 if (previous != 0) { in UpdateWatchdog() 66 LOG(INFO) << "adb watchdog disarmed with " << previous << " seconds left"; in UpdateWatchdog()
|
/packages/apps/Camera2/src/com/android/camera/device/ |
D | SingleDeviceStateMachine.java | 160 SingleDeviceRequest<TDevice> previous = mDeviceRequest; in setRequest() local 174 if (previous != null) { in setRequest() 175 previous.close(); in setRequest()
|
/packages/apps/Dialer/java/com/android/incallui/rtt/protocol/ |
D | RttChatMessage.java | 140 int previous = getLastIndexRemoteMessage(messageList); in updateRemoteRttChatMessage() local 142 if (previous < 0) { in updateRemoteRttChatMessage() 158 message = messageList.get(previous); in updateRemoteRttChatMessage()
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
D | VideoUtils.java | 319 double previous = 0; in correctTimeToSyncSample() local 325 return previous; in correctTimeToSyncSample() 328 previous = timeOfSyncSample; in correctTimeToSyncSample()
|
/packages/modules/GeoTZ/locationtzprovider/src/main/java/com/android/timezone/location/provider/core/ |
D | ReferenceWithHistory.java | 119 V previous = get(); in set() local 125 return previous; in set()
|
/packages/apps/Contacts/src/com/android/contacts/model/account/ |
D | AccountsLoader.java | 58 protected boolean isSameData(List<AccountInfo> previous, List<AccountInfo> next) { in isSameData() argument 59 return Objects.equal(AccountInfo.extractAccounts(previous), in isSameData()
|
/packages/modules/GeoTZ/locationtzprovider/src/test/java/com/android/timezone/location/provider/core/ |
D | ReferenceWithHistoryTest.java | 135 V previous = mValue; in set() local 137 return previous; in set()
|
/packages/apps/Settings/src/com/android/settings/homepage/contextualcards/ |
D | ContextualCardManager.java | 345 final ContextualCard previous = result.get(index - 1); in getCardsWithSuggestionViewType() local 348 && previous.getCategory() == SUGGESTION_VALUE) { in getCardsWithSuggestionViewType() 349 result.set(index - 1, previous.mutate().setViewType( in getCardsWithSuggestionViewType()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | SuggestedWords.java | 413 final SuggestedWordInfo previous = candidates.get(i); in removeSuggestedWordInfoFromList() local 414 if (word.equals(previous.mWord)) { in removeSuggestedWordInfoFromList()
|
/packages/apps/Car/libs/encryption-runner/src/android/car/encryptionrunner/ |
D | Ukey2EncryptionRunner.java | 383 private byte[] computeMAC(byte[] previous, byte[] next, byte[] info) { in computeMAC() argument 386 concatByteArrays(previous, next), "" /* key type is just plain raw bytes */); in computeMAC()
|
/packages/modules/NeuralNetworks/common/ |
D | OperationsUtils.cpp | 629 int32_t previous = axisData[j]; in meanPrepare() local 630 if (previous < 0) { in meanPrepare() 631 previous += numInputDims; in meanPrepare() 633 if (current == previous) { in meanPrepare()
|
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/ |
D | StringUtils.java | 189 final String previous = suggestions.get(j); in removeDupes() local 190 if (equals(cur, previous)) { in removeDupes()
|
/packages/modules/NetworkStack/src/android/net/util/ |
D | ConnectivityPacketSummary.java | 373 final int previous = mPacket.position(); in parseUDP() local 378 mPacket.position(previous + UDP_HEADER_LEN); in parseUDP()
|
/packages/apps/Stk/src/com/android/stk/ |
D | StkAppService.java | 642 Activity previous = mStkContext[slotId].mActivityInstance; in handleMessage() local 646 if (act != null && previous != null && !previous.isDestroyed() in handleMessage() 647 && !previous.isFinishing()) { in handleMessage() 648 CatLog.d(LOG_TAG, "Finish the previous pending activity - " + previous); in handleMessage() 649 previous.finish(); in handleMessage()
|
/packages/providers/CalendarProvider/tests/ |
D | EMMA_README | 3 # tests, and generates results into ~/emmaReport/. The previous emmaReport
|
/packages/modules/adb/ |
D | README.md | 86 …ture an "unacknowledged-send window", an apacket is sent only after the previous one has been conf…
|
/packages/modules/Virtualization/microdroid/ |
D | init.rc | 76 # specified in the previous mount_all command on the fs stage.
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
D | encoding.md | 80 …Type` stores a code unit, not a character (code point). As mentioned in previous section, a code p…
|
/packages/modules/Wifi/service/proto/src/ |
D | scorecard.proto | 191 // Accumulated connection stats with previous SW build
|
D | metrics.proto | 2651 // Whether the primary registered cell of current entry is same as that of previous entry 2973 // New connection request is issued before ending previous connecting request. 3704 // Number of networks with a large increase (compared to stats of previous build) of 3707 // Number of networks with a large decrease (compared to stats of previous build) of 3711 // current build but without sufficient connection attempts for previous build 3714 // but without suffcient connection attempts for previous build 3716 // Number of networks with sufficient connection attempts for both current and previous builds
|
/packages/modules/Wifi/service/java/com/android/server/wifi/scanner/ |
D | BackgroundScanScheduler.java | 645 Bucket targetBucket = iterTargetBuckets.previous(); in mergeSettingsToLowerBuckets()
|