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

12

/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.java253 static private int accumField(int amt, int suffix, boolean always, int zeropad) { argument
254 if (amt > 99 || (always && zeropad >= 3)) {
257 if (amt > 9 || (always && zeropad >= 2)) {
260 if (always || amt > 0) {
267 boolean always, int zeropad) {
268 if (always || amt > 0) {
270 if ((always && zeropad >= 3) || amt > 99) {
276 if ((always && zeropad >= 2) || amt > 9 || startPos != pos) {
266 printField(char[] formatStr, int amt, char suffix, int pos, boolean always, int zeropad) argument
/frameworks/base/services/java/com/android/server/pm/
H A DPreferredActivity.java40 boolean always) {
42 mPref = new PreferredComponent(this, match, set, activity, always);
39 PreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, boolean always) argument
/frameworks/base/media/mca/filterfw/native/
H A DAndroid.mk39 # gcc should always be placed at the end.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java62 public void fling(float vel, boolean always) { argument
69 super.fling(vel, always);
83 // We draw the handle ourselves so that it's always glued to the bottom of the window.
H A DSettingsPanelView.java103 public void fling(float vel, boolean always) { argument
110 super.fling(vel, always);
130 // We draw the handle ourselves so that it's always glued to the bottom of the window.
H A DPanelView.java508 public void fling(float vel, boolean always) { argument
512 if (always||mVel != 0) {
663 fling(-mSelfCollapseVelocityPx, /*always=*/ true);
671 fling(mSelfExpandVelocityPx, /*always=*/ true);
/frameworks/base/core/java/android/view/
H A DIWindowSession.aidl137 boolean performHapticFeedback(IWindow window, int effectId, boolean always);
H A DWindowManagerPolicy.java1069 public void showBootMessage(final CharSequence msg, final boolean always); argument
1094 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always); argument
H A DViewGroup.java291 * When set, this ViewGroup tries to always draw its children using their drawing cache.
1738 * The default implementation always returns false.
1882 final int actionIndex = ev.getActionIndex(); // always 0 for down
3183 // Clearing a pressed state always propagates.
4731 * Indicates whether this ViewGroup will always try to draw its children using their
4746 * Indicates whether this ViewGroup will always try to draw its children using their
4755 * @param always true to always draw with the drawing cache, false otherwise
4762 public void setAlwaysDrawnWithCacheEnabled(boolean always) { argument
4763 setBooleanFlag(FLAG_ALWAYS_DRAWN_WITH_CACHE, always);
[all...]
/frameworks/base/services/java/com/android/server/
H A DPreferredComponent.java37 private static final String ATTR_ALWAYS = "always"; // boolean
44 // Whether this is to be the one that's always chosen. If false, it's the most recently chosen.
61 ComponentName component, boolean always) {
65 mAlways = always;
60 PreferredComponent(Callbacks callbacks, int match, ComponentName[] set, ComponentName component, boolean always) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java84 public boolean performHapticFeedback(IWindow window, int effectId, boolean always) { argument
/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java492 private void performFling(int position, float velocity, boolean always) { argument
497 if (always || (velocity > mMaximumMajorVelocity ||
514 if (!always && (velocity > mMaximumMajorVelocity ||
952 // mAllowSingleTap isn't relevant here; you're *always*
/frameworks/base/services/java/com/android/server/wm/
H A DSession.java240 boolean always) {
246 effectId, always);
239 performHapticFeedback(IWindow window, int effectId, boolean always) argument
H A DWindowManagerService.java3845 // Opening a new task always supersedes a close for the anim.
3850 // Opening a new activity always supersedes a close for the anim.
5389 public void showBootMessage(final CharSequence msg, final boolean always) { argument
5395 Slog.i(TAG, "showBootMessage: msg=" + msg + " always=" + always
5404 if (!always) {
5413 mPolicy.showBootMessage(msg, always);
/frameworks/base/core/java/android/app/
H A DFragmentManager.java1043 void moveToState(int newState, boolean always) { argument
1044 moveToState(newState, 0, 0, always);
1047 void moveToState(int newState, int transit, int transitStyle, boolean always) { argument
1052 if (!always && mCurState == newState) {
H A DIActivityManager.java374 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException; argument
385 // manage your activity to make sure it is always the uid you expect.
H A DActivityManagerNative.java1874 boolean always = data.readInt() != 0;
1875 showBootMessage(msg, always);
4438 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException { argument
4443 data.writeInt(always ? 1 : 0);
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java1085 void moveToState(int newState, boolean always) { argument
1086 moveToState(newState, 0, 0, always);
1089 void moveToState(int newState, int transit, int transitStyle, boolean always) { argument
1094 if (!always && mCurState == newState) {
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java449 * The default implementation does nothing, and always returns null
821 void doOffsetsChanged(boolean always) { argument
826 if (!always && !mOffsetsChanged) {
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java293 void startSelected(int which, boolean always) { argument
299 onIntentSelected(ri, intent, always);
H A DProcessStats.java2618 public void addPss(long pss, long uss, boolean always, argument
2621 if (!always) {
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java508 void setCurrentItemInternal(int item, boolean smoothScroll, boolean always) { argument
509 setCurrentItemInternal(item, smoothScroll, always, 0);
512 void setCurrentItemInternal(int item, boolean smoothScroll, boolean always, int velocity) { argument
517 if (!always && mCurItem == item && mItems.size() != 0) {
1364 // For simple implementation, our internal size is always 0.
1878 * ACTION_DOWN always refers to pointer index 0.
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java3595 // Note that we always want to do oom adj to update our state with the
4953 public void showBootMessage(final CharSequence msg, final boolean always) { argument
4955 mWindowManager.showBootMessage(msg, always);
5224 // actually executed. However, we do want to always do the
5615 * the given {@link ProviderInfo}. Final permission checking is always done
6669 // Return the entry if desired by the caller. We always return
6670 // the first entry, because callers always expect this to be the
7121 Bitmap thumbnail, CharSequence description, boolean always) {
7138 if (thumbnail == null && !always) {
7236 * given {@link ProviderInfo}. Final permission checking is always don
7120 sendPendingThumbnail(ActivityRecord r, IBinder token, Bitmap thumbnail, CharSequence description, boolean always) argument
12083 removeDyingProviderLocked(ProcessRecord proc, ContentProviderRecord cpr, boolean always) argument
14764 requestPssAllProcsLocked(long now, boolean always, boolean memLowered) argument
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java367 // Bits that we are currently always keeping cleared.
589 * We always let the sensor be switched on by default except when
612 // we will always leave it on. Note that the user could go to
617 // changes to lag, so we'd like to keep it always on. (It will
626 * screen turning off, should always disable listeners if already enabled
1979 // First we always handle the home key here, so applications
2525 // Any user activity always causes us to show the
2825 // For layout, the status bar is always at the top with our fixed height.
3005 // IM dock windows always go to the bottom of the screen.
3131 // Full screen windows are always give
4682 showBootMessage(final CharSequence msg, final boolean always) argument
4996 performHapticFeedbackLw(WindowState win, int effectId, boolean always) argument
[all...]

Completed in 1028 milliseconds

12