HomeSort by relevance Sort by last modified time
    Searched full:dream (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /bootable/recovery/etc/META-INF/com/google/android/
update-script 2 assert file_contains("SYSTEM:build.prop", "ro.product.device=dream") == "true" || file_contains("SYSTEM:build.prop", "ro.build.product=dream") == "true"
3 assert file_contains("RECOVERY:default.prop", "ro.product.device=dream") == "true" || file_contains("RECOVERY:default.prop", "ro.build.product=dream") == "true"
4 assert getprop("ro.product.device") == "dream"
  /packages/apps/DeskClock/res/xml/
dream_info.xml 2 <dream xmlns:android="http://schemas.android.com/apk/res/android"
  /packages/screensavers/PhotoTable/res/xml/
photo_flipper_dream.xml 2 <dream xmlns:android="http://schemas.android.com/apk/res/android"
photo_table_dream.xml 2 <dream xmlns:android="http://schemas.android.com/apk/res/android"
  /packages/experimental/DreamTheater/res/values/
styles.xml 3 <style name="Theme.Dream"
6 <style name="Theme.Dream.Transparent"
  /frameworks/base/core/java/android/service/dreams/
Sandman.java 39 // The component name of a special dock app that merely launches a dream.
41 // activity transition. We just want to start the dream.
52 * False if we should dream instead, if appropriate.
60 * Starts a dream manually.
67 * Starts a dream when docked if the system has been configured to do so,
86 Slog.i(TAG, "Activating dream while docked.");
91 // and the UI mode manager starting a dream. We want the system to already
92 // be awake by the time this happens. Otherwise the dream may not start.
97 Slog.i(TAG, "Activating dream by user request.");
100 // Dream
    [all...]
DreamService.java 47 * Extend this class to implement a custom dream (available to the user as a "Daydream").
58 * <p>Your dream has started, so you should begin animations or other behaviors here.</li>
83 * &lt;!-- Point to additional information for this dream (optional) -->
85 * android:name="android.service.dream"
91 * additional information for the dream is defined using the
92 * {@link android.R.styleable#Dream &lt;dream&gt;} element in a separate XML file.
95 * the dream behavior. For example:</p>
98 * &lt;dream xmlns:android="http://schemas.android.com/apk/res/android"
101 * <p>This makes a Settings button available alongside your dream's listing in th
    [all...]
IDreamManager.aidl 26 void dream();
  /packages/experimental/DreamTheater/src/com/android/dreamtheater/
DreamTheaterActivity.java 12 .addCategory("android.intent.category.DREAM"),
  /frameworks/base/services/java/com/android/server/dreams/
DreamManagerService.java 97 pw.println("DREAM MANAGER (dumpsys dreams)");
169 public void dream() { method in class:DreamManagerService
176 // Because napping could cause the screen to turn off immediately if the dream
187 public void testDream(ComponentName dream) {
190 if (dream == null) {
191 throw new IllegalArgumentException("dream must not be null");
198 Slog.w(TAG, "Aborted attempt to start a test dream while a different "
206 startDreamLocked(dream, true /*isTest*/, callingUserId);
232 // Requires no permission, called by Dream from an arbitrary process.
240 Slog.d(TAG, "Dream finished: " + token)
265 ComponentName dream = chooseDreamForUser(userId); local
    [all...]
DreamController.java 40 * Internal controller for starting and stopping the current dream and managing related state.
42 * Assumes all operations are called from the dream handler thread.
47 // How long we wait for a newly bound dream to create the service connection
68 Slog.w(TAG, "Bound dream did not connect in the time allotted");
103 Slog.i(TAG, "Starting dream: name=" + name + ", isTest=" + isTest + ", userId=" + userId);
110 Slog.e(TAG, "Unable to add window token for dream.", ex);
121 Slog.e(TAG, "Unable to bind dream service: " + intent);
126 Slog.e(TAG, "Unable to bind dream service: " + intent, ex);
142 Slog.i(TAG, "Stopping dream: name=" + oldDream.mName
152 // Tell the dream that it's being stopped so tha
    [all...]
  /packages/screensavers/WebView/assets/
default.html 20 Use the &ldquo;Share&rdquo; menu option in your browser to choose a URL for this dream.
  /docs/source.android.com/src/source/
building-dream.jd 30 needed to do a generic build for the emulator or for unlocked Dream devices
33 <p>To build donut for dream (your
49 <p>in <code>vendor/htc/dream-open/</code> there is a script called "extract-files.sh" that must be run (from that directory) to extract some proprietary binaries from your device (*). You only need to do this once.</p>
52 <p>run <code>lunch aosp_dream_us-eng</code> to specifically configure the build system for dream (the default is the equivalent of "lunch generic-eng", which doesn't contain dream-specific files).</p>
62 well. Simply replace "dream" with "sapphire" above.</p
  /packages/experimental/DreamTheater/
AndroidManifest.xml 18 android:theme="@style/Theme.Dream.Transparent"
27 android:theme="@style/Theme.Dream"
37 android:theme="@style/Theme.Dream"
  /development/samples/USB/MissileLauncher/
README.txt 1 MissileLauncher is a simple program that controls Dream Cheeky USB missile launchers.
_index.html 1 <p>MissileLauncher is a simple program that controls Dream Cheeky USB missile launchers.
  /development/samples/USB/MissileLauncher/res/xml/
device_filter.xml 17 <!-- vendor and product ID for Dream Cheeky USB Missle Launcher -->
19 <!-- vendor and product ID for Dream Cheeky Wireless USB Missle Launcher -->
  /packages/screensavers/WebView/
AndroidManifest.xml 20 android:label="Dream URL"
32 android:label="Dream URL (Interactive)"
  /packages/apps/Settings/src/com/android/settings/
DreamBackend.java 124 Log.w(TAG, "Failed to get default dream", e);
180 public void setActiveDream(ComponentName dream) {
181 logd("setActiveDream(%s)", dream);
185 ComponentName[] dreams = { dream };
186 mDreamManager.setDreamComponents(dream == null ? null : dreams);
188 Log.w(TAG, "Failed to set active dream to " + dream, e);
199 Log.w(TAG, "Failed to get active dream", e);
227 mDreamManager.dream();
229 Log.w(TAG, "Failed to dream", e)
    [all...]
  /hardware/ril/reference-ril/
Android.mk 30 ifeq ($(TARGET_DEVICE),dream)
  /packages/apps/Settings/res/layout/
dream_info_row.xml 20 <!-- Dream selectable row (icon, caption, radio button) -->
31 <!-- Dream icon -->
47 <!-- Dream caption -->
62 <!-- Dream radio button -->
notification_info_row.xml 20 <!-- Dream selectable row (icon, caption, radio button) -->
29 <!-- Dream icon -->
60 <!-- Dream caption -->
75 <!-- Dream radio button -->
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTableDreamSettings.java 21 * Settings panel for photo flipping dream.
  /packages/experimental/Bummer/src/com/android/dreams/bummer/
Bummer.java 20 import android.service.dreams.Dream;
25 public class Bummer extends Dream {
  /packages/screensavers/PhotoTable/
AndroidManifest.xml 21 android:name="android.service.dream"
42 android:name="android.service.dream"

Completed in 285 milliseconds

1 2 3 4 5