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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tests/TransitionTests/res/transition/
my_scene.xml 0 <scene >
3 </scene
username_taken_scene.xml 0 <scene xmlns:android="http://schemas.android.com/apk/res/android"
  /frameworks/base/core/java/android/transition/
Scene.java 26 * A scene represents the collection of values that various properties in the
27 * View hierarchy will have when the scene is applied. A Scene can be
30 * scene change.
32 public final class Scene {
41 * Returns a Scene described by the resource file associated with the given
42 * <code>layoutId</code> parameter. If such a Scene has already been created for
43 * the given <code>sceneRoot</code>, that same Scene will be returned.
48 * @param sceneRoot The root of the hierarchy in which scene changes
53 * @return The scene for the given root and layout i
62 Scene scene = scenes.get(layoutId); local
    [all...]
TransitionManager.java 31 * change of {@link Scene}. To use the manager, add scenes along with
32 * transition objects with calls to {@link #setTransition(Scene, Transition)}
33 * or {@link #setTransition(Scene, Scene, Transition)}. Setting specific
34 * transitions for scene changes is not required; by default, a Scene change
36 * situations. Specifying other transitions for particular scene changes is
44 * that transition to the from/to scene information in that tag.
45 * For example, here is a resource file that declares several scene
52 * creating a scene from a layout in code by callin
    [all...]
package.html 6 <p>A <b>Scene</b> is an encapsulation of the state of a view hierarchy,
8 and otherwise) that those views have. A scene can be defined by a layout hierarchy
9 directly or by code which sets up the scene dynamically as it is entered.</p>
12 when a new scene is entered. Some transition capabilities are automatic. That
13 is, entering a scene may cause animations to run which fade out views that
17 to take place during particular scene changes. Finally, developers can
22 scene changes, and to cause scene changes with specific transitions to
  /pdk/apps/CameraITS/tests/scene0/
README 1 This scene has no requirements; scene 0 tests don't actually
  /external/ceres-solver/data/libmv-ba-problems/
Readme.txt 3 - problem_01.bin is a final camera motion refinement step of 07_1a scene.
4 - problem_02.bin is a final camera motion refinement step of 03_2a scene.
5 - problem_03.bin is a final camera motion refinement step of 09_1a scene.
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_scene.c 50 * Create a new scene object.
56 struct lp_scene *scene = CALLOC_STRUCT(lp_scene); local
57 if (!scene)
60 scene->pipe = pipe;
62 scene->data.head =
65 pipe_mutex_init(scene->mutex);
67 return scene;
72 * Free all data associated with the given scene, and the scene itself.
75 lp_scene_destroy(struct lp_scene *scene)
    [all...]
lp_scene.h 56 /* Scene temporary storage is clamped to this size:
60 /* The maximum amount of texture storage referenced by a scene is
106 * within a scene.
112 * initiate a scene without relying on malloc succeeding.
142 /** the framebuffer to render the scene into */
145 /** list of resources referenced by the scene commands */
148 /** Total memory used by the scene (in bytes). This sums all the
150 * other random allocations within the scene.
154 /** Sum of sizes of all resources referenced by the scene. Sums
155 * all the textures read by the scene
    [all...]
lp_scene_queue.c 30 * Scene queue. We'll use two queues. One contains "full" scenes which
32 * which are produced by the "rast" code when it finishes rendering a scene.
45 struct lp_scene *scene; member in struct:scene_packet
58 /** Allocate a new scene queue */
79 /** Delete a scene queue */
95 packet.scene = NULL;
104 return packet.scene;
110 lp_scene_enqueue(struct lp_scene_queue *queue, struct lp_scene *scene)
116 packet.scene = scene;
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene.c 50 * Create a new scene object.
56 struct lp_scene *scene = CALLOC_STRUCT(lp_scene); local
57 if (!scene)
60 scene->pipe = pipe;
62 scene->data.head =
65 pipe_mutex_init(scene->mutex);
67 return scene;
72 * Free all data associated with the given scene, and the scene itself.
75 lp_scene_destroy(struct lp_scene *scene)
    [all...]
lp_scene.h 56 /* Scene temporary storage is clamped to this size:
60 /* The maximum amount of texture storage referenced by a scene is
106 * within a scene.
112 * initiate a scene without relying on malloc succeeding.
142 /** the framebuffer to render the scene into */
145 /** list of resources referenced by the scene commands */
148 /** Total memory used by the scene (in bytes). This sums all the
150 * other random allocations within the scene.
154 /** Sum of sizes of all resources referenced by the scene. Sums
155 * all the textures read by the scene
    [all...]
lp_scene_queue.c 30 * Scene queue. We'll use two queues. One contains "full" scenes which
32 * which are produced by the "rast" code when it finishes rendering a scene.
45 struct lp_scene *scene; member in struct:scene_packet
58 /** Allocate a new scene queue */
79 /** Delete a scene queue */
95 packet.scene = NULL;
104 return packet.scene;
110 lp_scene_enqueue(struct lp_scene_queue *queue, struct lp_scene *scene)
116 packet.scene = scene;
    [all...]
  /development/samples/browseable/BasicTransition/
_index.jd 11 {@link android.transition.Scene Scene}s.
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
LoginActivityFromResources.java 22 import android.transition.Scene;
30 Scene mCurrentScene;
32 Scene mLoginScene, mPasswordScene, mIncorrectPasswordScene, mSuccessScene, mUsernameTakenScene,
44 public void applyScene(Scene scene) {
45 mTransitionManager.transitionTo(scene);
46 mCurrentScene = scene;
53 mLoginScene = Scene.getSceneForLayout(mSceneRoot, R.layout.activity_login, this);
54 mPasswordScene = Scene.getSceneForLayout(mSceneRoot, R.layout.login_password, this);
55 mIncorrectPasswordScene = Scene.getSceneForLayout(mSceneRoot, R.layou
    [all...]
ResourceLoadingTest.java 22 import android.transition.Scene;
57 Scene loadedScene = new Scene(mSceneRoot);
62 System.out.println("Problem loading scene resource: " + e);
66 Scene scene = Scene.getSceneForLayout(mSceneRoot, R.layout.search_screen, this); local
67 mTransitionManager.transitionTo(scene);
70 Scene scene = Scene.getSceneForLayout(mSceneRoot, R.layout.results_screen, this) local
    [all...]
LoginActivity.java 22 import android.transition.Scene;
34 Scene mCurrentScene;
36 Scene mLoginScene, mPasswordScene, mIncorrectPasswordScene, mSuccessScene, mUsernameTakenScene,
46 mLoginScene = Scene.getSceneForLayout(mSceneRoot, R.layout.activity_login, this);
47 mPasswordScene = Scene.getSceneForLayout(mSceneRoot, R.layout.login_password, this);
48 mIncorrectPasswordScene = Scene.getSceneForLayout(mSceneRoot, R.layout.incorrect_password, this);
49 mUsernameTakenScene = Scene.getSceneForLayout(mSceneRoot, R.layout.username_taken, this);
50 mSuccessScene = Scene.getSceneForLayout(mSceneRoot, R.layout.success, this);
51 mNewUserScene = Scene.getSceneForLayout(mSceneRoot, R.layout.new_user, this);
75 public void applyScene(Scene scene)
    [all...]
InterruptionTest.java 23 import android.transition.Scene;
31 private Scene mScene1;
32 private Scene mScene2;
33 private Scene mScene3;
34 private Scene mScene4;
45 mScene1 = Scene.getSceneForLayout(sceneRoot, R.layout.interruption_inner_1, this);
46 mScene2 = Scene.getSceneForLayout(sceneRoot, R.layout.interruption_inner_2, this);
47 mScene3 = Scene.getSceneForLayout(sceneRoot, R.layout.interruption_inner_3, this);
48 mScene4 = Scene.getSceneForLayout(sceneRoot, R.layout.interruption_inner_4, this);
Demo5.java 22 import android.transition.Scene;
28 static Scene mCurrentScene;
29 Scene mSearchScreen, mResultsScreen;
39 mSearchScreen = Scene.getSceneForLayout(mSceneRoot, R.layout.search_screen, this);
40 mResultsScreen = Scene.getSceneForLayout(mSceneRoot, R.layout.results_screen, this);
  /pdk/apps/CameraITS/tests/scene1/
README 0 Scene 1 description:
3 * Scene mostly filled by grey card, with white background behind grey card
9 scene in general only look at a patch in the middle of the image (which is
12 Note that the scene should not be completely uniform; don't have the grey card
15 scene.
  /device/generic/goldfish/camera/fake-pipeline2/
Scene.cpp 22 #include "Scene.h"
29 // Define single-letter shortcuts for scene definition, for directly indexing
31 #define G (Scene::GRASS * Scene::NUM_CHANNELS)
32 #define S (Scene::GRASS_SHADOW * Scene::NUM_CHANNELS)
33 #define H (Scene::HILL * Scene::NUM_CHANNELS)
34 #define W (Scene::WALL * Scene::NUM_CHANNELS
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/
Scene.cpp 14 #include "Scene.h"
21 Scene::Scene(int width, int height) :
25 bool Scene::setUpContext() {
45 bool Scene::tearDown() {
65 bool Scene::update(int frame) {
67 // Delete the old scene graphs.
75 void Scene::drawSceneGraph(int index) {
  /developers/build/prebuilts/gradle/BasicTransition/Application/src/main/java/com/example/android/basictransition/
BasicTransitionFragment.java 21 import android.transition.Scene;
33 private Scene mScene1;
34 private Scene mScene2;
35 private Scene mScene3;
40 /** Transitions take place in this ViewGroup. We retain this for the dynamic transition on scene 4. */
60 // A Scene can be instantiated from a live view hierarchy.
61 mScene1 = new Scene(mSceneRoot, (ViewGroup) mSceneRoot.findViewById(R.id.container));
65 // You can also inflate a generate a Scene from a layout resource file.
66 mScene2 = Scene.getSceneForLayout(mSceneRoot, R.layout.scene2, getActivity());
69 // Another scene from a layout resource file
    [all...]
  /developers/samples/android/ui/transition/BasicTransition/Application/src/main/java/com/example/android/basictransition/
BasicTransitionFragment.java 21 import android.transition.Scene;
33 private Scene mScene1;
34 private Scene mScene2;
35 private Scene mScene3;
40 /** Transitions take place in this ViewGroup. We retain this for the dynamic transition on scene 4. */
60 // A Scene can be instantiated from a live view hierarchy.
61 mScene1 = new Scene(mSceneRoot, (ViewGroup) mSceneRoot.findViewById(R.id.container));
65 // You can also inflate a generate a Scene from a layout resource file.
66 mScene2 = Scene.getSceneForLayout(mSceneRoot, R.layout.scene2, getActivity());
69 // Another scene from a layout resource file
    [all...]
  /development/samples/browseable/BasicTransition/src/com.example.android.basictransition/
BasicTransitionFragment.java 21 import android.transition.Scene;
33 private Scene mScene1;
34 private Scene mScene2;
35 private Scene mScene3;
40 /** Transitions take place in this ViewGroup. We retain this for the dynamic transition on scene 4. */
60 // A Scene can be instantiated from a live view hierarchy.
61 mScene1 = new Scene(mSceneRoot, (ViewGroup) mSceneRoot.findViewById(R.id.container));
65 // You can also inflate a generate a Scene from a layout resource file.
66 mScene2 = Scene.getSceneForLayout(mSceneRoot, R.layout.scene2, getActivity());
69 // Another scene from a layout resource file
    [all...]

Completed in 4344 milliseconds

1 2 3 4 5 6 7 8 91011>>