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

/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/packages/SystemUI/src/com/android/systemui/statusbar/
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
H A DIconMerger.java57 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
58 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.java74 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
75 super.onLayout(changed, l, t, r, b);
/frameworks/base/core/java/android/widget/
H A DAbsoluteLayout.java107 protected void onLayout(boolean changed, int l, int t, argument
H A DFrameLayout.java279 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
H A DSpinner.java112 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
113 super.onLayout(changed, l, t, r, b);
H A DTableLayout.java438 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
481 // the total number of columns is dynamically changed if we find
581 // 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 DLinearLayout.java955 // ourselves. The measured height should be the max height of the children, changed
1045 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
830 // Data has changed between when this SelectionNotifier
1108 * changed.
H A DGallery.java120 * in the future. It will also trigger a selection changed.
331 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
332 super.onLayout(changed, l, t, r, b);
H A DHorizontalScrollView.java88 * True when the layout has changed but the traversal has not come through yet.
1296 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
1297 super.onLayout(changed, l, t, r, b);
H A DRelativeLayout.java902 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
H A DScrollView.java82 * True when the layout has changed but the traversal has not come through yet.
1295 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
1296 super.onLayout(changed, l, t, r, b);
H A DAbsListView.java342 * Optional callback to notify client when scroll position has changed
395 * Used to request a layout when we changed touch mode
986 // they revisit the list even if its content has changed.
1249 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
1250 super.onLayout(changed, l, t, r, b);
1252 if (changed) {
1271 final boolean changed = super.setFrame(left, top, right, bottom);
1273 if (changed) {
1274 // Reposition the popup when the frame has changed. This includes
1283 return changed;
[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.java493 protected void onLayout(boolean changed, int l, int t, int r, int b) { argument
/frameworks/base/services/audioflinger/
H A DAudioMixer.cpp331 uint32_t changed = state->needsChanged; local
337 while (changed) {
338 const int i = 31 - __builtin_clz(changed);
340 changed &= ~mask;
/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.java1896 * within this view changed. The hierarchy changes whenever a child is added
2674 protected abstract void onLayout(boolean changed, argument
H A DView.java185 * <td>Called when the size of this view has changed.
247 * has changed.
443 * to be changed, the view will call {@link #requestLayout()}.</li>
445 * may need to be changed, the view will call {@link #invalidate()}.</li>
2413 * Register a callback to be invoked when focus of this view changed.
3967 * @param changedView The view whose visibility changed. Could be 'this' or
3977 * Called when the visibility of the view or an ancestor of the view is changed.
3978 * @param changedView The view whose visibility changed. Could be 'this' or
4108 * by the application have changed. You can use this to decide when
4109 * to reload resources that can changed base
7194 onLayout(boolean changed, int left, int top, int right, int bottom) argument
[all...]
/frameworks/base/libs/ui/
H A DInputDispatcher.cpp608 // Enqueue a command to run outside the lock to tell the policy that the configuration changed.
2031 // An unrelated pointer changed.
2603 bool changed; local
2618 changed = true;
2620 changed = false;
2628 if (changed) {
2830 // Wake the poll loop because removing the connection may have changed the current

Completed in 347 milliseconds