/frameworks/base/core/java/android/view/ |
D | WindowManager.java | 2249 int changes = 0; in copyFrom() local 2253 changes |= LAYOUT_CHANGED; in copyFrom() 2257 changes |= LAYOUT_CHANGED; in copyFrom() 2261 changes |= LAYOUT_CHANGED; in copyFrom() 2265 changes |= LAYOUT_CHANGED; in copyFrom() 2269 changes |= LAYOUT_CHANGED; in copyFrom() 2273 changes |= LAYOUT_CHANGED; in copyFrom() 2277 changes |= LAYOUT_CHANGED; in copyFrom() 2281 changes |= LAYOUT_CHANGED; in copyFrom() 2285 changes |= TYPE_CHANGED; in copyFrom() [all …]
|
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
D | DefaultItemAnimator.java | 141 final ArrayList<ChangeInfo> changes = new ArrayList<>(); in runPendingAnimations() local 142 changes.addAll(mPendingChanges); in runPendingAnimations() 143 mChangesList.add(changes); in runPendingAnimations() 148 for (ChangeInfo change : changes) { in runPendingAnimations() 151 changes.clear(); in runPendingAnimations() 152 mChangesList.remove(changes); in runPendingAnimations() 156 ViewHolder holder = changes.get(0).oldHolder; in runPendingAnimations() 461 ArrayList<ChangeInfo> changes = mChangesList.get(i); in endAnimation() local 462 endChangeAnimation(changes, item); in endAnimation() 463 if (changes.isEmpty()) { in endAnimation() [all …]
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | DefaultItemAnimator.java | 142 final ArrayList<ChangeInfo> changes = new ArrayList<>(); in runPendingAnimations() local 143 changes.addAll(mPendingChanges); in runPendingAnimations() 144 mChangesList.add(changes); in runPendingAnimations() 149 for (ChangeInfo change : changes) { in runPendingAnimations() 152 changes.clear(); in runPendingAnimations() 153 mChangesList.remove(changes); in runPendingAnimations() 157 ViewHolder holder = changes.get(0).oldHolder; in runPendingAnimations() 462 ArrayList<ChangeInfo> changes = mChangesList.get(i); in endAnimation() local 463 endChangeAnimation(changes, item); in endAnimation() 464 if (changes.isEmpty()) { in endAnimation() [all …]
|
/frameworks/base/core/tests/coretests/src/android/content/res/ |
D | ConfigurationBoundResourceCacheTest.java | 92 int changes = calcConfigChanges(res, newCnf); in testVoidConfigChange() local 94 mCache.onConfigurationChange(changes); in testVoidConfigChange() 115 int changes = calcConfigChanges(res, newCnf); in testEffectiveConfigChange() local 117 mCache.onConfigurationChange(changes); in testEffectiveConfigChange() 141 int changes = calcConfigChanges(res, newCnf); in testConfigChangeMultipleResources() local 147 mCache.onConfigurationChange(changes); in testConfigChangeMultipleResources() 183 int changes = calcConfigChanges(res, newCnf); in testConfigChangeMultipleThemes() local 192 mCache.onConfigurationChange(changes); in testConfigChangeMultipleThemes()
|
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
D | MediaRouter.java | 1480 int changes = 0; in maybeUpdateDescriptor() local 1482 changes = updateDescriptor(descriptor); in maybeUpdateDescriptor() 1484 return changes; in maybeUpdateDescriptor() 1488 int changes = 0; in updateDescriptor() local 1493 changes |= CHANGE_GENERAL; in updateDescriptor() 1497 changes |= CHANGE_GENERAL; in updateDescriptor() 1501 changes |= CHANGE_GENERAL; in updateDescriptor() 1505 changes |= CHANGE_GENERAL; in updateDescriptor() 1509 changes |= CHANGE_GENERAL; in updateDescriptor() 1513 changes |= CHANGE_GENERAL; in updateDescriptor() [all …]
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/ |
D | OSUCache.java | 126 int changes = 0; in scanEnd() local 132 changes++; in scanEnd() 152 changes++; in scanEnd() 160 if (changes > 0) { in scanEnd()
|
/frameworks/native/services/vr/virtual_touchpad/ |
D | VirtualTouchpadEvdev.cpp | 146 const int changes = touchpad.last_motion_event_buttons ^ buttons; in ButtonState() local 147 if (!changes) { in ButtonState() 153 ALOGV("change %X from %X to %X", changes, touchpad.last_motion_event_buttons, in ButtonState() 160 if (changes & AMOTION_EVENT_BUTTON_BACK) { in ButtonState()
|
/frameworks/ex/common/java/com/android/common/ |
D | GoogleLogTags.logtags | 43 # @param changes Number of changes made to database in reconstruct 44 202001 vending_reconstruct (changes|1) 59 # This event is logged for GTalk connection state changes. The status field is an int, but
|
/frameworks/native/cmds/dumpstate/ |
D | bugreport-format.md | 46 The flat file also has some minor changes: 59 On _Android O (OhMightyAndroidWhatsYourNextReleaseName?)_, the following changes were made: 65 changes become stable. 74 Similarly, if changes in the file format are made after the initial release of 76 For example, if after _Android N_ launches changes are made for the next _N_
|
/frameworks/base/core/java/android/content/pm/ |
D | RegisteredServicesCache.java | 453 StringBuilder changes = new StringBuilder(); in generateServicesMap() local 468 changes.append(" New service added: ").append(info).append("\n"); in generateServicesMap() 478 changes.append(" Existing service (nop): ").append(info).append("\n"); in generateServicesMap() 485 changes.append(" System service replacing existing: ").append(info) in generateServicesMap() 488 changes.append(" Existing service replacing a removed service: ") in generateServicesMap() 499 changes.append(" Existing service with new uid ignored: ").append(info) in generateServicesMap() 516 changes.append(" Service removed: ").append(v1).append("\n"); in generateServicesMap() 534 if (changes.length() > 0) { in generateServicesMap() 536 serviceInfos.size() + " services:\n" + changes); in generateServicesMap()
|
/frameworks/base/services/core/java/com/android/server/ |
D | AttributeCache.java | 107 int changes = mConfiguration.updateFrom(config); in updateConfiguration() local 108 if ((changes & ~(ActivityInfo.CONFIG_FONT_SCALE | in updateConfiguration()
|
/frameworks/native/services/inputflinger/ |
D | InputReader.cpp | 365 uint32_t changes = mConfigurationChangesToRefresh; in loopOnce() local 366 if (changes) { in loopOnce() 369 refreshConfigurationLocked(changes); in loopOnce() 625 void InputReader::refreshConfigurationLocked(uint32_t changes) { in refreshConfigurationLocked() argument 629 if (changes) { in refreshConfigurationLocked() 630 ALOGI("Reconfiguring input devices. changes=0x%08x", changes); in refreshConfigurationLocked() 633 if (changes & InputReaderConfiguration::CHANGE_MUST_REOPEN) { in refreshConfigurationLocked() 638 device->configure(now, &mConfig, changes); in refreshConfigurationLocked() 830 void InputReader::requestRefreshConfiguration(uint32_t changes) { in requestRefreshConfiguration() argument 833 if (changes) { in requestRefreshConfiguration() [all …]
|
D | InputReader.h | 334 virtual void requestRefreshConfiguration(uint32_t changes) = 0; 436 virtual void requestRefreshConfiguration(uint32_t changes); 521 void refreshConfigurationLocked(uint32_t changes); 574 void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); 991 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); 1083 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); 1155 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); 1221 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); 1243 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); 1908 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); [all …]
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ActivityRecord.java | 2409 final int changes = getConfigurationChanges(mTmpConfig); in ensureActivityConfigurationLocked() local 2416 if (changes == 0 && !forceNewConfig) { in ensureActivityConfigurationLocked() 2431 + Configuration.configurationDiffToString(changes)); in ensureActivityConfigurationLocked() 2446 + Integer.toHexString(changes) + ", handles=0x" in ensureActivityConfigurationLocked() 2450 if (shouldRelaunchLocked(changes, mTmpConfig) || forceNewConfig) { in ensureActivityConfigurationLocked() 2452 configChangeFlags |= changes; in ensureActivityConfigurationLocked() 2455 preserveWindow &= isResizeOnlyChange(changes); in ensureActivityConfigurationLocked() 2513 private boolean shouldRelaunchLocked(int changes, Configuration changesConfig) { in shouldRelaunchLocked() argument 2515 boolean onlyVrUiModeChanged = onlyVrUiModeChanged(changes, changesConfig); in shouldRelaunchLocked() 2527 return (changes&(~configChanged)) != 0; in shouldRelaunchLocked() [all …]
|
/frameworks/base/tests/LegacyRestoreTest/ |
D | README | 3 Nexus 4 running Android 4.3 (API 18), and so predates the Android 4.4 changes
|
/frameworks/base/tools/orientationplot/ |
D | README.txt | 46 it 90 degrees to a different orientation. Compared the rapid changes in the 85 6. Orientation changes should be significantly harder when the device is held
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | WindowAnimator.java | 356 void setPendingLayoutChanges(final int displayId, final int changes) { in setPendingLayoutChanges() argument 362 displayContent.pendingLayoutChanges |= changes; in setPendingLayoutChanges()
|
/frameworks/opt/net/ims/ |
D | README.txt | 18 receives callbacks when the state of the call changes, such as 66 It is a listener type for receiving notifications about changes to the IMS connection.
|
/frameworks/compile/slang/lit-tests/ |
D | README | 25 more than just emitted bitcode. For example, with some changes to the testcases
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | EventLogTags.logtags | 12 # sysui_status_bar_state: Logged whenever the status bar / keyguard state changes
|
/frameworks/opt/net/lowpan/libandroid_net_lowpan/tests/ |
D | README.md | 17 To pick up changes in framework/base, you will need to:
|
/frameworks/base/lowpan/tests/ |
D | README.md | 17 To pick up changes in framework/base, you will need to:
|
/frameworks/base/wifi/tests/ |
D | README.md | 17 To pick up changes in framework/base, you will need to:
|
/frameworks/base/proto/src/ |
D | system_messages.proto | 234 // Notify the user about public volume state changes.. 238 // Notify the user about private volume state changes.
|
/frameworks/support/buildSrc/ |
D | diff_and_docs.gradle | 179 // previously released version. These types of changes are forbidden. 195 // version. These types of changes require an explicit API file update. 199 "these changes are intentional by updating the public API definition.\n" + 382 description 'Updates the candidate API file to incorporate valid changes.'
|