Searched defs:changed (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/tests/CoreTests/android/view/
H A DViewGroupAttributesTest.java34 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
/frameworks/base/services/java/com/android/server/status/
H A DIconMerger.java19 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
20 super.onLayout(changed, l, t, r, b);
H A DExpandedView.java45 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
46 super.onLayout(changed, left, top, right, bottom);
49 //Log.d(StatusBarService.TAG, "height changed old=" + mPrevHeight + " new=" + height);
H A DTrackingView.java24 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
25 super.onLayout(changed, left, top, right, bottom);
H A DStatusBarView.java55 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
56 super.onLayout(changed, l, t, r, b);
/frameworks/base/awt/java/awt/event/
H A DHierarchyEvent.java54 private Component changed; field in class:HierarchyEvent
59 public HierarchyEvent(Component source, int id, Component changed,
61 this(source, id, changed, changedParent, 0l);
67 public HierarchyEvent(Component source, int id, Component changed,
71 this.changed = changed;
77 public HierarchyEvent(Component source, int id, Component changed, argument
81 // this.changed = changed;
95 return changed;
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsoluteLayout.java107 protected void onLayout(boolean changed, int l, int t, argument
H A DFrameLayout.java274 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
H A DSpinner.java109 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
110 super.onLayout(changed, l, t, r, b);
H A DLinearLayout.java826 // ourselves. The measured height should be the max height of the children, changed
916 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
H A DTableLayout.java435 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
478 // the total number of columns is dynamically changed if we find
H A DTableRow.java119 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
H A DHorizontalScrollView.java81 * True when the layout has changed but the traversal has not come through yet.
1104 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
1105 super.onLayout(changed, l, t, r, b);
H A DScrollView.java79 * True when the layout has changed but the traversal has not come through yet.
1107 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
1108 super.onLayout(changed, l, t, r, b);
H A DSlidingDrawer.java309 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
631 // Something changed in the content, we need to honor the layout request
H A DAdapterView.java74 * Row id to look for when data has changed
136 * True if the data has changed since the last layout
175 * The number of items in the adapter before a data changed event occured.
515 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
825 // Data has changed between when this SelectionNotifier
1101 * changed.
H A DGallery.java117 * in the future. It will also trigger a selection changed.
328 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
329 super.onLayout(changed, l, t, r, b);
H A DRelativeLayout.java890 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
H A DAbsListView.java328 * Optional callback to notify client when scroll position has changed
371 * Used to request a layout when we changed touch mode
1110 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
1111 super.onLayout(changed, l, t, r, b);
1122 final boolean changed = super.setFrame(left, top, right, bottom);
1124 if (changed) {
1125 // Reposition the popup when the frame has changed. This includes
1134 return changed;
1578 // If we changed touch mode since the last time we had focus
1634 // The data has changed sinc
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuItemView.java234 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
235 super.onLayout(changed, left, top, right, bottom);
295 * Shortcut has changed and we're showing it right now, need to
H A DIconMenuView.java486 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
/frameworks/base/services/java/com/android/server/
H A DInputDevice.java60 boolean changed = false; field in class:InputDevice.MotionState
/frameworks/base/libs/audioflinger/
H A DAudioMixer.cpp279 uint32_t changed = state->needsChanged; local
285 while (changed) {
286 const int i = 31 - __builtin_clz(changed);
288 changed &= ~mask;
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java704 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
705 if (!changed) return;
/frameworks/base/core/java/android/view/
H A DViewGroup.java1781 * within this view changed. The hierarchy changes whenever a child is added
2559 protected abstract void onLayout(boolean changed, argument

Completed in 460 milliseconds

12