Home
last modified time | relevance | path

Searched refs:activated (Results 1 – 16 of 16) sorted by relevance

/frameworks/base/services/java/com/android/server/
DPowerManagerService.java698 boolean activated = true; field in PowerManagerService.WakeLock
1185 String activated = ""; in dump() local
1186 if (wl.activated) { in dump()
1187 activated = " activated"; in dump()
1190 + activated + " (minState=" + wl.minState + ", uid=" + wl.uid in dump()
2634 mLocks.get(i).activated = false; in goToSleepLocked()
2810 if (wl.activated) { in gatherState()
2826 wl.activated = true; in reactivateScreenLocksLocked()
/frameworks/base/docs/html/guide/topics/manifest/
Dactivity-alias-element.jd108 activated.
121 <dd>The name of the activity that can be activated through the alias.
Dsupports-gl-texture-element.jd72 filtering based on the <code>&lt;supports-gl-texture></code> element is activated
Dmanifest-intro.jd319 receivers) are activated by <i>intents</i>. An intent is a
Duses-feature-element.jd121 <p>Although the <code>&lt;uses-feature></code> element is only activated for
Dactivity-element.jd211 different display being activated.</td>
/frameworks/base/docs/html/guide/topics/
Dfundamentals.jd12 one can be activated individually (even by other applications)</li>
217 broadcast receivers&mdash;are activated by an asynchronous message called an <em>intent</em>.
239 <p>The other component type, content provider, is not activated by intents. Rather, it is
240 activated when targeted by a request from a {@link android.content.ContentResolver}. The content
/frameworks/base/core/java/android/view/
DView.java11950 public void setActivated(boolean activated) {
11951 if (((mPrivateFlags & ACTIVATED) != 0) != activated) {
11952 mPrivateFlags = (mPrivateFlags & ~ACTIVATED) | (activated ? ACTIVATED : 0);
11955 dispatchSetActivated(activated);
11966 protected void dispatchSetActivated(boolean activated) {
DViewGroup.java3018 public void dispatchSetActivated(boolean activated) { in dispatchSetActivated() argument
3022 children[i].setActivated(activated); in dispatchSetActivated()
/frameworks/base/docs/html/resources/tutorials/views/
Dhello-formstuff.jd75 activated); the second <code>&lt;item></code> defines <code>android_focused.png</code> as the image
/frameworks/base/docs/html/guide/market/publishing/
Dmultiple-apks.jd151 simple mode, only one APK can be activated at a time. If you upload a new APK to update
160 warning, you can publish the activated APKs, but there might be unintended consequences as to
/frameworks/base/docs/html/guide/topics/search/
Dsearch-dialog.jd110 When activated by the user, the search dialog appears at the top of the activity, as shown in figure
530 <p>If you want to be notified when the search dialog is activated, override the {@link
/frameworks/base/docs/html/guide/topics/testing/
Dtesting_android.jd257 Activity object's lifecycle starts when the Activity is activated by an Intent. The object's
/frameworks/base/docs/html/sdk/
DRELEASENOTES.jd745 …PI Key requirement. However, note that the registration service will be activated soon, so that Ma…
Dandroid-4.0.jd599 method. Then, whenever Android Beam is activated with another device while the activity is in the
609 <p>In this case, when Android Beam is activated with another device while your activity is in the
/frameworks/base/docs/html/guide/topics/intents/
Dintents-filters.jd31 broadcast receivers &mdash; are activated through messages, called <i>intents</i>.