Searched refs:always (Results 1 - 20 of 20) sorted by relevance

/frameworks/support/v4/java/android/support/v4/util/
H A DTimeUtils.java38 static private int accumField(int amt, int suffix, boolean always, int zeropad) { argument
39 if (amt > 99 || (always && zeropad >= 3)) {
42 if (amt > 9 || (always && zeropad >= 2)) {
45 if (always || amt > 0) {
52 boolean always, int zeropad) {
53 if (always || amt > 0) {
55 if ((always && zeropad >= 3) || amt > 99) {
61 if ((always && zeropad >= 2) || amt > 9 || startPos != pos) {
51 printField(char[] formatStr, int amt, char suffix, int pos, boolean always, int zeropad) argument
/frameworks/base/core/java/android/util/
H A DTimeUtils.java146 static private int accumField(int amt, int suffix, boolean always, int zeropad) { argument
147 if (amt > 99 || (always && zeropad >= 3)) {
150 if (amt > 9 || (always && zeropad >= 2)) {
153 if (always || amt > 0) {
160 boolean always, int zeropad) {
161 if (always || amt > 0) {
163 if ((always && zeropad >= 3) || amt > 99) {
169 if ((always && zeropad >= 2) || amt > 9 || startPos != pos) {
159 printField(char[] formatStr, int amt, char suffix, int pos, boolean always, int zeropad) argument
/frameworks/base/core/java/android/view/
H A DIWindowSession.aidl128 boolean performHapticFeedback(IWindow window, int effectId, boolean always);
H A DWindowManagerPolicy.java963 public void showBootMessage(final CharSequence msg, final boolean always); argument
988 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always); argument
H A DViewGroup.java245 * When set, this ViewGroup tries to always draw its children using their drawing cache.
1512 * The default implementation always returns false.
1652 final int actionIndex = ev.getActionIndex(); // always 0 for down
4324 * Indicates whether this ViewGroup will always try to draw its children using their
4339 * Indicates whether this ViewGroup will always try to draw its children using their
4348 * @param always true to always draw with the drawing cache, false otherwise
4355 public void setAlwaysDrawnWithCacheEnabled(boolean always) { argument
4356 setBooleanFlag(FLAG_ALWAYS_DRAWN_WITH_CACHE, always);
4865 * the removal of views. A call to this method should always b
[all...]
H A DViewRootImpl.java937 // However, windows are now always 32 bits by default, so choose 32 bits
3050 // we always consider the trackball event handled.
3645 public boolean performHapticFeedback(int effectId, boolean always) { argument
3647 return sWindowSession.performHapticFeedback(mWindow, effectId, always);
H A DView.java453 * <p><em>Note: The entire view tree is single threaded. You must always be on
495 * always highlight, or give focus to, a particular view. This motivates a mode
3663 * focus moved when requestFocus() is called. It may not always
3829 * It may not always apply, in which case use the default.
4285 * Subclasses of View overriding this method should always call super.onFocusLost().
4685 // Focusable in touch mode should always be set before the focusable flag
5965 * things like whether focus is always visible to the user.
6040 * KeyEvent.Callback.onKeyLongPress()}: always returns false (doesn't handle
6084 * KeyEvent.Callback.onKeyMultiple()}: always returns false (doesn't handle
6120 * <p>The default implementation always return
14369 performHapticFeedback(int effectId, boolean always) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java66 public boolean performHapticFeedback(IWindow window, int effectId, boolean always) { argument
/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java486 private void performFling(int position, float velocity, boolean always) { argument
491 if (always || (velocity > mMaximumMajorVelocity ||
508 if (!always && (velocity > mMaximumMajorVelocity ||
934 // mAllowSingleTap isn't relevant here; you're *always*
/frameworks/base/services/java/com/android/server/wm/
H A DSession.java207 boolean always) {
213 effectId, always);
206 performHapticFeedback(IWindow window, int effectId, boolean always) argument
H A DWindowManagerService.java3603 // Opening a new task always supersedes a close for the anim.
3607 // Opening a new activity always supersedes a close for the anim.
4955 public void showBootMessage(final CharSequence msg, final boolean always) { argument
4961 Slog.i(TAG, "showBootMessage: msg=" + msg + " always=" + always
4970 if (!always) {
4979 mPolicy.showBootMessage(msg, always);
/frameworks/base/core/java/android/app/
H A DFragmentManager.java1013 void moveToState(int newState, boolean always) { argument
1014 moveToState(newState, 0, 0, always);
1017 void moveToState(int newState, int transit, int transitStyle, boolean always) { argument
1022 if (!always && mCurState == newState) {
H A DIActivityManager.java374 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException; argument
H A DActivityManagerNative.java1554 boolean always = data.readInt() != 0;
1555 showBootMessage(msg, always);
3519 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException { argument
3524 data.writeInt(always ? 1 : 0);
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java1061 void moveToState(int newState, boolean always) { argument
1062 moveToState(newState, 0, 0, always);
1065 void moveToState(int newState, int transit, int transitStyle, boolean always) { argument
1070 if (!always && mCurState == newState) {
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java404 void setCurrentItemInternal(int item, boolean smoothScroll, boolean always) { argument
405 setCurrentItemInternal(item, smoothScroll, always, 0);
408 void setCurrentItemInternal(int item, boolean smoothScroll, boolean always, int velocity) { argument
413 if (!always && mCurItem == item && mItems.size() != 0) {
961 // For simple implementation, or internal size is always 0.
1374 * ACTION_DOWN always refers to pointer index 0.
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java432 * The default implementation does nothing, and always returns null
800 void doOffsetsChanged(boolean always) { argument
805 if (!always && !mOffsetsChanged) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1382 void performFling(int y, float vel, boolean always) { argument
1395 if (!always && (
1414 if (always || (
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java398 // Bits that we are currently always keeping cleared.
514 * We always let the sensor be switched on by default except when
537 // we will always leave it on. Note that the user could go to
542 // changes to lag, so we'd like to keep it always on. (It will
551 * screen turning off, should always disable listeners if already enabled
1523 // First we always handle the home key here, so applications
1842 // Any user activity always causes us to show the navigation controls,
2119 // IM dock windows always go to the bottom of the screen.
2229 // Boot progress screen always covers entire display.
3414 public void showBootMessage(final CharSequence msg, final boolean always) { argument
3667 performHapticFeedbackLw(WindowState win, int effectId, boolean always) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java469 * need one (instead of a list) because we always process broadcasts
4050 public void showBootMessage(final CharSequence msg, final boolean always) { argument
4051 mWindowManager.showBootMessage(msg, always);
5313 // Return the entry if desired by the caller. We always return
5314 // the first entry, because callers always expect this to be the
5700 Bitmap thumbnail, CharSequence description, boolean always) {
5717 if (thumbnail == null && !always) {
12615 // an app receiver (which is always asynchronous) or after we have
14569 mMainStack.destroyActivitiesLocked(null, false, "always-finish");
5699 sendPendingThumbnail(ActivityRecord r, IBinder token, Bitmap thumbnail, CharSequence description, boolean always) argument

Completed in 4794 milliseconds