Searched refs:always (Results 1 - 25 of 27) 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/services/core/java/com/android/server/pm/
H A DPreferredActivity.java39 boolean always) {
41 mPref = new PreferredComponent(this, match, set, activity, always);
38 PreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, boolean always) argument
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/service/notification/
H A DCondition.java117 final boolean always = (flags & FLAG_RELEVANT_ALWAYS) != 0;
118 if (!now && !always) return "NONE";
119 if (now && always) return "NOW, ALWAYS";
/frameworks/base/media/mca/filterfw/native/
H A DAndroid.mk39 # gcc should always be placed at the end.
/frameworks/base/tools/split-select/
H A DRuleGenerator.cpp68 // SDK_VERSION is handled elsewhere, so we always pick DENSITY_ANY if it's
70 sp<Rule> always = new Rule(); local
71 always->op = Rule::ALWAYS_TRUE;
72 return always;
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java1120 public void showBootMessage(final CharSequence msg, final boolean always); argument
1145 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always); argument
H A DIWindowSession.aidl138 boolean performHapticFeedback(IWindow window, int effectId, boolean always);
H A DViewGroup.java297 * When set, this ViewGroup tries to always draw its children using their drawing cache.
1828 * The default implementation always returns false.
1998 final int actionIndex = ev.getActionIndex(); // always 0 for down
2793 * <p>Subclasses should always call <code>super.onNestedPrePerformAccessibilityAction</code></p>
3509 // Clearing a pressed state always propagates.
5138 * Indicates whether this ViewGroup will always try to draw its children using their
5153 * Indicates whether this ViewGroup will always try to draw its children using their
5162 * @param always true to always draw with the drawing cache, false otherwise
5169 public void setAlwaysDrawnWithCacheEnabled(boolean always) { argument
[all...]
H A DViewRootImpl.java1075 // that the screen be kept on, then it is always set; otherwise, it is
1287 // However, windows are now always 32 bits by default, so choose 32 bits
2510 // If accessibility focus moved, always invalidate the root.
5368 public boolean performHapticFeedback(int effectId, boolean always) { argument
5370 return mWindowSession.performHapticFeedback(mWindow, effectId, always);
6947 // a removed view, hence in this case always prefer the source.
/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.java513 private void performFling(int position, float velocity, boolean always) { argument
518 if (always || (velocity > mMaximumMajorVelocity ||
535 if (!always && (velocity > mMaximumMajorVelocity ||
973 // mAllowSingleTap isn't relevant here; you're *always*
/frameworks/base/services/core/java/com/android/server/wm/
H A DSession.java247 boolean always) {
253 effectId, always);
246 performHapticFeedback(IWindow window, int effectId, boolean always) argument
H A DWindowManagerService.java4069 // Opening a new task always supersedes a close for the anim.
4074 // Opening a new activity always supersedes a close for the anim.
5837 public void showBootMessage(final CharSequence msg, final boolean always) { argument
5843 Slog.i(TAG, "showBootMessage: msg=" + msg + " always=" + always
5852 if (!always) {
5861 mPolicy.showBootMessage(msg, always);
9314 // For the new aspect-scaled transition, we want it to always show
/frameworks/base/core/java/android/app/
H A DFragmentManager.java1048 void moveToState(int newState, boolean always) { argument
1049 moveToState(newState, 0, 0, always);
1052 void moveToState(int newState, int transit, int transitStyle, boolean always) { argument
1057 if (!always && mCurState == newState) {
H A DIActivityManager.java396 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException; argument
407 // manage your activity to make sure it is always the uid you expect.
H A DActivityManagerNative.java2015 boolean always = data.readInt() != 0;
2016 showBootMessage(msg, always);
4960 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException { argument
4965 data.writeInt(always ? 1 : 0);
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java1117 void moveToState(int newState, boolean always) { argument
1118 moveToState(newState, 0, 0, always);
1121 void moveToState(int newState, int transit, int transitStyle, boolean always) { argument
1126 if (!always && mCurState == newState) {
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java513 void setCurrentItemInternal(int item, boolean smoothScroll, boolean always) { argument
514 setCurrentItemInternal(item, smoothScroll, always, 0);
517 void setCurrentItemInternal(int item, boolean smoothScroll, boolean always, int velocity) { argument
522 if (!always && mCurItem == item && mItems.size() != 0) {
1369 // For simple implementation, our internal size is always 0.
1883 * ACTION_DOWN always refers to pointer index 0.
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java470 * The default implementation does nothing, and always returns null
928 void doOffsetsChanged(boolean always) { argument
933 if (!always && !mOffsetsChanged) {
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java585 void startSelected(int which, boolean always, boolean filtered) { argument
591 onIntentSelected(ri, intent, always);
H A DProcessStats.java3215 public void addPss(long pss, long uss, boolean always, argument
3218 if (!always) {
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java2604 // should always have a real activity).
3759 // always be correct.
4708 // Note that we always want to do oom adj to update our state with the
6126 public void showBootMessage(final CharSequence msg, final boolean always) { argument
6128 mWindowManager.showBootMessage(msg, always);
6467 // actually executed. However, we do want to always do the
6898 * the given {@link ProviderInfo}. Final permission checking is always done
8166 // Return the entry if desired by the caller. We always return
8167 // the first entry, because callers always expect this to be the
8967 * given {@link ProviderInfo}. Final permission checking is always don
14792 removeDyingProviderLocked(ProcessRecord proc, ContentProviderRecord cpr, boolean always) argument
17608 requestPssAllProcsLocked(long now, boolean always, boolean memLowered) argument
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java438 // Bits that we are currently always keeping cleared.
751 * We always let the sensor be switched on by default except when
776 // we will always leave it on. Note that the user could go to
781 // changes to lag, so we'd like to keep it always on. (It will
790 * screen turning off, should always disable listeners if already enabled
2439 // First we always handle the home key here, so applications
3058 // Any user activity always causes us to show the
3371 // For layout, the status bar is always at the top with our fixed height.
3572 // IM dock windows always go to the bottom of the screen.
3718 // Full screen windows are always give
5589 showBootMessage(final CharSequence msg, final boolean always) argument
5945 performHapticFeedbackLw(WindowState win, int effectId, boolean always) argument
[all...]

Completed in 714 milliseconds

12