Searched refs:changes (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/core/java/android/view/
H A DWindowManager.java479 * changes the system volume.
917 * This flag changes the behavior of touch focus for this window only.
1083 * Never animate position changes of the window.
1785 int changes = 0;
1789 changes |= LAYOUT_CHANGED;
1793 changes |= LAYOUT_CHANGED;
1797 changes |= LAYOUT_CHANGED;
1801 changes |= LAYOUT_CHANGED;
1805 changes |= LAYOUT_CHANGED;
1809 changes |
[all...]
H A DViewRootImpl.java4156 // Handle automatic focus changes.
4817 // The keycode remains set until the direction changes or a fling ends
6410 final int changes = event.getContentChangeTypes();
6411 if ((changes & AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE) == 0
6412 && changes != AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED) {
6435 // We care only about changes in subtrees containing the host view.
6667 // We take care of format and type changes on our own.
/frameworks/base/core/tests/coretests/src/android/content/res/
H A DConfigurationBoundResourceCacheTest.java85 int changes = calcConfigChanges(res, newCnf);
87 mCache.onConfigurationChange(changes);
107 int changes = calcConfigChanges(res, newCnf);
109 mCache.onConfigurationChange(changes);
132 int changes = calcConfigChanges(res, newCnf);
137 mCache.onConfigurationChange(changes);
172 int changes = calcConfigChanges(res, newCnf);
179 mCache.onConfigurationChange(changes);
/frameworks/base/services/core/java/com/android/server/
H A DAttributeCache.java86 int changes = mConfiguration.updateFrom(config);
87 if ((changes & ~(ActivityInfo.CONFIG_FONT_SCALE |
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouter.java587 * changes to media routes.
1201 * The application should listen for changes to the presentation display
1272 int changes = 0;
1278 changes |= CHANGE_GENERAL;
1282 changes |= CHANGE_GENERAL;
1286 changes |= CHANGE_GENERAL;
1290 changes |= CHANGE_GENERAL;
1295 changes |= CHANGE_GENERAL;
1299 changes |= CHANGE_GENERAL;
1303 changes |
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DDefaultItemAnimator.java137 final ArrayList<ChangeInfo> changes = new ArrayList<ChangeInfo>();
138 changes.addAll(mPendingChanges);
139 mChangesList.add(changes);
144 for (ChangeInfo change : changes) {
147 changes.clear();
148 mChangesList.remove(changes);
152 ViewHolder holder = changes.get(0).oldHolder;
448 ArrayList<ChangeInfo> changes = mChangesList.get(i);
449 endChangeAnimation(changes, item);
450 if (changes
[all...]
/frameworks/base/core/java/android/app/
H A DResourcesManager.java271 int changes = mResConfiguration.updateFrom(config);
279 changes |= ActivityInfo.CONFIG_SCREEN_LAYOUT
330 return changes != 0;
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java403 StringBuilder changes = new StringBuilder();
418 changes.append(" New service added: ").append(info).append("\n");
428 changes.append(" Existing service (nop): ").append(info).append("\n");
435 changes.append(" System service replacing existing: ").append(info)
438 changes.append(" Existing service replacing a removed service: ")
449 changes.append(" Existing service with new uid ignored: ").append(info)
466 changes.append(" Service removed: ").append(v1).append("\n");
484 if (changes.length() > 0) {
486 serviceInfos.size() + " services:\n" + changes);
/frameworks/native/services/inputflinger/
H A DInputReader.cpp283 uint32_t changes = mConfigurationChangesToRefresh; local
284 if (changes) {
287 refreshConfigurationLocked(changes);
538 void InputReader::refreshConfigurationLocked(uint32_t changes) { argument
542 if (changes) {
543 ALOGI("Reconfiguring input devices. changes=0x%08x", changes);
546 if (changes & InputReaderConfiguration::CHANGE_MUST_REOPEN) {
551 device->configure(now, &mConfig, changes);
728 void InputReader::requestRefreshConfiguration(uint32_t changes) { argument
978 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
1837 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
2113 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
2422 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
2899 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
6634 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
6772 configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes) argument
[all...]
H A DInputReader.h121 // Describes changes that have occurred.
367 * The changes flag is a bitfield that indicates what has changed and whether
369 virtual void requestRefreshConfiguration(uint32_t changes) = 0;
467 virtual void requestRefreshConfiguration(uint32_t changes);
552 void refreshConfigurationLocked(uint32_t changes);
602 void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
996 * - configure with 0 changes
998 * - process, process, process (may occasionally reconfigure with non-zero changes or reset)
1018 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
1109 virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java232 int changes = finalIntent.fillIn(intent, key.flags);
233 if ((changes & Intent.FILL_IN_DATA) == 0) {
H A DActivityStack.java3875 // {@link Configuration#diff} doesn't catch changes from unset values.
3876 // Check for changes we care about.
3888 final int changes = oldConfig.diff(newConfig) | stackChanges;
3889 if (changes == 0 && !r.forceNewConfig) {
3905 // Figure out how to handle the changes between the configurations.
3908 + Integer.toHexString(changes) + ", handles=0x"
3911 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
3913 r.configChangeFlags |= changes;
3951 // changes is always sent to all processes when they happen so it can just use whatever
3967 private boolean relaunchActivityLocked(ActivityRecord r, int changes, boolea argument
[all...]
H A DActivityManagerService.java1061 * This changes between TOP and TOP_SLEEPING to following mSleeping.
1153 * The last total number of process we have, to determine if changes actually look
1231 int changes; field in class:ActivityManagerService.ProcessChangeItem
2730 /** Sets the task stack listener that gets callbacks when a task stack changes. */
3734 "*** Delivering " + N + " process changes");
3745 if ((item.changes&ProcessChangeItem.CHANGE_ACTIVITIES) != 0) {
3752 if ((item.changes&ProcessChangeItem.CHANGE_PROCESS_STATE) != 0) {
3802 "*** Delivering " + N + " uid changes");
8346 // Update the task description to reflect any changes in the task stack
17381 int changes
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowAnimator.java832 void setPendingLayoutChanges(final int displayId, final int changes) { argument
838 displayContent.pendingLayoutChanges |= changes;
842 void setAppLayoutChanges(final AppWindowAnimator appAnimator, final int changes, String reason, argument
847 setPendingLayoutChanges(displayId, changes);
H A DWindowManagerService.java521 // changes the orientation.
968 // Track changes to DevicePolicyManager state so we can enable/disable keyguard.
4550 // Allow for state changes and animation to be applied if token is transitioning
6429 * Freeze rotation changes. (Enable "rotation lock".)
6459 * Thaw rotation changes. (Disable "rotation lock".)
6485 * Called by the window manager policy whenever the state of the system changes
6495 * Temporarily pauses rotation changes until resumed.
6497 * This can be used to prevent rotation changes from occurring while the user is
6508 * Resumes normal rotation changes after being paused.
6574 // TODO: Implement forced rotation changes
[all...]
/frameworks/base/core/java/android/content/
H A DIntent.java444 * and allows the user to edit it. If they keep their changes, the URI
1664 * state of the screen but it is actually sent in response to changes in the
1688 * state of the screen but it is actually sent in response to changes in the
2084 * application to make sure it sees the new changes. Some system code that
2428 * mail in the inbox changes.
2442 * data set changes. It is possible for the data set to change without the
2542 * Broadcast Action: A sticky broadcast for changes in the physical
2552 * dock mode changes.
2790 * Broadcast sent to the system when a user's information changes. Carries an extra
7243 int changes
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewLayoutTest.java1844 final Map<Long, Boolean> changes = new HashMap<Long, Boolean>();
1850 if (changes.size() > 0) {
1857 if (!changes.containsKey(vh.getItemId())) {
1862 changes.get(vh.getItemId()).booleanValue(),
1886 changes.put(mRecyclerView.findViewHolderForLayoutPosition(i).getItemId(), false);
1889 changes.put(mRecyclerView.findViewHolderForLayoutPosition(i).getItemId(), true);
1896 changes.clear();
1899 changes.put(mRecyclerView.findViewHolderForLayoutPosition(i).getItemId(), false);
1902 changes.put(mRecyclerView.findViewHolderForLayoutPosition(changedItems[i]).getItemId(),
1911 changes
[all...]
/frameworks/base/services/core/java/com/android/server/location/
H A DGpsLocationProvider.java1137 WorkSource[] changes = mClientSource.setReturningDiffs(source);
1138 if (changes == null) {
1141 WorkSource newWork = changes[0];
1142 WorkSource goneWork = changes[1];
2010 // (this configuration might change in the future based on SIM changes)
2018 // Register for SubscriptionInfo list changes which is guaranteed
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp696 uint32_t changes = 0; local
702 changes |= InputReaderConfiguration::CHANGE_POINTER_GESTURE_ENABLEMENT;
706 if (changes) {
707 mInputManager->getReader()->requestRefreshConfiguration(changes);
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java275 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
708 // Observe all users' changes
842 // changes to lag, so we'd like to keep it always on. (It will
2124 // changes the device volume
2128 // changes the device volume
4222 // These dialogs are stable to interim decor changes.
4520 int changes = 0;
4559 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4584 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4589 changes |
[all...]
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs385 when playing audio, and respond appropriately to changes in audio focus."
536 "How to animate state changes in a view hierarchy using transitions."
630 "How to create a network connection, monitor the connection for changes
/frameworks/base/core/java/android/os/
H A DBatteryStats.java975 * generated each time the battery level changes.
3162 pw.print(" Connectivity changes: "); pw.println(connChanges);
4832 ArrayList<PackageChange> changes) {
4833 if (changes == null) {
4836 pw.print(prefix); pw.println("Package changes:");
4837 for (int i=0; i<changes.size(); i++) {
4838 PackageChange pc = changes.get(i);
4831 dumpDailyPackageChanges(PrintWriter pw, String prefix, ArrayList<PackageChange> changes) argument
/frameworks/base/core/java/android/provider/
H A DSettings.java159 * If the extra is not included, no changes will be made.
1078 * If the extra is not included, no changes will be made.
1657 * useful for monitoring changes with a ContentObserver.
1985 public static boolean hasInterestingConfigurationChanges(int changes) { argument
1986 return (changes&ActivityInfo.CONFIG_FONT_SCALE) != 0;
2454 * Determines which streams are affected by ringer mode changes. The
3962 * useful for monitoring changes with a ContentObserver.
4420 * to receive changes in this value.
7606 * Opaque value, changes when persisted zen mode configuration changes
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 1227 milliseconds