Home
last modified time | relevance | path

Searched refs:always (Results 1 – 25 of 370) sorted by relevance

12345678910>>...15

/frameworks/support/v4/java/android/support/v4/util/
DTimeUtils.java38 static private int accumField(int amt, int suffix, boolean always, int zeropad) { in accumField() argument
39 if (amt > 99 || (always && zeropad >= 3)) { in accumField()
42 if (amt > 9 || (always && zeropad >= 2)) { in accumField()
45 if (always || amt > 0) { in accumField()
52 boolean always, int zeropad) { in printField() argument
53 if (always || amt > 0) { in printField()
55 if ((always && zeropad >= 3) || amt > 99) { in printField()
61 if ((always && zeropad >= 2) || amt > 9 || startPos != pos) { in printField()
/frameworks/base/core/java/android/util/
DTimeUtils.java255 static private int accumField(int amt, int suffix, boolean always, int zeropad) { in accumField() argument
264 if (amt > 99 || (always && zeropad >= 3)) { in accumField()
267 if (amt > 9 || (always && zeropad >= 2)) { in accumField()
270 if (always || amt > 0) { in accumField()
278 boolean always, int zeropad) { in printFieldLocked() argument
279 if (always || amt > 0) { in printFieldLocked()
296 if ((always && zeropad >= 3) || amt > 99) { in printFieldLocked()
302 if ((always && zeropad >= 2) || amt > 9 || startPos != pos) { in printFieldLocked()
/frameworks/base/services/core/java/com/android/server/pm/
DPreferredActivity.java39 boolean always) { in PreferredActivity() argument
41 mPref = new PreferredComponent(this, match, set, activity, always); in PreferredActivity()
DPreferredComponent.java61 ComponentName component, boolean always) { in PreferredComponent() argument
65 mAlways = always; in PreferredComponent()
/frameworks/base/core/java/android/service/notification/
DCondition.java171 final boolean always = (flags & FLAG_RELEVANT_ALWAYS) != 0; in relevanceToString()
172 if (!now && !always) return "NONE"; in relevanceToString()
173 if (now && always) return "NOW, ALWAYS"; in relevanceToString()
/frameworks/base/tools/split-select/
DRuleGenerator.cpp70 sp<Rule> always = new Rule(); in generateDensity() local
71 always->op = Rule::ALWAYS_TRUE; in generateDensity()
72 return always; in generateDensity()
/frameworks/base/packages/MtpDocumentsProvider/
DAndroid.mk14 LOCAL_JACK_FLAGS += -D jack.assert.policy=always
/frameworks/rs/java/tests/Refocus/src/com/android/rs/test/
Dluts_for_speedup_f32.rsh20 // When a = b, RemoveInterval(x,a,b) always returns x.
50 // filtering. So always sets it to 1.
/frameworks/base/docs/html/training/sync-adapters/
Dcreating-stub-provider.jd95 * query() always returns no results
108 * insert() always returns null (no URI)
115 * delete() always returns "no rows affected" (0)
122 * update() always returns "no rows affected" (0)
/frameworks/base/docs/html/training/wearables/apps/
Dindex.jd52 called <i>always-on</i> apps. The following describes the two modes of operation for always-on apps:
82 <dt><a href="{@docRoot}training/wearables/apps/always-on.html">Keeping Your App Visible</a></dt>
/frameworks/base/packages/DocumentsUI/
DAndroid.mk39 LOCAL_JACK_FLAGS += -D jack.assert.policy=always
/frameworks/base/docs/html/training/multiscreen/
Dscreendensities.jd57 different devices. Therefore, when specifying dimensions, always use either
84 <p>When specifying text size, always use <code>sp</code>:</p>
96 you should always provide your bitmap resources tailored to each of
/frameworks/base/docs/html/training/appbar/
Dactions.jd48 <em>overflow</em> menu. The app can also specify that an action should always
89 &lt;!-- Settings, should always be in the overflow --&gt;
103 …ver"</code> (as in the example code's <em>settings</em> action), the action is always listed in the
/frameworks/base/core/java/android/view/
DWindowManagerPolicy.java1226 public void showBootMessage(final CharSequence msg, final boolean always); in showBootMessage() argument
1251 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always); in performHapticFeedbackLw() argument
DIWindowSession.aidl178 boolean performHapticFeedback(IWindow window, int effectId, boolean always); in performHapticFeedback() argument
/frameworks/base/docs/html/guide/components/
Drecents.jd65 attributes you can choose between always opening the document in a new task or reusing an
83 the new document, the system always creates a new task with the target activity as the root.
152 <p>An activity can also specify in its manifest that it always launches into a new task by using
165 <dt>"{@code always}"</dt>
194 <p>You can always exclude a task from the overview screen entirely by setting the
Dtasks-and-back-stack.jd240 <li><a href="{@docRoot}guide/topics/manifest/activity-element.html#always">
347 the task holding the instance. The activity is always the single and only member of its task;
353 always open in its own task&mdash;by specifying the {@code singleTask} launch mode in the <a
362 started it, the <em>Back</em> button always takes the user to the previous activity. However, if you
423 the incoming intent. That's because a new instance is always created for a new intent when the
472 notification manager) always start activities in an external task, never as part of their own, so
473 they always put {@code FLAG_ACTIVITY_NEW_TASK} in the intents they pass to
513 href="{@docRoot}guide/topics/manifest/activity-element.html#always">alwaysRetainTaskState</a></code>
524 <a href="{@docRoot}guide/topics/manifest/activity-element.html#always">
525 {@code alwaysRetainTaskState}</a>. The user always returns to the task in its
[all …]
/frameworks/base/docs/html/guide/topics/manifest/
Dactivity-element.jd10 android:<a href="#always">alwaysRetainTaskState</a>=["true" | "false"]
19 android:<a href="#dlmode">documentLaunchMode</a>=["intoExisting" | "always" |
119 Therefore, by definition, a root activity is always in a task with the
127 <dt><a name="always"></a>{@code android:alwaysRetainTaskState}</dt>
128 <dd>Whether or not the state of the task that the activity is in will always
143 However, when this attribute is "{@code true}", users will always return
184 "{@code true}" if the task is always stripped down to its root activity, and
195 <code><a href="#always">alwaysRetainTaskState</a></code> attribute), but not always.
290 activity always handles this configuration change itself (this configuration change does not restart
300 your activity always handles this configuration change itself (this configuration change does not
[all …]
Ddata-element.jd93 case-sensitive, unlike the RFC. As a result, you should always specify schemes
103 case-sensitive, unlike the formal RFC. As a result, you should always specify
165 case-sensitive, unlike formal RFC MIME types. As a result, you should always
/frameworks/base/docs/html/training/basics/data-storage/
Dfiles.jd54 without a removable storage medium, there are always two storage spaces and
61 <li>It's always available.</li>
73 <li>It's not always available, because the user can mount the external storage as USB storage
134 storage. Your application always has permission to read and
220 should always verify that the volume is available before accessing it. You can query the external
362 <p>You should always delete files that you no longer need. The most straightforward way to delete a
/frameworks/base/docs/html/guide/topics/sensors/
Dsensors_environment.jd41 sensors are not always available on devices. Because of this, it's particularly important that you
150 <p>You must always include implementations of both the {@link
153 sure that you always unregister a sensor when an activity pauses. This prevents a sensor from
/frameworks/base/core/java/android/widget/
DSlidingDrawer.java510 private void performFling(int position, float velocity, boolean always) {
515 if (always || (velocity > mMaximumMajorVelocity ||
532 if (!always && (velocity > mMaximumMajorVelocity ||
/frameworks/base/docs/html/guide/topics/text/
Dindex.jd29 <p>The word "multitouch" gets thrown around quite a bit and it’s not always clear what people
/frameworks/base/docs/html/guide/topics/graphics/
Dindex.jd32 <p>Hardware accelerated graphics is nothing new to the Android platform, it has always been
/frameworks/base/docs/html/about/versions/
Dandroid-2.0-highlights.jd35 <param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"><…
37 allowscriptaccess="always" allowfullscreen="true" width="278" height="180"></embed>

12345678910>>...15