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

12

/frameworks/base/core/tests/coretests/src/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 DExpandedView.java49 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
50 super.onLayout(changed, left, top, right, bottom);
53 //Slog.d(StatusBarService.TAG, "height changed old=" + mPrevHeight + " new=" + height);
H A DIconMerger.java35 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
36 super.onLayout(changed, l, t, r, b);
H A DTrackingView.java40 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
41 super.onLayout(changed, left, top, right, bottom);
H A DStatusBarView.java101 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
102 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 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
578 // Column's widths are changed: force child table rows to re-measure.
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.
1203 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
1204 super.onLayout(changed, l, t, r, b);
H A DLinearLayout.java950 // ourselves. The measured height should be the max height of the children, changed
1040 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
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.java899 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
H A DScrollView.java77 * True when the layout has changed but the traversal has not come through yet.
1204 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
1205 super.onLayout(changed, l, t, r, b);
/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.java493 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
/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/services/java/com/android/server/
H A DInputDevice.java72 boolean changed = false; field in class:InputDevice.MotionState
148 if (changed || mDownTime != 0) {
149 pw.print(prefix); pw.print("changed="); pw.print(changed);
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java716 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
717 if (!changed) return;
/frameworks/base/core/java/android/view/
H A DViewGroup.java1890 * within this view changed. The hierarchy changes whenever a child is added
2668 protected abstract void onLayout(boolean changed, argument
/frameworks/base/awt/java/awt/
H A DComponent.java4690 * void finishHierarchyChange(Component changed, Container changedParent,
4696 * HierarchyEvent.HIERARCHY_CHANGED, changed, changedParent, changeFlags));
4697 * } finishChildrenHierarchyChange(changed, changedParent, ancestorFlags); }
4698 * } void finishChildrenHierarchyChange(Component changed, Container
4700 * void postHierarchyBoundsEvents(Component changed, int id) { postEvent(new
4701 * HierarchyEvent(this, id, changed, null, 0)); }
4707 * @param changed
4708 * the changed.
4712 void spreadHierarchyBoundsEvents(Component changed, int id) { argument

Completed in 910 milliseconds

12