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

12

/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
H A DPackageManagerService.java1995 // Note: isEnabledLP() does not apply here - always return info
2690 // default, then it is always desireable to pick it.
2719 List<ResolveInfo> query, int priority, boolean always,
2771 // If it's not an "always" type preferred activity and that's what we're
2773 if (always && !pa.mPref.mAlways) {
2819 // user their preference, if we're looking for an "always" type entry.
2820 if (always && !pa.mPref.sameSet(query, priority)) {
2828 // Re-add the filter as a "last chosen" entry (!always)
7008 // If the currently set package isn't valid, then it's always
7795 /* Apps on SD card are always i
2718 findPreferredActivity(Intent intent, String resolvedType, int flags, List<ResolveInfo> query, int priority, boolean always, boolean removeMatches, boolean debug, int userId) argument
9994 addPreferredActivityInternal(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, boolean always, int userId) argument
[all...]
/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/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/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/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/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/core/java/com/android/internal/app/
H A DResolverActivity.java294 void startSelected(int which, boolean always) { argument
300 onIntentSelected(ri, intent, always);
H A DProcessStats.java2678 public void addPss(long pss, long uss, boolean always, argument
2681 if (!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.java3852 // Opening a new task always supersedes a close for the anim.
3857 // 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/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/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 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);
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.
/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/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/view/
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...]
H A DViewRootImpl.java1014 // that the screen be kept on, then it is always set; otherwise, it is
1205 // However, windows are now always 32 bits by default, so choose 32 bits
5215 public boolean performHapticFeedback(int effectId, boolean always) { argument
5217 return mWindowSession.performHapticFeedback(mWindow, effectId, always);
6688 // a removed view, hence in this case always prefer the source.
/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/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
4695 showBootMessage(final CharSequence msg, final boolean always) argument
5009 performHapticFeedbackLw(WindowState win, int effectId, boolean always) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java2439 // should always have a real activity).
3742 // Note that we always want to do oom adj to update our state with the
5101 public void showBootMessage(final CharSequence msg, final boolean always) { argument
5103 mWindowManager.showBootMessage(msg, always);
5372 // actually executed. However, we do want to always do the
5763 * the given {@link ProviderInfo}. Final permission checking is always done
6817 // Return the entry if desired by the caller. We always return
6818 // the first entry, because callers always expect this to be the
7269 Bitmap thumbnail, CharSequence description, boolean always) {
7286 if (thumbnail == null && !always) {
7268 sendPendingThumbnail(ActivityRecord r, IBinder token, Bitmap thumbnail, CharSequence description, boolean always) argument
12328 removeDyingProviderLocked(ProcessRecord proc, ContentProviderRecord cpr, boolean always) argument
14983 requestPssAllProcsLocked(long now, boolean always, boolean memLowered) argument
[all...]

Completed in 964 milliseconds

12