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

/frameworks/base/core/java/android/util/
H A DTimeUtils.java145 static private int accumField(int amt, int suffix, boolean always, int zeropad) { argument
146 if (amt > 99 || (always && zeropad >= 3)) {
149 if (amt > 9 || (always && zeropad >= 2)) {
152 if (always || amt > 0) {
159 boolean always, int zeropad) {
160 if (always || amt > 0) {
162 if ((always && zeropad >= 3) || amt > 99) {
168 if ((always && zeropad >= 2) || amt > 9 || startPos != pos) {
158 printField(char[] formatStr, int amt, char suffix, int pos, boolean always, int zeropad) argument
/frameworks/base/core/java/android/view/
H A DIWindowSession.aidl116 boolean performHapticFeedback(IWindow window, int effectId, boolean always);
H A DWindowManagerPolicy.java778 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always); argument
H A DViewGroup.java183 * When set, this ViewGroup tries to always draw its children using their drawing cache.
2763 * Indicates whether this ViewGroup will always try to draw its children using their
2778 * Indicates whether this ViewGroup will always try to draw its children using their
2787 * @param always true to always draw with the drawing cache, false otherwise
2794 public void setAlwaysDrawnWithCacheEnabled(boolean always) { argument
2795 setBooleanFlag(FLAG_ALWAYS_DRAWN_WITH_CACHE, always);
3295 // If no transparent regions requested, we are always opaque.
H A DViewRoot.java2702 public boolean performHapticFeedback(int effectId, boolean always) { argument
2704 return sWindowSession.performHapticFeedback(mWindow, effectId, always);
H A DView.java452 * <p><em>Note: The entire view tree is single threaded. You must always be on
494 * always highlight, or give focus to, a particular view. This motivates a mode
2548 * focus moved when requestFocus() is called. It may not always
2713 * {@link #FOCUS_RIGHT}. It may not always apply, in which
2829 * Subclasses of View overriding this method should always call super.onFocusLost().
3184 // Focusable in touch mode should always be set before the focusable flag
4147 * things like whether focus is always visible to the user.
4224 * KeyEvent.Callback.onKeyLongPress()}: always returns false (doesn't handle
4268 * KeyEvent.Callback.onKeyMultiple()}: always returns false (doesn't handle
4301 * <p>The default implementation always return
9227 performHapticFeedback(int effectId, boolean always) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java60 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/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarService.java875 void performFling(int y, float vel, boolean always) { argument
885 if (!always && (
903 if (always || (
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java387 * We always let the sensor be switched on by default except when
408 // we will always leave it on. Note that the user could go to
413 // changes to lag, so we'd like to keep it always on. (It will
422 * screen turning off, should always disable listeners if already enabled
1149 // First we always handle the home key here, so applications
1397 // IM dock windows always go to the bottom of the screen.
2073 //always return portrait if orientation set to portrait
2076 //always return landscape if orientation set to landscape
2079 //always return portrait if orientation set to portrait
2082 //always retur
2367 performHapticFeedbackLw(WindowState win, int effectId, boolean always) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DWindowManagerService.java3270 // Opening a new task always supersedes a close for the anim.
3274 // Opening a new activity always supersedes a close for the anim.
5716 boolean always) {
5722 effectId, always);
6296 // for a scaled surface, we always want the requested
8857 // window, we will always use its anim.
5715 performHapticFeedback(IWindow window, int effectId, boolean always) argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java581 * need one (instead of a list) because we always process broadcasts
2265 // always restart the exact same activity.
4087 // If the target requires a specific UID, always fail for others.
5062 Bitmap thumbnail, CharSequence description, boolean always) {
5080 if (thumbnail == null && !always) {
10582 // an app receiver (which is always asynchronous) or after we have
5061 sendPendingThumbnail(ActivityRecord r, IBinder token, Bitmap thumbnail, CharSequence description, boolean always) argument

Completed in 351 milliseconds